/* ============================================================
   M&H Business Consulting — Main Stylesheet
   Theme: Navy Blue + Gold | Responsive | SEO-Ready
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #0B1F3A;
  --navy-med:    #152B50;
  --navy-light:  #1E3A6E;
  --gold:        #C8A951;
  --gold-light:  #DDB962;
  --gold-pale:   #F5E9C4;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #EEF0F5;
  --gray-300:    #C5C8D5;
  --gray-500:    #8890A4;
  --gray-700:    #444466;
  --text:        #1A1A2E;
  --shadow:      0 4px 20px rgba(11,31,58,0.10);
  --shadow-md:   0 8px 32px rgba(11,31,58,0.15);
  --shadow-lg:   0 16px 48px rgba(11,31,58,0.20);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  all 0.3s ease;
  --container:   1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.78; color: var(--gray-700); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-title span { color: var(--gold); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px 0 24px;
}
.gold-line.center { margin: 14px auto 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-med);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(11,31,58,1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,169,81,0.35);
  padding: 7px;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(200,169,81,0.4);
}
.nav-cta.active::after { display: none; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   PAGE HERO BANNER (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-med) 60%, var(--navy-light) 100%);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C8A951' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.84rem;
  position: relative; z-index: 1;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.35); }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.85); }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative; z-index: 1;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-med) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(200,169,81,0.07) 0%, transparent 70%);
}
/* Decorative circles */
.hero-circle-1 {
  position: absolute; z-index: 1;
  right: -120px; bottom: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(200,169,81,0.05);
}
.hero-circle-2 {
  position: absolute; z-index: 1;
  right: 80px; top: 60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 50px solid rgba(200,169,81,0.04);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.35);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.72rem; }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-text .hero-desc {
  color: rgba(255,255,255,0.73);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  font-weight: 500;
}
/* Hero Visual Card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.mini-stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.mini-stat .l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-floating-tag {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(200,169,81,0.45);
  white-space: nowrap;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon i { font-size: 1.35rem; color: var(--gold); }
.why-card h4 { margin-bottom: 10px; font-size: 1rem; }
.why-card p { font-size: 0.91rem; line-height: 1.68; }

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */
.services-overview { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.svc-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 12px;
}
.svc-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(11,31,58,0.25);
}
.svc-icon i { font-size: 1.6rem; color: var(--gold); }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.svc-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.svc-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.svc-link:hover { gap: 10px; }
.svc-link i { font-size: 0.78rem; }
.services-overview .center-btn { text-align: center; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-med) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C8A951' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-num-wrap {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num-wrap span { font-size: 2.2rem; }
.stat-divider { width: 36px; height: 2px; background: rgba(200,169,81,0.35); margin: 8px auto; border-radius: 2px; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.68); letter-spacing: 0.5px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 14px; }
.cta-banner p { color: rgba(11,31,58,0.78); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-banner .btn-navy:hover { background: var(--navy-med); box-shadow: 0 8px 24px rgba(11,31,58,0.3); }
.cta-banner .btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.cta-banner .btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--gold-pale);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--gold); }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; line-height: 1.72; color: var(--gray-700); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }

/* ============================================================
   ABOUT PAGE — INTRO
   ============================================================ */
.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge .small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature i { color: var(--gold); font-size: 0.9rem; width: 20px; }
.about-feature span { font-size: 0.93rem; color: var(--gray-700); font-weight: 500; }

/* Vision & Mission */
.vision-mission { background: var(--off-white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.vm-card.mission { border-left-color: var(--navy-light); }
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vm-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.vm-icon i { color: var(--gold); font-size: 1.5rem; }
.vm-card h3 { margin-bottom: 14px; }
.vm-card p { line-height: 1.8; }

/* Core Values */
.core-values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.value-card:hover {
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-card:hover h4,
.value-card:hover p { color: rgba(255,255,255,0.9); }
.val-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.value-card:hover .val-icon { background: rgba(200,169,81,0.2); }
.val-icon i { color: var(--gold); font-size: 1.3rem; }
.value-card h4 { margin-bottom: 10px; font-size: 1rem; transition: var(--transition); }
.value-card p { font-size: 0.88rem; line-height: 1.65; transition: var(--transition); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--off-white); }
.services-list { display: flex; flex-direction: column; gap: 32px; }
.svc-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.svc-detail:hover { border-left-color: var(--gold); box-shadow: var(--shadow-md); }
.svc-detail-left { text-align: center; }
.svc-detail-icon {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 8px 24px rgba(11,31,58,0.25);
}
.svc-detail-icon i { font-size: 2rem; color: var(--gold); }
.svc-detail-left .svc-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.svc-detail-right h3 { margin-bottom: 12px; }
.svc-detail-right > p { margin-bottom: 24px; color: var(--gray-700); }
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.svc-feature:hover { background: var(--gold-pale); }
.svc-feature i { color: var(--gold); font-size: 0.72rem; margin-top: 4px; flex-shrink: 0; }

/* Process Steps */
.process-section { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.35;
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  box-shadow: 0 0 0 8px var(--gold-pale);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(200,169,81,0.2), 0 8px 24px rgba(200,169,81,0.35);
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.88rem; line-height: 1.6; }

/* Pricing Strip */
.pricing-strip {
  background: var(--off-white);
  padding: 60px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gray-100);
  transition: var(--transition);
}
.pricing-card.featured { border-top-color: var(--gold); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.pricing-icon-wrap i { color: var(--gold); font-size: 1.3rem; }
.pricing-card h4 { margin-bottom: 8px; }
.pricing-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}
.contact-info > h3 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 36px; font-size: 0.95rem; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.contact-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.cc-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cc-icon i { color: var(--gold); font-size: 1.05rem; }
.cc-text .cc-label {
  font-size: 0.74rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.cc-text .cc-val {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
  overflow-wrap: break-word;
  word-break: break-all;
}
.cc-text a { color: var(--navy); transition: var(--transition); }
.cc-text a:hover { color: var(--gold); }
.consult-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-med));
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.consult-box .gift { font-size: 2.8rem; margin-bottom: 12px; }
.consult-box h4 { color: var(--white); margin-bottom: 8px; }
.consult-box p { color: rgba(255,255,255,0.68); font-size: 0.9rem; margin-bottom: 20px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap > h3 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 32px; font-size: 0.93rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  background: rgba(200,169,81,0.1);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.93rem;
}
.form-success.show { display: block; }
.form-success i { color: var(--gold); margin-right: 6px; }
.form-error {
  display: none;
  text-align: center;
  padding: 18px;
  background: rgba(183,28,28,0.08);
  border: 1.5px solid rgba(183,28,28,0.45);
  border-radius: var(--radius-sm);
  color: #7a1212;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.93rem;
}
.form-error.show { display: block; }
.form-error i { color: #b71c1c; margin-right: 6px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section {
  background: var(--off-white);
  padding: 84px 0;
}
.legal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.legal-lead {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.12);
  color: var(--navy);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  margin-bottom: 26px;
}
.legal-meta i { color: var(--gold); }
.legal-block {
  padding: 24px 0;
  border-top: 1px solid var(--gray-100);
}
.legal-block:first-of-type {
  border-top: none;
  padding-top: 0;
}
.legal-block h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.legal-block p {
  margin-bottom: 12px;
}
.legal-block ul {
  list-style: disc;
  margin-left: 20px;
}
.legal-block ul li {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-callout {
  background: linear-gradient(135deg, rgba(11,31,58,0.04), rgba(200,169,81,0.12));
  border: 1px solid rgba(200,169,81,0.24);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .legal-wrap {
    padding: 26px 20px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .foot-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .foot-logo .logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
}
.footer-brand .foot-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--white);
}
.footer-brand > p {
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); font-size: 0.88rem; margin-top: 4px; width: 16px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.62); font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.38); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FIXED FLOATING ELEMENTS
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(200,169,81,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.whatsapp-fab {
  position: fixed;
  bottom: 84px; right: 26px;
  z-index: 500;
  width: 50px; height: 50px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-text { animation: fadeInUp 0.9s ease both; }
.hero-visual { animation: fadeIn 1s ease 0.35s both; }

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].animated { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-detail { grid-template-columns: 160px 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 20px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 36px 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 24px; padding: 36px 36px; }
  .svc-detail-left { display: flex; align-items: center; gap: 16px; text-align: left; }
  .svc-detail-icon { margin: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .page-hero { padding: 130px 0 70px; }
  .about-img { height: 360px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .section-header { margin-bottom: 44px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat { min-width: 80px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-detail { padding: 28px 22px; }
  .vm-card { padding: 28px 22px; }
  .contact-form-wrap { padding: 28px 18px; }
  .contact-card { align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .about-img { height: 280px; }
  .legal-wrap { padding: 24px 16px; }
  .consult-box { padding: 28px 20px; }
  .stat-num-wrap { font-size: 2.6rem; }
}

/* ============================================================
   RESPONSIVE — EXTRA SMALL (phones < 480px)
   ============================================================ */
@media (max-width: 480px) {
  section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .page-hero { padding: 100px 0 50px; }
  .section-header { margin-bottom: 36px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .hero-stat .num { font-size: 1.6rem; }
  .contact-form-wrap { padding: 22px 14px; }
  .svc-detail { padding: 22px 16px; }
  .vm-card { padding: 24px 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num-wrap { font-size: 2.2rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .footer-bottom-links a { font-size: 0.75rem; }
  .footer-bottom p { font-size: 0.74rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .consult-box { padding: 24px 16px; }
  .consult-box .gift { font-size: 2.2rem; }
  .why-card { padding: 26px 20px; }
  .svc-card { padding: 28px 22px; }
  .testi-card { padding: 26px 20px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--off-white); }
.d-none      { display: none; }
