/* ===================================================
   Solentra Mühendislik — Premium Kurumsal Tema
   Renk Paleti: Açık tonlar + turuncu vurgu
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-white: #ffffff;
  --color-off-white: #f9f9f9;
  --color-light-gray: #f2f2f2;
  --color-soft-gray: #e8e8e8;
  --color-mid-gray: #bdbdbd;
  --color-text: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-dark: #1a1a1a;
  --color-orange: #e8791d;
  --color-orange-hover: #d06a14;
  --color-orange-light: rgba(232, 121, 29, 0.08);
  --color-beige: #faf8f5;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* ---------- Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-orange-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

/* ---------- Section Title ---------- */
.section-title {
  margin-bottom: 50px;
}

.section-title .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  margin-bottom: 12px;
}

.section-title .subtitle::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--color-orange);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 15px;
  max-width: 600px;
}

.section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Backgrounds ---------- */
.bg-off-white {
  background-color: var(--color-off-white);
}

.bg-light-gray {
  background-color: var(--color-light-gray);
}

.bg-beige {
  background-color: var(--color-beige);
}

.bg-dark-section {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--color-white);
}

.bg-dark-section p {
  color: rgba(255,255,255,0.75);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--color-orange);
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--color-orange);
}

.top-bar .top-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar .top-contact i {
  color: var(--color-orange);
  margin-right: 6px;
}

.top-bar .top-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-bar .top-social a {
  font-size: 14px;
}

/* ---------- Navbar ---------- */
.navbar {
  background-color: var(--color-white);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .navbar-brand {
  padding: 12px 0;
}

.navbar .navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar .nav-link {
  color: var(--color-text) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 16px !important;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-orange) !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  margin-top: 0;
  border-top: 2px solid var(--color-orange);
}

.navbar .dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
  color: var(--color-text);
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background-color: var(--color-orange-light);
  color: var(--color-orange);
}

.navbar .btn-nav-cta {
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-left: 10px;
}

.navbar .btn-nav-cta:hover {
  background-color: var(--color-orange-hover);
}

.navbar .btn-nav-cta::after {
  display: none;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--color-light-gray);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .hero-content {
  max-width: 680px;
  padding: 60px 0;
}

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 121, 29, 0.15);
  border: 1px solid rgba(232, 121, 29, 0.3);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-section h1 span {
  color: var(--color-orange);
}

.hero-section .hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-section .hero-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-section .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-whatsapp-custom {
  background-color: #25D366;
  color: var(--color-white);
  border: 2px solid #25D366;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-custom:hover {
  background-color: #1da851;
  border-color: #1da851;
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-soft-gray);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-dark:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-sm-custom {
  padding: 8px 20px;
  font-size: 13px;
}

/* ---------- Brand Intro ---------- */
.brand-intro .brand-highlight {
  width: 50px;
  height: 3px;
  background: var(--color-orange);
  margin-bottom: 20px;
}

.brand-intro .brand-text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.brand-intro .brand-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.brand-intro .brand-keywords {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.brand-intro .brand-keyword-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-off-white);
  border: 1px solid var(--color-soft-gray);
  border-radius: 999px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.brand-intro .brand-keyword-item i {
  color: var(--color-orange);
  font-size: 13px;
}

.brand-intro .brand-stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-orange);
  margin-bottom: 4px;
}

.brand-intro .brand-stat-item p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

.brand-intro .brand-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-intro .brand-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.brand-intro .brand-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
}

.brand-intro .brand-img-badge h4 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 2px;
}

.brand-intro .brand-img-badge span {
  font-size: 12px;
  opacity: 0.9;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card .service-icon i {
  font-size: 24px;
  color: var(--color-orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-orange);
}

.service-card:hover .service-icon i {
  color: var(--color-white);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card .service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ---------- Why Section ---------- */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange);
}

.why-card .why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card .why-icon i {
  font-size: 20px;
  color: var(--color-orange);
}

.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

/* ---------- Stats / Counter ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ---------- Founder Highlight ---------- */
.founder-highlight {
  position: relative;
}

.founder-highlight .founder-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.founder-highlight .founder-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--color-text);
  border-left: 3px solid var(--color-orange);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.7;
}

.founder-highlight .founder-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.founder-highlight .founder-role {
  font-size: 13px;
  color: var(--color-orange);
  font-weight: 600;
}

.founder-highlight .founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.founder-highlight .founder-tag {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid var(--color-soft-gray);
  border-radius: 20px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ---------- Project Cards ---------- */
.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card .project-img {
  height: 220px;
  overflow: hidden;
}

.project-card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-card .project-body {
  padding: 24px;
}

.project-card .project-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.project-card .project-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-card .project-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.project-card .project-meta i {
  color: var(--color-orange);
  margin-right: 4px;
}

.project-card .project-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---------- Gallery Preview ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  font-size: 28px;
  color: var(--color-white);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-date {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card .blog-date i {
  color: var(--color-orange);
}

.blog-card .blog-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card .blog-title a {
  color: var(--color-dark);
}

.blog-card .blog-title a:hover {
  color: var(--color-orange);
}

.blog-card .blog-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.blog-card .blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-orange);
  background: var(--color-orange-light);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 30px;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: #1a1a1a;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--color-orange);
}

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact li i {
  color: var(--color-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact a {
  color: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--color-orange);
}

/* ---------- Page Banner ---------- */
.page-banner {
  background-color: var(--color-light-gray);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.5) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 36px;
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.page-banner .breadcrumb-item.active {
  color: var(--color-orange);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ---------- About Page ---------- */
.about-values .value-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-left: 3px solid var(--color-orange);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 16px;
  transition: var(--transition);
}

.about-values .value-item:hover {
  box-shadow: var(--shadow-md);
}

.about-values .value-item i {
  font-size: 24px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-values .value-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-values .value-item p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

/* ---------- Founder Page ---------- */
.founder-profile-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.founder-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 28px;
}

.founder-expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.founder-expertise-item:last-child {
  border-bottom: none;
}

.founder-expertise-item .exp-icon {
  width: 44px;
  height: 44px;
  background: var(--color-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-expertise-item .exp-icon i {
  font-size: 18px;
  color: var(--color-orange);
}

.founder-expertise-item h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-expertise-item p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange);
}

.contact-info-card .contact-icon {
  width: 52px;
  height: 52px;
  background: var(--color-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .contact-icon i {
  font-size: 22px;
  color: var(--color-orange);
}

.contact-info-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232,121,29,0.1);
}

.contact-form textarea.form-control {
  min-height: 140px;
}

.map-placeholder {
  background: var(--color-light-gray);
  border-radius: var(--radius-md);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
}

/* ---------- Blog Page ---------- */
.blog-sidebar .sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.blog-sidebar .sidebar-widget h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-light-gray);
  position: relative;
}

.blog-sidebar .sidebar-widget h5::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-orange);
}

.blog-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar .category-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.blog-sidebar .category-list li:last-child {
  border-bottom: none;
}

.blog-sidebar .category-list a {
  color: var(--color-text);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-sidebar .category-list a:hover {
  color: var(--color-orange);
}

.blog-sidebar .category-list .count {
  font-size: 12px;
  color: var(--color-text-light);
}

.blog-sidebar .recent-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.blog-sidebar .recent-post:last-child {
  border-bottom: none;
}

.blog-sidebar .recent-post img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog-sidebar .recent-post h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.blog-sidebar .recent-post h6 a {
  color: var(--color-dark);
}

.blog-sidebar .recent-post h6 a:hover {
  color: var(--color-orange);
}

.blog-sidebar .recent-post .date {
  font-size: 11px;
  color: var(--color-text-light);
}

/* ---------- Blog Detail ---------- */
.blog-detail .blog-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.blog-detail .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-detail .blog-meta i {
  color: var(--color-orange);
  margin-right: 4px;
}

.blog-detail .blog-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
}

.blog-detail .blog-content h3 {
  margin-top: 28px;
  margin-bottom: 14px;
}

.blog-detail .blog-content p {
  margin-bottom: 16px;
}

.blog-detail .blog-content blockquote {
  border-left: 3px solid var(--color-orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-text);
}

.blog-share {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  margin: 30px 0;
}

.blog-share span {
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
}

.blog-share a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
  transition: var(--transition);
}

.blog-share a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

/* ---------- Project Detail ---------- */
.project-detail-banner {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.project-detail-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.project-detail-banner .banner-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.project-detail-banner .banner-content h2 {
  color: var(--color-white);
  font-size: 28px;
}

.project-detail-banner .banner-content .badge-orange {
  background: var(--color-orange);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.project-info-table {
  width: 100%;
}

.project-info-table tr td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-light-gray);
  font-size: 14px;
}

.project-info-table tr td:first-child {
  font-weight: 600;
  color: var(--color-dark);
  width: 40%;
}

.project-info-table tr td:last-child {
  color: var(--color-text-light);
}

.project-info-table tr:last-child td {
  border-bottom: none;
}

/* ---------- Gallery Full Page ---------- */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-full-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-full-item:hover img {
  transform: scale(1.06);
}

.gallery-full-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-full-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-full-item .gallery-overlay i {
  font-size: 32px;
  color: var(--color-white);
}

/* Video Gallery */
.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  background: var(--color-light-gray);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,26,0.35);
  transition: var(--transition);
}

.video-card:hover .video-play-btn {
  background: rgba(26,26,26,0.5);
}

.video-card .video-play-btn i {
  font-size: 48px;
  color: var(--color-white);
  transition: var(--transition);
}

.video-card:hover .video-play-btn i {
  transform: scale(1.1);
  color: var(--color-orange);
}

.video-card .video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Filter Buttons ---------- */
.filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btns .filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btns .filter-btn:hover,
.filter-btns .filter-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

/* ---------- Modal (Lightbox) ---------- */
.modal-gallery .modal-content {
  background: transparent;
  border: none;
}

.modal-gallery .modal-body {
  padding: 0;
}

.modal-gallery .modal-body img {
  width: 100%;
  border-radius: var(--radius-md);
}

.modal-gallery .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
  opacity: 0.8;
}

/* ---------- Utility ---------- */
.text-orange {
  color: var(--color-orange) !important;
}

.bg-orange-light {
  background-color: var(--color-orange-light) !important;
}

.border-orange {
  border-color: var(--color-orange) !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  font-size: 18px;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-orange-hover);
  transform: translateY(-3px);
}

/* ==============================================
   PREMIUM HOMEPAGE OVERRIDES & ENHANCEMENTS
   ============================================== */

/* --- Premium Background Patterns --- */
.section-has-pattern {
  position: relative;
  overflow: hidden;
}

.section-has-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,121,29,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-has-pattern .container {
  position: relative;
  z-index: 1;
}

/* subtle grid pattern for tech feel */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* --- Premium Navbar Overrides --- */
.navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255,255,255,0.96);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  background-color: rgba(255,255,255,0.98);
}

.navbar .navbar-brand img {
  height: 44px;
  transition: var(--transition);
}

.navbar .nav-link {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 22px 15px !important;
}

.navbar .dropdown-menu {
  border-radius: var(--radius-lg);
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  border-top: 2px solid var(--color-orange);
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-item {
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
}

.navbar .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-orange);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.navbar .dropdown-item:hover::before {
  transform: scaleY(1);
}

.navbar .btn-nav-cta {
  border-radius: 6px;
  padding: 10px 26px !important;
  font-size: 12.5px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 16px rgba(232,121,29,0.25);
  position: relative;
  overflow: hidden;
}

.navbar .btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.navbar .btn-nav-cta:hover {
  box-shadow: 0 6px 24px rgba(232,121,29,0.35);
  transform: translateY(-1px);
}

/* --- Premium Hero (Homepage) --- */
.hero-premium {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.4) 100%);
  z-index: 1;
}

.hero-premium::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-white), transparent);
  z-index: 2;
}

.hero-premium .container {
  position: relative;
  z-index: 3;
}

.hero-premium .hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-premium .hero-badge-premium .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-premium h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-premium h1 .text-accent {
  color: var(--color-orange);
  position: relative;
}

.hero-premium h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-premium .hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}

.hero-premium .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-premium .btn-hero-primary {
  background: var(--color-orange);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,121,29,0.3);
  position: relative;
  overflow: hidden;
}

.hero-premium .btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.hero-premium .btn-hero-primary:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,121,29,0.4);
  color: white;
}

.hero-premium .btn-hero-primary:hover::before {
  left: 100%;
}

.hero-premium .btn-hero-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.hero-premium .btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-2px);
}

/* Hero floating info cards */
.hero-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-info-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.hero-info-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,121,29,0.3);
  transform: translateX(-4px);
}

.hero-info-card .hic-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,121,29,0.15);
  border: 1px solid rgba(232,121,29,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-info-card .hic-icon i {
  font-size: 20px;
  color: var(--color-orange);
}

.hero-info-card .hic-text h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-info-card .hic-text p {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  margin: 0;
  font-weight: 400;
}

/* Hero trust bar */
.hero-trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  padding: 0;
  position: relative;
  z-index: 4;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-right: 1px solid var(--color-light-gray);
  position: relative;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .ti-icon {
  width: 40px;
  height: 40px;
  background: var(--color-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item .ti-icon i {
  font-size: 16px;
  color: var(--color-orange);
}

.trust-item .ti-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.trust-item .ti-text span {
  font-size: 12px;
  color: var(--color-text-light);
}

/* --- Premium Section Titles --- */
.section-title-premium {
  margin-bottom: 56px;
}

.section-title-premium .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.section-title-premium .subtitle::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
}

.section-title-premium .subtitle::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
}

.section-title-premium h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title-premium p {
  color: var(--color-text-light);
  font-size: 15.5px;
  max-width: 580px;
  line-height: 1.7;
}

.section-title-premium.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Premium Service Cards --- */
.service-card-premium {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 40px 32px 36px;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-premium .scp-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

.service-card-premium:hover .scp-number {
  color: rgba(232,121,29,0.08);
}

.service-card-premium .scp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232,121,29,0.08) 0%, rgba(232,121,29,0.02) 100%);
  border: 1px solid rgba(232,121,29,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card-premium .scp-icon i {
  font-size: 24px;
  color: var(--color-orange);
  transition: var(--transition);
}

.service-card-premium:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-card-premium:hover .scp-icon {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.service-card-premium:hover .scp-icon i {
  color: white;
}

.service-card-premium h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-premium p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card-premium .scp-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-card-premium .scp-link .arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card-premium .scp-link .arrow-circle i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.service-card-premium:hover .scp-link .arrow-circle {
  background: var(--color-orange);
  color: white;
}

.service-card-premium:hover .scp-link .arrow-circle i {
  color: white;
  transform: translateX(2px);
}

/* Accent line on bottom */
.service-card-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card-premium:hover::after {
  transform: scaleX(1);
}

/* ---  Premium "Why" Cards --- */
.why-card-premium {
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

.why-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-orange);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card-premium:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.why-card-premium:hover::before {
  opacity: 1;
}

.why-card-premium .wcp-icon {
  width: 44px;
  height: 44px;
  background: var(--color-orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card-premium .wcp-icon i {
  font-size: 18px;
  color: var(--color-orange);
}

.why-card-premium h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card-premium p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* --- Premium Stats --- */
.stats-premium {
  background: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  padding: 0;
  position: relative;
}

.stat-premium-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid var(--color-light-gray);
  position: relative;
}

.stat-premium-item:last-child {
  border-right: none;
}

.stat-premium-item .sp-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-premium-item .sp-number .sp-suffix {
  color: var(--color-orange);
  font-size: 32px;
}

.stat-premium-item .sp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-premium-item .sp-icon {
  width: 36px;
  height: 36px;
  background: var(--color-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.stat-premium-item .sp-icon i {
  font-size: 14px;
  color: var(--color-orange);
}

/* --- Premium Founder --- */
.founder-premium-section {
  position: relative;
}

.founder-image-premium {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.founder-image-premium img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.founder-image-premium .fip-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-image-premium .fip-badge .fip-dot {
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

.founder-image-premium .fip-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
}

.founder-quote-premium {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 3px solid var(--color-orange);
  margin: 28px 0 24px;
  position: relative;
}

.founder-quote-premium::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: -8px;
  font-size: 48px;
  color: var(--color-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.founder-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-expertise-tags .fet-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  background: var(--color-off-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 6px;
  color: var(--color-text);
  transition: var(--transition);
}

.founder-expertise-tags .fet-tag:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* --- Premium Project Cards --- */
.project-card-premium {
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%;
}

.project-card-premium:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.project-card-premium .pcp-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.project-card-premium .pcp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card-premium:hover .pcp-img img {
  transform: scale(1.08);
}

.project-card-premium .pcp-img .pcp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.project-card-premium .pcp-body {
  padding: 24px 28px 28px;
}

.project-card-premium .pcp-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-card-premium .pcp-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.project-card-premium .pcp-meta span {
  font-size: 12.5px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-card-premium .pcp-meta span i {
  color: var(--color-orange);
  font-size: 11px;
}

.project-card-premium .pcp-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-light);
}

/* --- Premium Gallery Grid --- */
.gallery-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.gallery-premium-grid .gp-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-premium-grid .gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-premium-grid .gp-item:hover img {
  transform: scale(1.06);
}

.gallery-premium-grid .gp-item .gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-premium-grid .gp-item:hover .gp-overlay {
  opacity: 1;
}

.gallery-premium-grid .gp-item .gp-overlay .gp-label {
  color: white;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-premium-grid .gp-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- Premium Blog Cards --- */
.blog-card-premium {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card-premium:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.blog-card-premium .bcp-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-premium .bcp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-premium:hover .bcp-img img {
  transform: scale(1.06);
}

.blog-card-premium .bcp-img .bcp-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-orange);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 4px;
}

.blog-card-premium .bcp-body {
  padding: 24px 24px 28px;
}

.blog-card-premium .bcp-date {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-premium .bcp-date i {
  color: var(--color-orange);
  font-size: 11px;
}

.blog-card-premium .bcp-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-premium .bcp-title a {
  color: var(--color-dark);
}

.blog-card-premium .bcp-title a:hover {
  color: var(--color-orange);
}

.blog-card-premium .bcp-excerpt {
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* --- Premium CTA --- */
.cta-premium {
  position: relative;
  padding: 80px 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,121,29,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-premium::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232,121,29,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-premium-inner {
  background: var(--color-dark);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-premium-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.cta-premium-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232,121,29,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,121,29,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-premium-inner .container {
  position: relative;
  z-index: 1;
}

.cta-premium-inner h2 {
  color: white;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-premium-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* --- Premium Footer --- */
.footer-premium {
  background: #fafafa;
  border-top: 1px solid var(--color-light-gray);
  color: var(--color-text-light);
}

.footer-premium .footer-main {
  padding: 64px 0 48px;
}

.footer-premium .footer-logo {
  height: 42px;
  margin-bottom: 18px;
}

.footer-premium .footer-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-premium .footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-soft-gray);
  border-radius: 8px;
  color: var(--color-text-light);
  background: var(--color-white);
}

.footer-premium .footer-social a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

.footer-premium .footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-premium .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-orange);
}

.footer-premium .footer-links a {
  color: var(--color-text-light);
  font-size: 13.5px;
}

.footer-premium .footer-links a::before {
  color: var(--color-orange);
}

.footer-premium .footer-links a:hover {
  color: var(--color-orange);
}

.footer-premium .footer-contact li i {
  color: var(--color-orange);
}

.footer-premium .footer-contact li span {
  color: var(--color-text-light);
  font-size: 13.5px;
}


/* --- Premium Footer Bottom with Agency Signature --- */
.footer-premium .footer-bottom {
  border-top: 1px solid var(--color-light-gray);
  padding: 20px 0;
  font-size: 13px;
  color: var(--color-mid-gray);
}

.footer-premium .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-premium .footer-bottom .footer-copyright {
  color: var(--color-mid-gray);
  font-size: 13px;
  font-weight: 400;
}

.footer-premium .footer-bottom .footer-copyright a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-premium .footer-bottom .footer-copyright a:hover {
  color: var(--color-dark);
}

.footer-premium .footer-bottom .footer-agency-signature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: color 0.2s;
  border: 1px solid var(--color-soft-gray);
  border-radius: 6px;
  padding: 4px 12px;
  background: var(--color-white);
}

.footer-premium .footer-bottom .footer-agency-signature i {
  font-size: 13px;
  color: var(--color-orange);
}

.footer-premium .footer-bottom .footer-agency-signature strong {
  color: var(--color-dark);
  font-weight: 700;
}

.footer-premium .footer-bottom .footer-agency-signature:hover {
  border-color: var(--color-orange);
  color: var(--color-dark);
}

@media (max-width: 575px) {
  .footer-premium .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-soft-gray), transparent);
  margin: 0;
  border: none;
}

/* ---------- Coverage Map ---------- */
.coverage-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(232, 121, 29, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.coverage-map-copy {
  position: relative;
}

.coverage-map-heading {
  margin-bottom: 30px;
}

.coverage-map-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.coverage-map-subtitle::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
}

.coverage-map-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
}

.coverage-map-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--color-text-light);
  font-size: 15.5px;
}

.coverage-map-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.coverage-map-stat {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(232, 121, 29, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.coverage-map-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1;
}

.coverage-map-stat span {
  display: block;
  color: var(--color-text-light);
  font-size: 13.5px;
  line-height: 1.5;
}

.solentra-map__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solentra-map__chips--cities {
  gap: 4px 14px;
}

.solentra-map__chips--foreign {
  gap: 10px;
}

.solentra-map__chip-groups {
  display: grid;
  gap: 18px;
}

.solentra-map__chip-group {
  display: grid;
  gap: 10px;
}

.solentra-map__chips-title {
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solentra-map__chip {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: none;
  transition: color 0.22s ease, opacity 0.22s ease;
  cursor: pointer;
}

.solentra-map__chip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 121, 29, 0.42);
  flex: 0 0 auto;
}

.solentra-map__chip:hover,
.solentra-map__chip:focus-visible,
.solentra-map__chip.is-hover {
  color: var(--color-orange-hover);
  outline: none;
}

.solentra-map__chip-label {
  display: inline;
}

.solentra-map__chip-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.solentra-map__chip--foreign {
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 77, 143, 0.16);
  border-radius: 999px;
  border-color: rgba(31, 77, 143, 0.16);
  background: rgba(31, 77, 143, 0.04);
  color: var(--color-dark);
  line-height: 1;
  box-shadow: 0 8px 20px rgba(31, 77, 143, 0.08);
}

.solentra-map__chip--foreign::before {
  display: none;
}

.solentra-map__chip--foreign:hover,
.solentra-map__chip--foreign:focus-visible,
.solentra-map__chip--foreign.is-hover {
  transform: translateY(-1px);
  border-color: rgba(31, 77, 143, 0.3);
  background: rgba(31, 77, 143, 0.09);
  color: #1f4d8f;
  box-shadow: 0 14px 32px rgba(31, 77, 143, 0.14);
}

.solentra-map__chip--foreign .solentra-map__chip-code {
  background: #1f4d8f;
}

.solentra-map__card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background:
    radial-gradient(circle at top right, rgba(232, 121, 29, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow: 0 26px 60px rgba(26, 26, 26, 0.08);
}

.solentra-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.solentra-map__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.04);
  color: var(--color-text-light);
  font-size: 12.5px;
  font-weight: 600;
}

.solentra-map__legend-item i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d1ccc4;
}

.solentra-map__legend-item--active i {
  background: var(--color-orange);
}

.solentra-map__legend-item--project i {
  background: #ffffff;
  border: 3px solid var(--color-orange);
  box-shadow: 0 0 0 4px rgba(232, 121, 29, 0.14);
}

.solentra-map__frame {
  position: relative;
  min-height: 520px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 240, 0.95)),
    linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,1));
  overflow: hidden;
  isolation: isolate;
}

.solentra-map__frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(232, 121, 29, 0.18);
  pointer-events: none;
}

.solentra-map__canvas {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 476px;
}

.solentra-map__loading,
.solentra-map__fallback {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.05);
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 600;
}

.solentra-map__loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 0 rgba(232, 121, 29, 0.4);
  animation: solentraMapPulse 1.6s ease infinite;
}

.solentra-map__canvas svg {
  width: 100%;
  height: auto;
}

.solentra-map__project-markers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.solentra-map__project-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  transform: translate(-50%, -50%) translate(var(--marker-offset-x, 0px), var(--marker-offset-y, 0px));
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.22s ease;
}

.solentra-map__project-marker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(232, 121, 29, 0.18);
  animation: solentraProjectMarkerPulse 1.9s ease infinite;
}

.solentra-map__project-marker-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-orange);
  box-shadow: 0 10px 22px rgba(232, 121, 29, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.solentra-map__project-marker:hover,
.solentra-map__project-marker:focus-visible,
.solentra-map__project-marker.is-active {
  z-index: 4;
  outline: none;
}

.solentra-map__project-marker:hover .solentra-map__project-marker-dot,
.solentra-map__project-marker:focus-visible .solentra-map__project-marker-dot,
.solentra-map__project-marker.is-active .solentra-map__project-marker-dot {
  transform: scale(1.08);
  background: #fff6ee;
  box-shadow: 0 14px 28px rgba(232, 121, 29, 0.28);
}

.solentra-map__project-panel {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  width: min(360px, calc(100% - 44px));
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(26, 26, 26, 0.16);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.solentra-map__project-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.solentra-map__project-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(26, 26, 26, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solentra-map__project-close:hover,
.solentra-map__project-close:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(26, 26, 26, 0.16);
  outline: none;
}

.solentra-map__project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(232, 121, 29, 0.16), rgba(31, 77, 143, 0.08));
}

.solentra-map__project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solentra-map__project-body {
  display: grid;
  gap: 12px;
  padding: 22px 24px 24px;
}

.solentra-map__project-eyebrow {
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.solentra-map__project-title {
  margin: 0;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1.18;
}

.solentra-map__project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solentra-map__project-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 121, 29, 0.08);
  color: var(--color-text);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}

.solentra-map__project-pill i {
  color: var(--color-orange);
  font-size: 12px;
}

.solentra-map__project-summary {
  margin: 0;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
}

.solentra-map__project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.solentra-map__project-link:hover,
.solentra-map__project-link:focus-visible {
  background: var(--color-orange-hover);
  color: var(--color-white);
  outline: none;
}

.solentra-map__country-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.solentra-map__country-marker {
  position: absolute;
  left: var(--marker-x);
  top: var(--marker-y);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  transform: translate(-10%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.solentra-map__country-marker--left {
  flex-direction: row-reverse;
}

.solentra-map__country-marker--point {
  gap: 0;
  transform: translate(-312%, -251%);
}

.solentra-map__country-marker--point::after {
  display: none;
}

.solentra-map__country-marker::after {
  content: '';
  position: absolute;
  left: calc(100% - 10px);
  top: 50%;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 77, 143, 0.88), rgba(31, 77, 143, 0.15));
  transform: translateY(-50%);
}

.solentra-map__country-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f4d8f;
  box-shadow: 0 0 0 0 rgba(31, 77, 143, 0.25);
  animation: solentraCountryPulse 1.8s ease infinite;
  flex: 0 0 auto;
}

.solentra-map__country-card {
  display: inline-grid;
  gap: 2px;
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 77, 143, 0.16);
  box-shadow: 0 16px 32px rgba(31, 77, 143, 0.14);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solentra-map__country-card strong {
  color: #1f4d8f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.solentra-map__country-card span {
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.solentra-map__country-marker:hover .solentra-map__country-card,
.solentra-map__country-marker:focus-visible .solentra-map__country-card,
.solentra-map__country-marker.is-hover .solentra-map__country-card {
  transform: translateY(-2px);
  border-color: rgba(31, 77, 143, 0.28);
  box-shadow: 0 18px 36px rgba(31, 77, 143, 0.18);
}

.solentra-map__country-marker:focus-visible {
  outline: none;
}

.solentra-map__canvas .turkey > g path {
  cursor: pointer;
  fill: #d3cdc5;
  stroke: #ffffff;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: fill 0.22s ease, opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.solentra-map__canvas .turkey > g.is-active path {
  fill: var(--color-orange);
  filter: drop-shadow(0 10px 18px rgba(232, 121, 29, 0.24));
}

.solentra-map__canvas .turkey > g.is-hover path {
  fill: #f3a258;
  opacity: 1;
  transform: translateY(-1px) scale(1.01);
}

.solentra-map__canvas .turkey > g:not(.is-active):not(.is-hover) path {
  opacity: 0.78;
}

.solentra-map__tooltip {
  position: absolute;
  z-index: 5;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.94);
  color: var(--color-white);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.2s ease;
}

.solentra-map__tooltip.is-visible {
  opacity: 1;
}

.solentra-map__tooltip strong,
.solentra-map__tooltip span,
.solentra-map__tooltip em {
  display: block;
}

.solentra-map__tooltip strong {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.solentra-map__tooltip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.solentra-map__tooltip em {
  margin-top: 7px;
  color: #ffd9b3;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}

.solentra-map__note {
  margin-top: 18px;
  color: var(--color-text-light);
  font-size: 13.5px;
}

.solentra-map__project-note {
  margin-top: 8px;
  color: var(--color-text-light);
  font-size: 13px;
}

@keyframes solentraMapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 121, 29, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(232, 121, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 121, 29, 0);
  }
}

@keyframes solentraCountryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 77, 143, 0.28);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(31, 77, 143, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 77, 143, 0);
  }
}

@keyframes solentraProjectMarkerPulse {
  0% {
    transform: scale(0.82);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.32);
    opacity: 0;
  }

  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .solentra-map__frame {
    min-height: 430px;
  }

  .solentra-map__canvas {
    min-height: 386px;
  }

  .solentra-map__country-marker {
    transform: translate(0, -50%);
  }

  .solentra-map__country-marker--point {
    transform: translate(-50%, -50%);
  }

  .solentra-map__project-panel {
    top: 18px;
    right: 18px;
    width: min(330px, calc(100% - 36px));
  }

  .solentra-map__project-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .coverage-map-stats {
    grid-template-columns: 1fr;
  }

  .solentra-map__card {
    padding: 18px;
    border-radius: 22px;
  }

  .solentra-map__frame {
    min-height: 340px;
    padding: 14px;
    border-radius: 18px;
  }

  .solentra-map__frame::before {
    inset: 10px;
    border-radius: 14px;
  }

  .solentra-map__canvas {
    min-height: 300px;
  }

  .solentra-map__chips--cities {
    gap: 4px 10px;
  }

  .solentra-map__chip {
    font-size: 13px;
  }

  .solentra-map__chip--foreign {
    width: auto;
    justify-content: flex-start;
  }

  .solentra-map__project-marker {
    width: 24px;
    height: 24px;
  }

  .solentra-map__project-marker-dot {
    width: 12px;
    height: 12px;
  }

  .solentra-map__project-panel {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    border-radius: 20px;
  }

  .solentra-map__project-body {
    gap: 10px;
    padding: 18px 18px 20px;
  }

  .solentra-map__project-title {
    font-size: 21px;
  }

  .solentra-map__project-summary {
    font-size: 14px;
  }

  .solentra-map__country-marker {
    left: var(--marker-x);
    top: var(--marker-y);
  }

  .solentra-map__country-marker::after {
    width: 26px;
  }

  .solentra-map__country-card {
    min-width: 102px;
    padding: 8px 10px;
    border-radius: 14px;
  }
}
