/* ============================================
   CLOSEVER GROUP — MAIN STYLESHEET (REVISED)
   ============================================ */

:root {
  --navy: #0A1628;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --gray-100: #F5F5F0;
  --gray-200: #E8E8E0;
  --gray-400: #9A9A8A;
  --gray-600: #555550;
  --text: #1A1A14;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.alt-bg { background: var(--gray-100); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #25D366;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR — STRIPE STYLE
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color 0.2s ease;
  flex-shrink: 0;
  margin-right: auto;
}
.navbar.scrolled .logo { color: var(--navy); }
.logo-icon { color: var(--gold); font-size: 20px; }
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-right: 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: all 0.15s ease;
  padding: 8px 16px;
  border-radius: 6px;
}
.navbar.scrolled .nav-links a { color: #425466; }
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.navbar.scrolled .nav-links a:hover {
  color: var(--navy);
  background: rgba(0,0,0,0.04);
}
.nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a.active {
  color: var(--navy);
  background: rgba(0,0,0,0.06);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
  transition: all 0.15s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}
.navbar.scrolled .hamburger {
  border-color: #d0d7de;
  background: white;
}
.hamburger:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.navbar.scrolled .hamburger:hover {
  border-color: var(--gold);
  background: #f6f5ff;
}

.hamburger-icon {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.navbar.scrolled .hamburger-icon span { background: var(--navy); }
.hamburger.open .hamburger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open .hamburger-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   MOBILE MENU — STRIPE FULLSCREEN
   ============================================ */
.nav-links.open {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.nav-links.open.active { transform: translateY(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  height: 64px;
  background: var(--white);
  z-index: 1000;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 1.5px solid #d0d7de;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 20px;
  font-weight: 300;
  transition: all 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  border-color: var(--gold);
  background: #f6f5ff;
  color: var(--gold);
}

.mobile-menu-items {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

.nav-links.open li {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s ease;
  border-bottom: 1px solid #f2f2f2;
  list-style: none;
}
.nav-links.open.active li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.nav-links.open.active li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.10s; }
.nav-links.open.active li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.nav-links.open.active li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.20s; }
.nav-links.open li:last-child { border-bottom: none; }

.nav-links.open a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding: 18px 20px;
  transition: background 0.15s ease;
  letter-spacing: -0.2px;
}
.nav-links.open a:hover {
  background: #f8f9fa;
  color: var(--navy);
}
.nav-links.open a.active {
  color: var(--gold);
  font-weight: 600;
}
.nav-links.open a::after {
  content: '›';
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.nav-links.open a:hover::after { transform: translateX(3px); }

.mobile-menu-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  border-top: 1px solid #f0f0f0;
  background: var(--white);
}

.mobile-menu-footer .btn-primary {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.nav-links.open.active .mobile-menu-footer .btn-primary {
  opacity: 1;
  transform: none;
  transition: all 0.2s ease 0.25s;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(201,168,76,0.1);
  border-radius: 30px;
  border: 1px solid rgba(201,168,76,0.3);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray-600);
  font-size: 17px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, #0d2450 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 60px;
  max-width: 100%;
  margin: 0;
}
.hero::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, #0d2450 100%);
  z-index: -1;
}
.hero > * { position: relative; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.shape2 {
  width: 300px; height: 300px;
  background: var(--white);
  bottom: -100px; left: 10%;
}
.shape3 {
  width: 150px; height: 150px;
  background: var(--gold);
  top: 30%; left: 5%;
}
.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  background: rgba(201,168,76,0.08);
}
.hero-title {
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-visual {
  flex: 1;
  position: relative;
  height: 500px;
  max-width: 500px;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-orb {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  animation: float 3s ease-in-out infinite;
}
.card-main { top: 10%; left: 0; animation-delay: 0s; }
.card-secondary { top: 45%; right: 0; animation-delay: 1s; }
.card-tertiary { bottom: 10%; left: 10%; animation-delay: 2s; }
.hero-card .card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
}
.card-title {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.card-sub {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-img { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin: 12px 0 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none !important; }
  .btn-nav { display: none !important; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex !important; }
  .hero-title { font-size: 36px; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .nav-links.open a { font-size: 16px; padding: 14px 16px; }
  .mobile-menu-header { padding: 12px 16px; }
  .mobile-menu-footer { padding: 16px; }
}

/* ============================================
   MARQUEE BAND
   ============================================ */
.marquee-band {
  background: var(--navy);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.marquee-item i { color: var(--gold); font-size: 10px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
  transform: translateY(-8px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(201,168,76,0.02) 100%);
  transform: scale(1.02);
}
.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 28px;
  margin: 0 auto 20px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-list {
  text-align: left;
  margin-bottom: 24px;
  padding: 0;
}
.service-list li {
  color: var(--gray-600);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list i { color: var(--gold); font-size: 12px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.service-link:hover { color: var(--gold); gap: 12px; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: var(--white);
}
.process-section .section-header { color: var(--white); }
.process-section .section-title { color: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.process-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation-delay: var(--d, 0s);
}
.process-step:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-8px);
}
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.why-box:hover {
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
  transform: translateY(-8px);
}
.why-box.accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.why-box.accent:hover { border-color: var(--gold); }
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.why-box.accent .why-number { color: var(--navy); }
.why-box h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-box.accent h3 { color: var(--navy); }
.why-box p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}
.why-box.accent p { color: rgba(10,22,40,0.8); }
.why-content { max-width: 500px; }
.why-content .section-tag { display: inline-block; }
.why-content .section-title { text-align: left; margin-bottom: 24px; }
.why-content p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.why-content .btn-primary { margin-top: 12px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
  transform: translateY(-8px);
}
.testimonial-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(201,168,76,0.02) 100%);
  transform: scale(1.02);
}
.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.testimonial-author span {
  display: block;
  color: var(--gray-400);
  font-size: 13px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.2s ease;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.form-success {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  z-index: 2000;
  animation: slideUp 0.4s ease;
}
.form-success.show { display: block; }
.form-success h3 {
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray-600);
  margin-bottom: 24px;
}
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 28px; }
  .service-card { padding: 24px 16px; }
  .why-box { padding: 24px 16px; }
  .testimonial-card { padding: 24px; }
  .cta-banner { padding: 48px 16px; }
  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 16px; }
}


/* ============================================
   PAGE HERO INNER
   ============================================ */
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-inner .section-tag {
  display: inline-block;
  margin-bottom: 20px;
}
.page-hero-inner h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
}
.page-hero-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: var(--white);
}
.contact-item h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-item a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-item a:hover { color: var(--gold-light); }
.contact-item small {
  display: block;
  color: var(--gray-400);
  font-size: 12px;
  margin-top: 2px;
}
.contact-item span {
  color: var(--gray-600);
  font-size: 14px;
}

.contact-ambient-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.contact-ambient-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.contact-ambient-img:hover img { transform: scale(1.05); }
.contact-ambient-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
  color: var(--white);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-style: italic;
}
.contact-ambient-caption i { color: var(--gold); font-size: 16px; }

.contact-social p {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.contact-form h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #d0d7de;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: all 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A1628' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group .btn-primary {
  margin-top: 8px;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  color: #166534;
  font-size: 14px;
  text-align: center;
  animation: slideDown 0.3s ease;
}
.form-success.show { display: block; }
.form-success i {
  color: #22c55e;
  margin-right: 8px;
  font-size: 16px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  z-index: 500;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ============================================
   ABOUT SECTION STYLES
   ============================================ */
.about-story { background: var(--white); }
.story-grid-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-img-wrap:hover .story-img { transform: scale(1.05); }
.story-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.badge-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 600;
  text-align: center;
}

.story-content .section-tag { display: inline-block; }
.story-content .section-title { text-align: left; margin-bottom: 24px; }
.story-content p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e0;
}
.story-num {
  text-align: center;
  padding: 16px;
  background: var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.story-num:hover {
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 12px rgba(201,168,76,0.1);
}
.story-num.accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.story-num span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.story-num.accent span { color: var(--navy); }
.story-num small {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-num.accent small { color: rgba(10,22,40,0.7); }

/* ============================================
   MISSION VISION SECTION
   ============================================ */
.mission-vision { background: var(--gray-100); }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.mv-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
  transform: translateY(-8px);
}
.mv-card.accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 28px;
  margin: 0 auto 20px;
}
.mv-card.accent .mv-icon {
  background: rgba(10,22,40,0.1);
  color: var(--navy);
}
.mv-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}
.mv-card.accent h3 { color: var(--navy); }
.mv-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.mv-card.accent p { color: rgba(10,22,40,0.8); }

.values-list {
  text-align: left;
  margin-top: 16px;
}
.values-list li {
  color: var(--gray-600);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-list i { color: var(--gold); font-size: 12px; }
.mv-card.accent .values-list li { color: rgba(10,22,40,0.8); }
.mv-card.accent .values-list i { color: var(--navy); }

/* ============================================
   CULTURE BAND
   ============================================ */
.culture-band {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.culture-img-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  height: 100%;
}
.culture-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.culture-img:hover { transform: scale(1.05); }
.culture-img.tall { grid-row: span 2; }
.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.5) 50%, transparent 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}
.culture-quote {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  max-width: 500px;
  line-height: 1.3;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.team-card-pro {
  text-align: center;
  transition: all 0.3s ease;
}
.team-card-pro:hover {
  transform: translateY(-8px);
}
.team-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  height: 300px;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-photo-wrap:hover .team-photo { transform: scale(1.08); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-photo-wrap:hover .team-photo-overlay { opacity: 1; }
.team-social {
  display: flex;
  gap: 12px;
}
.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s ease;
}
.team-social a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.team-info h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-info p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   SERVICE DETAIL SECTION
   ============================================ */
.service-detail {
  position: relative;
  background: var(--white);
}
.service-detail-num {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  z-index: 0;
  pointer-events: none;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
}
.service-detail-grid.reverse .service-detail-visual {
  order: -1;
}
.service-detail-content .section-tag { display: inline-block; }
.service-detail-content .section-title { text-align: left; margin-bottom: 24px; }
.service-detail-content > p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.sub-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.sub-service {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.sub-service:hover {
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 12px rgba(201,168,76,0.1);
}
.sub-service i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
}
.sub-service h4 {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}
.sub-service p {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.5;
}

.service-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-img-card:hover img { transform: scale(1.05); }
.service-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-img-card:hover .service-img-card-overlay { opacity: 1; }
.service-img-card-overlay .section-tag { display: inline-block; margin-bottom: 12px; }
.service-img-card-overlay h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.service-img-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE — CONTACT & ABOUT
   ============================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { position: static; }
  .story-grid-pro { grid-template-columns: 1fr; gap: 48px; }
  .story-numbers { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .sub-services { grid-template-columns: 1fr; }
  .service-detail-num { font-size: 80px; top: 20px; right: 20px; }
}

@media (max-width: 768px) {
  .contact-grid { gap: 32px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .story-img { height: 300px; }
  .story-numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .culture-img-grid { grid-template-columns: repeat(3, 1fr); }
  .culture-img.tall { grid-row: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .service-detail-num { font-size: 60px; }
}

@media (max-width: 480px) {
  .contact-grid { gap: 24px; }
  .contact-form-wrap { padding: 20px; }
  .contact-item { gap: 12px; }
  .contact-item-icon { width: 40px; height: 40px; font-size: 16px; }
  .story-img { height: 250px; }
  .story-numbers { grid-template-columns: 1fr; }
  .culture-band { height: 300px; }
  .culture-img-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-quote { font-size: 24px; }
  .team-photo-wrap { height: 250px; }
  .service-detail-num { font-size: 40px; top: 10px; right: 10px; }
  .sub-services { gap: 12px; }
  .sub-service { padding: 16px; }
  .service-img-card { height: 250px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 20px; bottom: 16px; right: 16px; }
}


/* ============================================
   MOBILE MENU HEADER DISPLAY
   ============================================ */
.nav-links.open .mobile-menu-header {
  display: flex !important;
}


/* ============================================
   MOBILE MENU CLOSE BUTTON COLOR
   ============================================ */
.mobile-menu-close {
  color: var(--navy) !important;
  font-size: 24px !important;
  font-weight: bold !important;
}


/* ============================================
   FORM ERROR MESSAGE
   ============================================ */
.form-error {
  display: none;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  color: #c33;
  font-size: 14px;
  text-align: center;
  animation: slideDown 0.3s ease;
}
.form-error i {
  color: #f44;
  margin-right: 8px;
  font-size: 16px;
}
