@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

/* ==========================================
   DESIGN SYSTEM TOKENS (CSS VARIABLES)
   ========================================== */
:root {
  /* Core Colors */
  --color-midnight-navy: #0B1F33;
  --color-gold: #D89B0D;
  --color-lime: #D7F04A;
  --color-off-white: #F7F7F5;
  --color-charcoal: #111827;
  
  /* Glassmorphism Tones */
  --glass-white: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;
  
  /* Text Contrast System */
  --text-primary: #F7F7F5;
  --text-secondary: rgba(247, 247, 245, 0.7);
  --text-dark: #111827;
  
  /* Shadows & Depth */
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 30px 60px rgba(0, 0, 0, 0.45);
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: 0.6s cubic-bezier(0.25, 1.25, 0.5, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-midnight-navy);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--color-midnight-navy);
  min-height: 100vh;
  line-height: 1.7;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

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

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  box-shadow: 0 4px 15px rgba(216, 155, 13, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-lime);
  color: var(--color-charcoal);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(215, 240, 74, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background-color: rgba(216, 155, 13, 0.1);
  color: var(--color-gold);
  transform: translateY(-2px) scale(1.03);
}

/* Glass Cards */
.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 155, 13, 0.3);
  box-shadow: var(--shadow-card-hover);
}

/* Section Containers */
section {
  padding: 120px 8%;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
    width: 100%;
    overflow: hidden;
  }
}

/* Typography Scales */
.hero-title {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.body-large {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.highlight-lime {
  color: var(--color-lime);
}

@media (max-width: 1024px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 42px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 34px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 28px; }
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 16px 36px;
  border-radius: 100px;
  background: rgba(11, 31, 51, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  overflow: visible; /* Prevents logo cropping */
}

.navbar.scrolled {
  top: 12px;
  background: rgba(11, 31, 51, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  overflow: visible;
  text-decoration: none;
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(1.05); /* Clean off-white artifacts and boost brightness */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  flex-shrink: 0;
}

.brand-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo-text .gold-text {
  color: var(--color-gold); /* #D89B0D */
}

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

.navbar.scrolled .brand-logo-text {
  font-size: 20px;
}

@media (max-width: 768px) {
  .brand-logo-img {
    width: 48px;
    height: 48px;
  }
  .navbar.scrolled .brand-logo-img {
    width: 38px;
    height: 38px;
  }
  .brand-logo {
    min-height: 56px;
    gap: 10px;
  }
  .brand-logo-text {
    font-size: 18px;
  }
  .navbar.scrolled .brand-logo-text {
    font-size: 16px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    background: rgba(11, 31, 51, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    flex-direction: column;
    padding: 30px;
    gap: 24px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
  }
  
  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .navbar .btn-nav {
    display: none;
  }
}

/* ==========================================
   SECTION 1: HERO SECTION (REDESIGNED)
   ========================================== */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #03080e;
}

/* Background Image Layer (Dominate entire background) */
.hero-bg-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.95; /* High visibility backdrop */
  transform: scale(1.05);
  transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
  filter: contrast(1.1) brightness(1.02); /* Boost architectural contrast & details */
}

/* Luxury radial/linear gradient vignette overlay (reduced opacity for building visibility) */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 40%, rgba(11, 31, 83, 0.2) 0%, rgba(5, 12, 20, 0.75) 85%),
    linear-gradient(to right, rgba(11, 31, 51, 0.95) 20%, rgba(11, 31, 51, 0.45) 55%, rgba(11, 31, 51, 0) 100%),
    linear-gradient(to top, rgba(11, 31, 51, 1) 0%, rgba(11, 31, 51, 0) 25%);
  z-index: 2;
  pointer-events: none;
}

/* High-tech blueprint grid overlay */
.hero-blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(215, 240, 74, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 240, 74, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 65% 45%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(circle at 65% 45%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 3;
}

/* Main Content Grid (Reduced padding to move elements up) */
.hero-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 4;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-50px); /* Moves content block up by 50px */
}

.hero-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 24px;
  background: rgba(216, 155, 13, 0.1);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(216, 155, 13, 0.2);
  display: inline-block;
}

.hero-title {
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-title .highlight-lime {
  color: var(--color-lime);
}

.hero-description {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

/* Hero CTAs Redesign */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--color-lime);
  color: var(--color-charcoal);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(215, 240, 74, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
}

.btn-hero-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  box-shadow: 0 10px 30px rgba(216, 155, 13, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.btn-hero-primary .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 14px 36px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-hero-secondary:hover {
  border-color: var(--color-gold);
  background-color: rgba(216, 155, 13, 0.1);
  color: var(--color-gold);
  transform: translateY(-3px) scale(1.02);
}

.btn-hero-secondary .btn-arrow-line {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn-hero-secondary:hover .btn-arrow-line {
  transform: translateX(4px);
}

/* Badges below buttons */
.hero-inline-badges {
  display: flex;
  gap: 28px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero-inline-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-inline-badge-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Floating Statistics cards on the right */
.hero-floating-cards-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 5;
}

.hero-floating-card {
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(11, 31, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floating-anim 6s ease-in-out infinite;
  width: 290px;
}

.hero-floating-card.card-top {
  top: 22%;
  right: 20%; /* Shifted closer to overlap the building landmark facade */
  animation-delay: 0s;
}

.hero-floating-card.card-bottom {
  bottom: 30%;
  right: 12%; /* Shifted closer to overlap lower facade columns */
  animation-delay: 3s;
}

.hero-floating-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(215, 240, 74, 0.3);
  box-shadow: 0 35px 70px rgba(215, 240, 74, 0.15);
}

.card-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(215, 240, 74, 0.1);
  border: 1px solid rgba(215, 240, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lime);
  flex-shrink: 0;
}

.card-text-wrapper {
  display: flex;
  flex-direction: column;
}

.card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 2px;
}

.card-sublabel {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

@keyframes floating-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}



/* Navbar Inquire button design overrides */
.btn-navbar-inquire {
  background-color: var(--color-gold); /* #D89B0D */
  color: #0B1F33;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-navbar-inquire:hover {
  background-color: var(--color-lime); /* #D7F04A */
  color: #0B1F33;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-navbar-inquire .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B1F33; /* Dark navy circle */
  color: #FFFFFF; /* White arrow */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-navbar-inquire:hover .arrow-circle {
  transform: translateX(3px);
}

/* Hero Responsiveness Overrides */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 220px; /* Leave space for stats panel */
    gap: 40px;
  }
  .hero-content {
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-description {
    margin: 0 auto 30px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-inline-badges {
    justify-content: center;
  }
  .hero-floating-cards-container {
    display: none; /* Hide floating cards on mobile to avoid overlapping */
  }
  .hero-bg-image-wrapper img {
    object-position: center;
    opacity: 0.35; /* Darker image on mobile for typography readability */
  }
  .hero-stats-panel-wrapper {
    bottom: 20px;
    width: 95%;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-stats-panel {
    padding: 20px;
  }
  .hero-stats-item::after {
    display: none; /* Hide vertical dividers on tablet */
  }
}

@media (max-width: 600px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-stats-panel-wrapper {
    position: relative;
    transform: none;
    left: 0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }
}

/* ==========================================
   SECTION 3: ABOUT US
   ========================================== */
.about {
  padding-top: 50px; /* Shorter section height */
  padding-bottom: 60px; /* Shorter section height */
  margin-top: -50px;  /* Overlap hero bottom by 50px for seamless transition */
  position: relative;
  z-index: 5;         /* Sits above hero's z-index:2 */
  background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
}

/* Premium gold divider line — replaces empty dead space */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 40%, var(--color-lime) 60%, transparent 100%);
  border-radius: 2px;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .about {
    padding-top: 40px;
    padding-bottom: 50px;
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-top: -30px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.about-leadership {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-lime); /* #D7F04A */
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(215, 240, 74, 0.15); /* Soft premium glow */
}

@media (max-width: 768px) {
  .about-leadership {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.95; /* Increased line spacing slightly */
}

.about-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.about-bullet-item svg {
  color: var(--color-lime);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-img-main {
  width: 80%;
  height: 85%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-overlay-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  padding: 20px; /* Made compact from 30px */
  z-index: 3;
}

.about-overlay-quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.about-overlay-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-overlay-title {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .about-visual {
    height: 380px;
  }
  .about-visual-overlay-card {
    width: 85%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .about-visual {
    height: 300px;
  }
  .about-visual-overlay-card {
    width: 95%;
    padding: 16px;
  }
}

/* ==========================================
   SECTION 4: SERVICES
   ========================================== */
.services {
  background: radial-gradient(circle at 90% 80%, rgba(216, 155, 13, 0.05) 0%, transparent 40%);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--color-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-gold);
  color: var(--color-charcoal);
  transform: rotate(-5deg);
}

.service-index {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(216, 155, 13, 0.4);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gold);
}

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

.service-card:hover .service-link svg {
  transform: translateX(6px);
  color: var(--color-lime);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 22px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  
  .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .service-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .service-index {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

/* ==========================================
   SECTION 5: WHY CHOOSE US
   ========================================== */
.why-choose {
  background: radial-gradient(circle at 10% 80%, rgba(215, 240, 74, 0.03) 0%, transparent 40%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 240, 74, 0.3);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(215, 240, 74, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lime);
}

.why-card h3 {
  font-size: 20px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card {
    padding: 22px;
    border-radius: 20px;
    gap: 12px;
  }
}

/* ==========================================
   SECTION 6: PROJECT LOCATIONS (MAP)
   ========================================== */
.locations {
  background: radial-gradient(circle at 50% 50%, rgba(11,31,51,0.6) 0%, transparent 80%);
}

.locations-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--glass-border);
}

.location-item:hover {
  transform: translateX(6px);
  border-color: rgba(216, 155, 13, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.location-item.active {
  background: rgba(216, 155, 13, 0.06) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 4px 20px rgba(216, 155, 13, 0.1);
}

.location-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--color-gold);
}

.location-name {
  font-size: 18px;
  font-weight: 600;
}

.location-chevron {
  color: var(--text-secondary);
}

.location-item.active .location-chevron {
  color: var(--color-lime);
  transform: translateX(4px);
}

/* SVG Interactive Map Area */
.map-visual {
  width: 100%;
  height: 520px; /* Desktop height: 520px minimum */
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

#toraServiceMap {
  width: 100%;
  height: 100%;
  background: #03080e;
}

/* Custom Gold Marker DivIcon Design */
.gold-map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gold-marker-pin {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-gold);
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -19px 0 0 -11px; /* offset alignment */
  border: 2.5px solid #0B1F33;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-marker-pin::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0B1F33;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -4px 0 0 -4px;
}

.gold-marker-pulse {
  background: rgba(216, 155, 13, 0.2);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -18px 0 0 -18px;
  animation: marker-pulse-anim 2s infinite ease-out;
  z-index: -1;
  pointer-events: none;
}

/* Active map marker highlight */
.gold-map-marker.active-marker .gold-marker-pin {
  background: var(--color-lime) !important;
  transform: rotate(-45deg) scale(1.25) !important;
  box-shadow: 0 4px 15px rgba(215, 240, 74, 0.4);
}

.gold-map-marker.active-marker .gold-marker-pulse {
  background: rgba(215, 240, 74, 0.3) !important;
  height: 48px;
  width: 48px;
  margin: -24px 0 0 -24px;
}

@keyframes marker-pulse-anim {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* Dark themed Leaflet Popup styles */
.leaflet-popup-content-wrapper {
  background: rgba(11, 31, 51, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-premium) !important;
  color: var(--text-primary) !important;
  padding: 8px !important;
  font-family: 'Inter', sans-serif !important;
}

.leaflet-popup-tip {
  background: rgba(11, 31, 51, 0.95) !important;
  border: 1px solid var(--glass-border) !important;
}

.leaflet-popup-content {
  margin: 10px 14px !important;
  line-height: 1.5 !important;
  font-size: 13px !important;
}

.leaflet-popup-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--color-gold) !important;
  margin-bottom: 6px !important;
}

.leaflet-popup-content p {
  color: var(--text-secondary) !important;
  font-size: 13px !important;
  margin: 0 !important;
}

.leaflet-container a.leaflet-popup-close-button {
  color: var(--text-secondary) !important;
  padding: 8px 12px 0 0 !important;
  font-size: 18px !important;
  transition: color 0.3s ease !important;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: var(--color-lime) !important;
}

@media (max-width: 1024px) {
  .locations-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .map-visual {
    height: 420px; /* Minimum mobile height */
    border-radius: 24px;
  }
}

/* ==========================================
   SECTION 7: PROCESS TIMELINE
   ========================================== */
.process {
  background: radial-gradient(circle at 90% 20%, rgba(255,255,255,0.01) 0%, transparent 40%);
}

.timeline-container {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  position: relative;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.timeline-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.timeline-line-bg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--glass-border);
  z-index: 1;
}

.timeline-line-active {
  position: absolute;
  top: 50px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-lime) 100%);
  z-index: 2;
  transition: width 1s ease;
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  min-width: 1000px;
  padding: 0 40px;
}

.timeline-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.timeline-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-midnight-navy);
  border: 4px solid var(--glass-border);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 5;
}

.timeline-node.active .timeline-bullet {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(216, 155, 13, 0.6);
  transform: scale(1.25);
}

.timeline-node.active-lime .timeline-bullet {
  border-color: var(--color-lime);
  background-color: var(--color-lime);
  box-shadow: 0 0 15px rgba(215, 240, 74, 0.6);
  transform: scale(1.25);
}

.timeline-step {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-node h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-node p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 180px;
}

/* ==========================================
   SECTION 3.5: LEADERSHIP TEAM
   ========================================== */
.leadership {
  background: radial-gradient(circle at 10% 50%, rgba(216, 155, 13, 0.05) 0%, transparent 50%);
  padding-top: 120px;
  padding-bottom: 120px;
}

.leadership-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Card design */
.leadership-card {
  background: var(--glass-white);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  display: flex;
  overflow: hidden;
}

.leadership-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 155, 13, 0.3);
  box-shadow: var(--shadow-card-hover);
}

/* Featured Ashok Neog card - row layout on desktop */
.leadership-featured {
  margin-bottom: 50px;
}

.leadership-featured .leadership-card {
  flex-direction: row;
  align-items: stretch;
}

.leadership-featured .leadership-photo-container {
  width: 420px;
  height: 560px;
  flex-shrink: 0;
  position: relative;
}

.leadership-featured .leadership-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Sibling cards grid: Ramya & Siddhartha */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-content: center;
}

.leadership-grid .leadership-card {
  flex-direction: column;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.leadership-grid .leadership-photo-container {
  width: 100%;
  height: 460px;
  position: relative;
}

.leadership-grid .leadership-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Photo and Placeholder */
.leadership-photo-container {
  background: rgba(11, 31, 51, 0.5);
  overflow: hidden;
  position: relative;
}

.leadership-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.leadership-card:hover .leadership-photo {
  transform: scale(1.04);
}

/* Fallback placeholder */
.leadership-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-lime);
  background: linear-gradient(135deg, #0B1F33 0%, #1a3857 50%, #D89B0D 100%);
  text-shadow: 0 0 15px rgba(215, 240, 74, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

.leadership-featured .leadership-placeholder {
  font-size: 64px;
}

/* Card content typography */
.leader-role {
  font-size: 13px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.leader-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.leadership-grid .leader-name {
  font-size: 26px;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.leader-bio:last-of-type {
  margin-bottom: 0;
}

/* Quote inside Featured Card */
.leadership-quote {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 2.5px solid var(--color-gold);
}

.quote-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.quote-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .leadership-featured .leadership-card {
    flex-direction: column;
  }
  .leadership-featured .leadership-photo-container {
    width: 100% !important;
    height: 500px !important;
  }
  .leadership-featured .leadership-content {
    padding: 40px;
  }
  .leadership-grid {
    gap: 30px;
  }
  .leadership-grid .leadership-card {
    max-width: 100% !important;
  }
  .leadership-grid .leadership-photo-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .leadership {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .leadership-header {
    margin-bottom: 40px;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .leadership-featured .leadership-photo-container {
    height: 400px !important;
  }
  .leadership-grid .leadership-photo-container {
    height: 380px;
  }
  .leader-name {
    font-size: 28px;
  }
  .leadership-grid .leader-name {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .leadership-featured .leadership-photo-container {
    height: 320px !important;
  }
  .leadership-grid .leadership-photo-container {
    height: 300px;
  }
  .leadership-featured .leadership-content {
    padding: 30px 20px;
  }
  .leadership-grid .leadership-content {
    padding: 30px 20px;
  }
  .leader-name {
    font-size: 24px;
  }
  .leadership-grid .leader-name {
    font-size: 22px;
  }
}

/* ==========================================
   SECTION 9: TESTIMONIALS
   ========================================== */
.testimonials {
  background: radial-gradient(circle at 90% 50%, rgba(215, 240, 74, 0.02) 0%, transparent 40%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

.testimonial-track-container {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%; /* 3 slides */
}

.testimonial-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 50px;
}

.testimonial-rating {
  display: flex;
  gap: 6px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--color-gold);
}

.client-meta h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.client-meta p {
  font-size: 13px;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-btn:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 680px) {
  .testimonial-slide {
    padding: 30px;
  }
  .testimonial-quote {
    font-size: 16px;
  }
}

/* ==========================================
   SECTION 10: CONTACT & FORM
   ========================================== */
.contact {
  background: radial-gradient(circle at 50% 100%, rgba(216, 155, 13, 0.05) 0%, transparent 60%);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(11, 31, 51, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-info-panel {
  padding: 60px;
  background: linear-gradient(135deg, rgba(11, 31, 51, 0.9) 0%, rgba(17, 24, 37, 0.9) 100%);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info-panel p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.contact-detail-content h4 {
  font-size: 14px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-detail-content p {
  font-size: 16px;
  font-weight: 500;
}

.contact-detail-content a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.contact-detail-content a:hover {
  color: var(--color-gold);
}

.contact-form-panel {
  padding: 60px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-lime);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(215, 240, 74, 0.1);
}

.form-group select option {
  background: var(--color-charcoal);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 40px;
  }
  .contact-form-panel {
    padding: 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--color-charcoal);
  border-top: 1px solid var(--glass-border);
  padding: 80px 8% 40px 8%;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo-img {
  height: 70px; /* Keep footer logo size 60px-80px */
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(1.05); /* Clean off-white artifacts and boost brightness */
  display: block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.social-link:hover {
  background: var(--color-lime);
  color: var(--color-charcoal);
  border-color: var(--color-lime);
  transform: translateY(-3px);
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-column ul a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   MOTION / ANIMATIONS CLASSES
   ========================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================
   SECTION 11: CONSULTATION MODAL
   ========================================== */
.consultation-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation-modal-container.active {
  opacity: 1;
  pointer-events: auto;
}

.consultation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 8, 14, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.consultation-tile {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: rgba(11, 31, 51, 0.75);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.consultation-modal-container.active .consultation-tile {
  transform: scale(1);
}

.consultation-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.consultation-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
}

.consultation-view {
  display: none;
}

.consultation-view.active {
  display: block;
}

.consultation-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.consultation-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
}

.consultation-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.consultation-phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.consultation-phone-btn:hover {
  border-color: var(--color-gold);
  background: rgba(216, 155, 13, 0.08);
  transform: translateY(-2px);
}

.phone-label {
  font-size: 11px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.phone-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.consultation-whatsapp-trigger {
  width: 100%;
}

/* Back Button */
.consultation-back-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.3s ease;
  padding: 0;
}

.consultation-back-btn:hover {
  color: var(--color-lime);
}

/* Form Styling */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(11, 31, 51, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F7F7F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Custom styling for inputs */
.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.95);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-lime);
  box-shadow: 0 0 0 3px rgba(215, 240, 74, 0.15);
  background: rgba(11, 31, 51, 0.6);
}

/* Prevent scroll class */
body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* Responsiveness */
@media (max-width: 600px) {
  .consultation-tile {
    padding: 30px 20px;
    border-radius: 20px;
    width: 95%;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .consultation-title {
    font-size: 26px;
  }
  
  .phone-number {
    font-size: 18px;
  }
}

/* ==========================================
   SECTION 4.5: PROJECT GALLERY & LIGHTBOX
   ========================================== */
.gallery {
  background: radial-gradient(circle at 50% 50%, rgba(216, 155, 13, 0.04) 0%, transparent 60%);
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 51, 0.65);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gallery-zoom-icon {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(216, 155, 13, 0.15);
}

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

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

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-zoom-icon:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 8, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.gallery-lightbox-close:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
  transform: scale(1.05) rotate(90deg);
}

.gallery-lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .gallery-lightbox-img {
  transform: scale(1);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }
  
  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 320px;
    border-radius: 20px;
  }
  
  .gallery-lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 260px;
  }
  
  .gallery-lightbox-img {
    border-radius: 12px;
  }
}
