/* ============================================================
   RESPLENDENT GROUP — MAIN STYLESHEET
   Brand: Navy #1B2B4B | Gold #F5A623 | Font: DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2B4B;
  --navy-dark: #0f1e36;
  --navy-mid: #243660;
  --gold:   #F5A623;
  --gold-dark: #d4891a;
  --gold-light: #ffd280;
  --white:  #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #e8ecf4;
  --gray:   #8892a4;
  --gray-dark: #4a5568;
  --text:   #1a202c;
  --shadow: 0 4px 24px rgba(27,43,75,0.10);
  --shadow-lg: 0 12px 48px rgba(27,43,75,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--navy); line-height: 1.15; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray-dark); max-width: 640px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 15px; transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.45);
}
.btn-outline {
  border: 2px solid var(--white); color: var(--white); background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  border: 2px solid var(--navy); color: var(--navy); background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27,43,75,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: all var(--transition);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px; max-width: var(--max-w); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-img { height: 100px; width: auto; display: block; }
.footer-logo-img { height: 110px; width: auto; display: block; margin-bottom: 4px; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--navy);
}
.nav-logo-text { font-weight: 800; font-size: 20px; color: var(--white); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 8px; transition: all var(--transition);
  position: relative; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(245,166,35,0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 520px; padding: 12px 24px 24px; opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease; border: 1px solid var(--gray-light);
  padding-top: 16px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dropdown-category { margin-bottom: 16px; }
.dropdown-category-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold); padding: 0 12px 8px; display: block;
}
.dropdown-item {
  display: block; padding: 8px 12px; border-radius: 8px; font-size: 14px;
  font-weight: 500; color: var(--gray-dark); cursor: pointer;
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--off-white); color: var(--navy); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: all var(--transition); display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 999; overflow-y: auto; padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block; padding: 14px 0; color: var(--white); font-size: 18px;
  font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-category {
  font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); padding: 16px 0 8px; font-weight: 700;
}
.mobile-nav-sublink {
  display: block; padding: 10px 16px; color: rgba(255,255,255,0.75);
  font-size: 15px; cursor: pointer; transition: color var(--transition);
}
.mobile-nav-sublink:hover { color: var(--gold); }

/* ── POPUP BANNER ── */
#popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
#popup-overlay.show { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 560px; width: 92%; overflow: hidden; position: relative;
  animation: popIn 0.35s ease;
}
@keyframes popIn { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
  position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.4);
  color: white; border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  cursor: pointer; z-index: 1; border: none; line-height: 1;
}
.popup-close:hover { background: rgba(0,0,0,0.7); }
.popup-img { width: 100%; max-height: 400px; object-fit: cover; }
.popup-content { padding: 24px; }
.popup-content h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.popup-content p { color: var(--gray-dark); margin-bottom: 16px; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10,22,46,0.93) 0%, rgba(27,43,75,0.88) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--gold) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--gold) 2px, transparent 2px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-title {
  font-size: clamp(36px, 6vw, 72px); font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 14px; }
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── STATS BAR ── */
#stats-bar { background: var(--gold); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 14px; color: var(--navy); opacity: 0.75; margin-top: 6px; font-weight: 500; }

/* ── ABOUT PREVIEW ── */
#about-preview { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-img-real {
  width: 100%; height: 460px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.about-img-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 16px 24px; border-radius: var(--radius); font-weight: 800;
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-img-badge .big { font-size: 36px; line-height: 1; }
.about-img-badge .small { font-size: 12px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-value-card {
  padding: 20px; border-radius: var(--radius); background: var(--off-white);
  border-left: 4px solid var(--gold);
}
.about-value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-value-card p { font-size: 13px; color: var(--gray-dark); }

/* ── CLIENTS STRIP ── */
#clients-strip { padding: 56px 0; background: var(--off-white); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.clients-label { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 32px; }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.client-logo {
  height: 64px; border-radius: var(--radius); border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-align: center; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4;
  background: var(--white); transition: all var(--transition); padding: 0 8px;
}
.client-logo:hover { border-color: var(--gold); color: var(--navy); }
@media (max-width: 768px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── WHY CHOOSE US ── */
#why-us { padding: 100px 0; background: var(--navy); }
#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── CATEGORY CARDS (home) ── */
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.category-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 36px 32px; cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.category-card:hover::before { transform: scaleX(1); }
.category-icon { color: var(--gold); margin-bottom: 20px; }
.category-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.category-card p { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; }
.category-services-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.category-service-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  background: rgba(27,43,75,0.06); color: var(--navy); padding: 4px 10px; border-radius: 20px;
}
.category-card-link { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ── CATEGORY SERVICE CARDS (category page) ── */
.cat-service-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 36px; cursor: pointer; transition: all var(--transition);
}
.cat-service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); transform: translateY(-2px); }
.cat-service-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 4px; }
.cat-service-icon { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.cat-service-offerings { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0 24px; }
.cat-service-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--gray-light); }
.cat-service-pricing { display: flex; align-items: baseline; gap: 6px; }
.pricing-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-value { font-size: 24px; font-weight: 800; color: var(--navy); }
.pricing-period { font-size: 13px; color: var(--gray); }
@media (max-width: 600px) { .cat-service-offerings { grid-template-columns: 1fr; } .cat-service-footer { flex-direction: column; gap: 16px; align-items: flex-start; } }

/* ── SERVICES GRID ── */
#services-home { padding: 100px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-light); transition: all var(--transition);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-cat-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); background: rgba(245,166,35,0.1); padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.service-icon { color: var(--gold); margin-bottom: 16px; line-height: 1; }
.service-icon svg { display: block; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.65; margin-bottom: 20px; }
.service-card-link {
  font-size: 14px; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}

/* ── PACKAGES ── */
#packages { padding: 100px 0; background: var(--white); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-card {
  border-radius: var(--radius-lg); border: 2px solid var(--gray-light);
  padding: 40px 36px; position: relative; transition: all var(--transition);
}
.package-card.featured {
  background: var(--navy); border-color: var(--gold);
  transform: scale(1.04);
}
.package-card:not(.featured):hover { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 4px 20px;
  border-radius: 50px; font-size: 12px; font-weight: 800; white-space: nowrap;
}
.package-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; }
.package-price { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.package-card.featured .package-price { color: var(--white); }
.package-period { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.package-card.featured .package-period { color: rgba(255,255,255,0.6); }
.package-features { margin-bottom: 32px; }
.package-feature {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
  font-size: 14px; color: var(--gray-dark); border-bottom: 1px solid var(--gray-light);
}
.package-card.featured .package-feature { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.package-feature-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.package-cta { width: 100%; text-align: center; padding: 14px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all var(--transition); }
.package-cta-primary { background: var(--gold); color: var(--navy); }
.package-cta-primary:hover { background: var(--gold-dark); }
.package-cta-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.package-cta-outline:hover { background: var(--navy); color: var(--white); }

/* ── TESTIMONIALS ── */
#testimonials { padding: 100px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold); font-size: 16px; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--gray); }

/* ── BLOG SECTION ── */
#blog-home { padding: 100px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-light); transition: all var(--transition);
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.blog-card-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy); padding: 4px 12px;
  border-radius: 50px; font-size: 12px; font-weight: 700;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 16px; }
.blog-card-read { font-size: 14px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.blog-card-link-wrap { text-decoration: none; display: block; color: inherit; }

/* ── CONTACT SECTION ── */
#contact-home { padding: 100px 0; background: var(--navy); }
#contact-home .section-title { color: var(--white); }
#contact-home .section-subtitle { color: rgba(255,255,255,0.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.contact-info-icon-light {
  background: rgba(27,43,75,0.08); color: var(--navy);
}
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: rgba(255,255,255,0.65); }
.contact-info-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 13px 16px; color: var(--white); font-size: 15px;
  font-family: inherit; transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); outline: none; background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 16px; border-radius: 50px; transition: all var(--transition); border: none; cursor: pointer; font-family: inherit; }
.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 32px; color: var(--gold); font-size: 18px; font-weight: 700; }
.form-success.show { display: block; }

/* Newsletter stripe */
#newsletter-stripe { padding: 56px 0; background: var(--gold); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.newsletter-text p { font-size: 15px; color: rgba(27,43,75,0.75); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 20px; border-radius: 50px; border: none;
  font-size: 15px; width: 300px; max-width: 100%; font-family: inherit;
}
.newsletter-form input:focus { outline: 2px solid var(--navy); }
.newsletter-form button { padding: 14px 28px; border-radius: 50px; background: var(--navy); color: var(--white); font-weight: 700; border: none; cursor: pointer; font-family: inherit; font-size: 15px; transition: all var(--transition); }
.newsletter-form button:hover { background: var(--navy-dark); }

/* ── FOOTER ── */
#footer { background: var(--navy-dark); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 16px; transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.55); padding: 5px 0; cursor: pointer; transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); cursor: pointer; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.5); cursor: pointer; }
.breadcrumb span:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb .current { color: var(--gold); cursor: default; }

/* ── ABOUT PAGE ── */
#about-page { padding: 100px 0; }
.about-founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; margin-bottom: 100px; }
.founder-photo-wrap {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.founder-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-photo-fallback {
  display: none; width: 100%; height: 100%;
  align-items: center; justify-content: center; background: inherit;
}
/* Service page hero icon */
.service-page-hero-icon { color: var(--gold); margin-bottom: 16px; opacity: 0.9; }
.founder-quote {
  font-size: 22px; font-style: italic; color: var(--navy); font-weight: 600;
  border-left: 4px solid var(--gold); padding-left: 24px; margin: 28px 0;
}
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 80px 0; background: var(--off-white); margin: 0 -9999px; padding-left: 9999px; padding-right: 9999px; }
.mvv-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; border-bottom: 4px solid transparent;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.mvv-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.mvv-icon { margin-bottom: 20px; color: var(--gold); display: flex; justify-content: center; }
.mvv-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.mvv-card p { font-size: 15px; color: var(--gray-dark); line-height: 1.7; }

/* ── SERVICE DETAIL PAGE ── */
#service-page { padding: 80px 0; }
.service-page-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px; align-items: start; }
.service-page-content h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.service-page-content p { font-size: 16px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 20px; }
.offerings-list { margin: 32px 0; }
.offering-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.offering-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; line-height: 1; }
.offering-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.offering-text p { font-size: 14px; color: var(--gray-dark); }
.service-sidebar { position: sticky; top: 100px; }
.service-cta-box {
  background: var(--navy); border-radius: var(--radius-lg); padding: 36px;
  text-align: center; margin-bottom: 24px;
}
.service-cta-box h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-cta-box p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.service-cta-box .btn { width: 100%; justify-content: center; }
.pricing-tiers { display: grid; gap: 16px; }
.pricing-tier {
  border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 24px;
  transition: all var(--transition); cursor: pointer;
}
.pricing-tier:hover, .pricing-tier.active { border-color: var(--gold); }
.pricing-tier.featured { background: var(--off-white); border-color: var(--navy); }
.tier-name { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.tier-price { font-size: 28px; font-weight: 800; color: var(--navy); }
.tier-period { font-size: 13px; color: var(--gray); }
.tier-features { margin-top: 12px; }
.tier-feature { font-size: 13px; color: var(--gray-dark); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.tier-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── BLOG PAGE ── */
#blog-page { padding: 80px 0; }
.blog-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.blog-list { display: grid; gap: 32px; }
.blog-list-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 28px;
  border: 1px solid var(--gray-light); border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.blog-list-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.blog-list-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-size: cover; background-position: center;
}
.blog-list-body { padding: 28px 28px 28px 0; }
.blog-list-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-list-cat { background: rgba(245,166,35,0.1); color: var(--gold); padding: 3px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.blog-list-date { font-size: 13px; color: var(--gray); }
.blog-list-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-list-body p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 16px; }
.blog-sidebar-widget { background: var(--off-white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.blog-sidebar-widget h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-tag { display: inline-block; padding: 6px 14px; border-radius: 50px; background: var(--white); border: 1px solid var(--gray-light); font-size: 13px; color: var(--gray-dark); margin: 4px; cursor: pointer; transition: all var(--transition); }
.sidebar-tag:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.sidebar-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-light); cursor: pointer; }
.sidebar-post:last-child { border: none; }
.sidebar-post-img { width: 56px; height: 56px; border-radius: 8px; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.sidebar-post h5 { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.sidebar-post span { font-size: 12px; color: var(--gray); }

/* Blog single post */
.blog-post-content { max-width: 780px; margin: 0 auto; padding: 80px 24px; }
.blog-post-content h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.blog-post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 36px; flex-wrap: wrap; }
.blog-post-meta .cat { background: var(--gold); color: var(--navy); padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.blog-post-meta .date { font-size: 14px; color: var(--gray); }
.blog-post-meta .author { font-size: 14px; color: var(--gray-dark); font-weight: 600; }
.blog-post-hero-img { width: 100%; height: 400px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); background-size: cover; background-position: center; border-radius: var(--radius-lg); margin-bottom: 40px; }
.blog-post-body { font-size: 17px; line-height: 1.85; color: #2d3748; }
.blog-post-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 36px 0 16px; }
.blog-post-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { margin: 16px 0 20px 24px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body blockquote { border-left: 4px solid var(--gold); padding: 16px 24px; background: var(--off-white); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--gray-dark); }

/* ── BACK BUTTON ── */
.back-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  border-radius: 50px; background: rgba(27,43,75,0.08); color: var(--navy);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition);
  border: none; font-family: inherit; margin-bottom: 24px;
}
.back-btn:hover { background: var(--navy); color: var(--white); }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(27,43,75,0.75); margin-bottom: 32px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LOADING ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
}
.loader-inner { text-align: center; }
.loader-logo { font-size: 48px; font-weight: 900; color: var(--gold); margin-bottom: 8px; letter-spacing: -2px; }
.loader-text { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 24px auto 0; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; animation: loadbar 1.2s ease forwards; }
@keyframes loadbar { from { width: 0; } to { width: 100%; } }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 5000;
  background: var(--navy); color: var(--white); padding: 16px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0; transition: all 0.35s ease;
  max-width: 360px; border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: all var(--transition); border: none; font-size: 18px;
}
#scroll-top.show { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .about-founder-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-img { height: 180px; }
  .dropdown-menu { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
