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

:root {
  --navy: #1a2f4e;
  --navy-dark: #0f1e33;
  --navy-light: #243d5e;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a8882e;
  --light-bg: #f7f9fc;
  --text-muted: #6b7a8d;
  --border-light: #e2eaf4;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: #2d3748;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar a { color: rgba(255,255,255,0.75); text-decoration: none; }
.top-bar a:hover { color: var(--gold); }
.top-bar .gold-text { color: var(--gold); font-weight: 600; }

/* ── NAVBAR ── */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26,47,78,0.1);
  padding: 14px 0;
}
.navbar-brand .brand-logo {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
  margin-right: 12px;
  flex-shrink: 0;
}
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.navbar-brand .brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}
.main-navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--gold) !important;
  background: rgba(201,168,76,0.08);
}
.btn-call-nav {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-size: 0.88rem !important;
  transition: all 0.25s !important;
  border: 2px solid var(--gold) !important;
}
.btn-call-nav:hover {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-color: var(--navy) !important;
}

/* ── HERO ── */
.hero-section {
  min-height: 92vh;
  background-image: linear-gradient(to right, rgba(15,30,51,0.97) 45%, rgba(15,30,51,0.55) 75%, rgba(15,30,51,0.2) 100%),
    url('https://images.unsplash.com/photo-1488426862026-3ee34a7d66df?w=1920&q=85');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.hero-features {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.hero-feat-item i { color: var(--gold); font-size: 1rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stat-item { text-align: center; padding: 10px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0 10px;
}

/* ── SECTION TITLES ── */
.section-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── WHY CHOOSE US ── */
.why-section { background: var(--light-bg); padding: 90px 0; }
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,47,78,0.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* ── SERVICES ── */
.services-section { padding: 90px 0; background: #fff; }
.service-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 100%;
  transition: all 0.3s;
  background: #fff;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,47,78,0.12); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 26px 24px; }
.service-card-badge {
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.service-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; line-height: 1.7; }
.btn-service-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.btn-service-link:hover { color: var(--gold); gap: 10px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--light-bg); padding: 90px 0; }
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text {
  color: #3d4f63;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.author-role { color: var(--text-muted); font-size: 0.78rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a4a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(201,168,76,0.08);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 50px solid rgba(201,168,76,0.05);
  bottom: -80px; left: 5%;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-title .gold { color: var(--gold); }
.cta-desc { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.btn-cta-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-cta-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-brand-logo {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  margin-right: 12px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}
.footer-brand-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-heading {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact-text a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-contact-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 100px solid rgba(201,168,76,0.06);
  top: -150px; right: -100px;
}
.page-hero .eyebrow { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; font-size: 0.98rem; }
.breadcrumb-custom { background: transparent; padding: 0; margin: 0; }
.breadcrumb-custom .breadcrumb-item a { color: var(--gold); text-decoration: none; font-size: 0.82rem; }
.breadcrumb-custom .breadcrumb-item.active { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── LEGAL PAGES ── */
.legal-content { padding: 70px 0; }
.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 60px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 40px rgba(26,47,78,0.06);
}
@media (max-width: 768px) { .legal-card { padding: 30px 24px; } }
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-light); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h3 {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.legal-section p, .legal-section li {
  color: #4a5568;
  font-size: 0.93rem;
  line-height: 1.85;
}
.legal-section ul { padding-left: 20px; }
.legal-section ul li { margin-bottom: 8px; }
.effective-date {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── ABOUT PAGE ── */
.about-story { padding: 90px 0; }
.about-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(26,47,78,0.18); }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.value-card {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  height: 100%;
}
.value-icon { width: 50px; height: 50px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.value-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* ── SERVICES DETAIL PAGE ── */
.service-detail-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: 0 16px 50px rgba(26,47,78,0.1); transform: translateY(-3px); }
.service-detail-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.service-detail-body { padding: 32px; }
.service-detail-body h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.service-detail-body p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; }
.service-features-list { list-style: none; padding: 0; }
.service-features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #3d4f63; margin-bottom: 8px; }
.service-features-list li i { color: var(--gold); font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-section { padding: 100px 0 60px; min-height: 85vh; }
  .hero-features { gap: 16px; }
  .stat-divider { display: none; }
  .stats-bar .d-flex { flex-wrap: wrap; }
  .stat-item { min-width: 45%; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
}
