/* ============================================
   LUXURY DESIGN SYSTEM
   Problem Solver's Consultants
   Loaded last — overrides all prior styles
   Palette: Midnight Navy + Champagne Gold
   ============================================ */

/* ============================================
   LUXURY TOKENS
   ============================================ */
:root {
  --primary:         #0B1E38;   /* Midnight Navy */
  --primary-mid:     #163358;   /* Mid Navy */
  --primary-light:   #1E4070;   /* Light Navy */
  --accent:          #C9A84C;   /* Champagne Gold */
  --accent-light:    #DFC06A;   /* Light Gold */
  --accent-dark:     #A07830;   /* Dark Gold */
  --white:           #FFFFFF;
  --ivory:           #FAFAF7;
  --light-bg:        #F3F1EB;
  --text-dark:       #0A0A0A;
  --text-muted:      #5C5C5C;
  --glass-bg:        rgba(11, 30, 56, 0.05);
  --glass-border:    rgba(201, 168, 76, 0.2);

  --shadow-card:  0 4px 28px rgba(0, 0, 0, 0.07);
  --shadow-deep:  0 16px 56px rgba(11, 30, 56, 0.18);
  --shadow-gold:  0 6px 28px rgba(201, 168, 76, 0.22);

  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  16px;
}

/* ============================================
   BASE
   ============================================ */
body {
  background: var(--white);
}

/* ============================================
   HEADER — luxury dark bar
   ============================================ */
header {
  background: var(--primary) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.10);
}

/* Thin champagne-gold accent stripe across the very top */
header::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-dark) 15%,
    var(--accent) 50%,
    var(--accent-dark) 85%,
    transparent 100%
  );
  opacity: 0.85;
}

header.scrolled {
  background: rgba(11, 30, 56, 0.97) !important;
  backdrop-filter: blur(22px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.28) !important;
}

/* Header container — tighter, more refined */
.header-container {
  padding: 11px 32px !important;
  max-width: 1320px !important;
}

/* ── Logo: white pill contains the JPG white-bg cleanly ── */
.logo {
  background: rgba(255, 255, 255, 0.97) !important;
  padding: 7px 16px !important;
  border-radius: 7px !important;
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
}

.logo:hover {
  transform: scale(1.03) !important;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Stop the global a::after underline appearing on the logo */
.logo::after { display: none !important; }

.logo img {
  height: 34px !important;
  width: auto !important;
  display: block !important;
  margin: 0 !important;
}

/* ── Nav links ── */
.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.nav-link::after {
  background: var(--accent) !important;
  height: 1px;
}

/* ── Header actions — vertical divider on left ── */
.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.09) !important;
  padding-left: 22px !important;
  margin-left: 6px !important;
}

/* ── Phone number ── */
.phone-link {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  font-family: var(--font-mono) !important;
  letter-spacing: 0.6px !important;
  white-space: nowrap;
}

.phone-link:hover { color: var(--accent) !important; }

/* Pulse dot — gold, slightly smaller */
.phone-pulse {
  background: var(--accent) !important;
  width: 7px !important;
  height: 7px !important;
  margin-right: 7px !important;
  opacity: 0.85;
}

/* ── Book a Meeting CTA ── */
header .btn-sm {
  padding: 10px 20px !important;
  font-size: 10.5px !important;
  letter-spacing: 1.3px !important;
  border-radius: 5px !important;
  white-space: nowrap;
}

.hamburger span { background: rgba(255, 255, 255, 0.80) !important; }

/* ── Dropdowns ── */
.dropdown-menu {
  background: #0a1c35 !important;
  border: 1px solid rgba(201, 168, 76, 0.12) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38) !important;
  border-radius: 8px !important;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.70) !important;
  font-size: 11.5px;
  letter-spacing: 0.3px;
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  color: var(--accent) !important;
  border-left-color: var(--accent) !important;
}

/* Mobile: remove separator, smaller logo */
@media (max-width: 768px) {
  .header-container {
    padding: 10px 16px !important;
  }

  .header-actions {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    gap: 10px !important;
  }

  .logo img {
    height: 28px !important;
  }

  .logo {
    padding: 6px 12px !important;
  }
}

/* ============================================
   HERO — cinematic dark
   ============================================ */
.hero {
  background:
    radial-gradient(ellipse at 12% 55%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #060F1C 0%, #0B1E38 55%, #122744 100%) !important;
  background-size: 100% 100% !important;
  animation: none !important;
}

.hero::before {
  background-image: none !important;
}

.hero::after {
  animation: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Gold rule above H1 */
.hero-content::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
  opacity: 0.75;
}

.hero h1 {
  font-family: 'DM Serif Display', 'Playfair Display', serif !important;
  font-weight: 400 !important;
  font-size: clamp(34px, 5.2vw, 62px) !important;
  letter-spacing: -1px !important;
  line-height: 1.1 !important;
  text-shadow: none !important;
}

.hero p {
  color: rgba(255, 255, 255, 0.60) !important;
  font-size: 16px !important;
  line-height: 1.8;
}

/* Hero CTA buttons */
.hero .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #A87828 100%) !important;
  color: #07111E !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35) !important;
  padding: 18px 36px !important;
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%) !important;
  color: #07111E !important;
  transform: translateY(-3px) scale(1) !important;
  box-shadow: 0 16px 44px rgba(201, 168, 76, 0.45) !important;
}

.hero .btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  padding: 18px 36px !important;
}

.hero .btn-secondary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(201, 168, 76, 0.06) !important;
  transform: translateY(-3px) !important;
  box-shadow: none !important;
}

.scroll-indicator svg {
  stroke: rgba(201, 168, 76, 0.45) !important;
}

/* ============================================
   GLOBAL BUTTONS
   ============================================ */
.btn {
  border-radius: var(--radius-md) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 700;
}

/* Kill the arrow pseudo-element from global.css */
.btn::after {
  content: '' !important;
  width: 0 !important;
  height: 0 !important;
  position: static !important;
  background: none !important;
}

/* Kill ripple from modern-effects */
.btn:active::after {
  width: 0 !important;
  height: 0 !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
  color: var(--primary) !important;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.28) !important;
  border: none !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%) !important;
  color: var(--primary) !important;
  transform: translateY(-2px) scale(1) !important;
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.38) !important;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99) !important;
}

.btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(11, 30, 56, 0.4) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}

.btn-secondary:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(11, 30, 56, 0.18) !important;
  transform: translateY(-2px) !important;
}

/* ============================================
   SECTIONS — generous luxury spacing
   ============================================ */
.section {
  padding: 96px 0 !important;
  background: var(--white);
}

.section-accent {
  background: #F4F2EC !important;
}

.section-dark {
  background: linear-gradient(135deg, #0B1E38 0%, #163358 100%) !important;
}

/* Override modern-effects separator on hover */
.section::before {
  display: none !important;
}

.section-header {
  margin-bottom: 64px !important;
}

/* Section heading — remove gradient text, use solid */
.section-header h2 {
  font-size: clamp(26px, 3.4vw, 44px) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--text-dark) !important;
  background-clip: unset !important;
  color: var(--text-dark) !important;
  animation: none !important;
}

.section-dark .section-header h2 {
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white) !important;
}

/* Gold rule under section heading */
.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
  opacity: 0.65;
}

/* Suppress heading hover effect */
.section-header h2:hover {
  transform: none !important;
  filter: none !important;
}

.section-header p {
  font-size: 17px !important;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Section eyebrow label */
.section-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ============================================
   FEATURE CARDS — refined white
   ============================================ */
.feature-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.065) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-card) !important;
  padding: 48px 38px !important;
}

.feature-card::before {
  height: 2px !important;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark)) !important;
  animation: none !important;
}

.feature-card:hover {
  transform: translateY(-7px) scale(1) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.10) !important;
  border-color: rgba(201, 168, 76, 0.22) !important;
}

.feature-icon {
  font-size: 38px !important;
  margin-bottom: 22px !important;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg) !important;
}

.feature-card h3 {
  font-size: 20px !important;
  color: var(--text-dark) !important;
  letter-spacing: -0.3px !important;
}

/* ============================================
   SERVICE CARDS — dark luxury
   ============================================ */
.service-card {
  background: linear-gradient(160deg, #0B1E38 0%, #1A3260 100%) !important;
  border: 1px solid rgba(201, 168, 76, 0.10) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 8px 40px rgba(11, 30, 56, 0.25) !important;
  min-height: 300px !important;
  padding: 36px !important;
}

.service-card::before {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%) !important;
}

.service-card:hover {
  transform: translateY(-9px) scale(1) !important;
  box-shadow: 0 22px 60px rgba(11, 30, 56, 0.32), 0 0 50px rgba(201, 168, 76, 0.06) !important;
  border-color: rgba(201, 168, 76, 0.22) !important;
}

.service-icon {
  font-size: 38px !important;
}

.service-card:hover .service-icon {
  transform: scale(1.15) translateY(-4px) !important;
  filter: none !important;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.065) !important;
  border-left: 2px solid var(--accent) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-card) !important;
  padding: 38px !important;
}

.testimonial-card::before {
  color: var(--accent) !important;
  font-size: 110px !important;
  opacity: 0.07 !important;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.09) !important;
  border-left-color: var(--accent-dark) !important;
}

.testimonial-card:hover .stars { animation: none !important; }

.testimonial-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: var(--accent) !important;
}

.stars {
  color: var(--accent) !important;
  letter-spacing: 3px !important;
}

/* ============================================
   STATS (section-dark)
   ============================================ */
.section-dark .stat-number {
  color: var(--accent) !important;
  font-size: 50px;
  letter-spacing: -2px;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-box {
  border-right: 1px solid rgba(201, 168, 76, 0.14) !important;
  padding: 44px 30px !important;
}

.stat-box:last-child { border-right: none !important; }

/* ============================================
   BLOG CARDS
   ============================================ */
.card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.065) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-card) !important;
}

.card:hover {
  transform: translateY(-7px) scale(1) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.09) !important;
  border-color: rgba(201, 168, 76, 0.16) !important;
}

.card::before {
  display: none !important;
}

.badge-accent {
  background: rgba(201, 168, 76, 0.12) !important;
  color: #7A5A1E !important;
  border-color: rgba(201, 168, 76, 0.25) !important;
}

/* ============================================
   CERTIFICATION CARDS
   ============================================ */
.certification-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.065) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-card) !important;
}

.certification-card::before {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%) !important;
}

.certification-card:hover {
  transform: translateY(-8px) scale(1) !important;
  box-shadow: 0 18px 50px rgba(201, 168, 76, 0.12) !important;
  border-color: rgba(201, 168, 76, 0.20) !important;
}

/* ============================================
   FORMS
   ============================================ */
.form-group input,
.form-group textarea,
.form-group select {
  background: #F8F7F2 !important;
  border: 1px solid rgba(0, 0, 0, 0.10) !important;
  border-radius: var(--radius-md) !important;
  transition: all 0.25s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.10), 0 4px 14px rgba(201, 168, 76, 0.10) !important;
  transform: none !important;
}

/* ============================================
   FOOTER — deep luxury dark
   ============================================ */
.footer-modern {
  background: linear-gradient(160deg, #050D19 0%, #0B1E38 100%) !important;
  border-top: 1px solid rgba(201, 168, 76, 0.12) !important;
}

.footer-modern::before {
  background:
    radial-gradient(circle at 12% 35%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 88% 65%, rgba(201, 168, 76, 0.03) 0%, transparent 50%) !important;
}

.footer-modern h4 {
  font-size: 10.5px !important;
  letter-spacing: 2.5px !important;
  border-bottom-color: rgba(201, 168, 76, 0.35) !important;
}

.footer-contact-card {
  background: rgba(201, 168, 76, 0.04) !important;
  border-color: rgba(201, 168, 76, 0.10) !important;
}

.social-link-modern:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28) !important;
}

/* ============================================
   MOBILE NAV — dark background
   ============================================ */
@media (max-width: 768px) {
  .nav {
    background: var(--primary) !important;
  }

  .nav-link {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
  }

  .dropdown-menu {
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .section {
    padding: 64px 0 !important;
  }
}

/* ============================================
   STICKY MOBILE CTA — luxury
   ============================================ */
.sticky-call {
  background: var(--primary) !important;
  color: var(--accent) !important;
  font-size: 12.5px;
  letter-spacing: 0.5px;
}

/* ============================================
   LINK HOVER UNDERLINES
   Remove aggressive global rule; keep nav only
   ============================================ */
a::after {
  display: none !important;
}

.nav-link::after {
  display: block !important;
  bottom: -4px;
  height: 1px;
  left: 0;
  width: 0;
  background: var(--accent) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ============================================
   CERTIFICATIONS SECTION — TROPHY CARDS
   Dark navy cards on ivory, glassmorphism
   accents, gold details
   ============================================ */

.cert-section {
  background: var(--ivory) !important;
  position: relative;
  overflow: hidden;
}

/* Ambient orbs behind the cards */
.cert-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.cert-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.cert-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 30, 56, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

/* 3-column card grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

/* Trophy card — dark luxury */
.cert-card {
  background: linear-gradient(160deg, #0B1E38 0%, #163358 100%);
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 8px 32px rgba(11, 30, 56, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

/* Gold shimmer orb inside each card */
.cert-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.cert-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow:
    0 22px 60px rgba(11, 30, 56, 0.30),
    0 0 50px rgba(201, 168, 76, 0.07);
}

.cert-card:hover::after {
  transform: scale(1.8) translate(10%, 10%);
}

/* Certified checkmark badge — top right */
.cert-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-badge {
  background: rgba(201, 168, 76, 0.20);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.20);
}

/* Logo area */
.cert-logo-area {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.cert-logo-area img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-area img {
  filter: brightness(1.3) drop-shadow(0 4px 14px rgba(201, 168, 76, 0.18));
  transform: scale(1.06);
}

/* Text-only logo for certs without an image */
.cert-logo-monogram {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-monogram {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22) 0%, rgba(201, 168, 76, 0.10) 100%);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.14);
}

/* Thin gold rule separating logo from text */
.cert-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.05), transparent);
  margin-bottom: 18px;
}

/* Card text */
.cert-name {
  font-size: 16px !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  margin: 0 0 7px !important;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.cert-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.65;
  margin: 0 0 16px;
}

/* Gold tag pills */
.cert-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.cert-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 4px;
  padding: 3px 9px;
}

/* Stats strip */
.cert-stats-strip {
  background: linear-gradient(135deg, #0B1E38 0%, #163358 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 36px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Gold line on top edge of stats strip */
.cert-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.45), transparent);
}

.cert-stat {
  text-align: center;
  padding: 0 24px;
}

.cert-stat + .cert-stat {
  border-left: 1px solid rgba(201, 168, 76, 0.14);
}

.cert-stat-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}

.cert-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

/* Responsive */
@media (max-width: 1024px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cert-stats-strip {
    padding: 32px 32px;
  }
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cert-stats-strip {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .cert-stat + .cert-stat {
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.14);
    padding-top: 28px;
  }
}

/* ============================================
   HERO GLASSMORPHISM
   Orbs, glass visual panel, floating metrics,
   trust badges
   ============================================ */

/* Blurred orbs that give the glass something to blur through */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-gold-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 70%);
  filter: blur(80px);
  top: -15%;
  right: 5%;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-gold-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 5%;
  right: 42%;
  animation: float 26s ease-in-out infinite reverse;
}

.hero-orb-blue {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(22, 51, 88, 0.8) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -20%;
  left: -8%;
}

/* Layout wrapper that replaces the old inline grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 96px 40px 80px;
}

/* Glass trust badges below buttons */
.hero-trust-strip {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 7px 15px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-trust-badge:hover {
  background: rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.22);
  color: var(--accent);
}

.hero-trust-badge b {
  color: var(--accent);
  font-weight: 700;
}

/* Glass panel wrapping the visual column */
.hero-visual {
  position: relative;
}

.hero-visual-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: visible;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Thin gold shimmer line along the top edge */
.hero-visual-glass::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.45), transparent);
  border-radius: 1px;
}

/* Main image inside the glass panel */
.hero-img-main {
  position: relative;
  margin-bottom: 14px;
}

.hero-img-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.40);
  animation: floatImage 3s ease-in-out infinite;
  display: block;
}

/* Two bottom small images */
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-img-sm {
  position: relative;
}

.hero-img-sm img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  display: block;
}

.hero-img-sm:first-child {
  animation: floatImageReverse 3.5s ease-in-out infinite;
}

.hero-img-sm:last-child {
  animation: floatImage 3.8s ease-in-out infinite;
}

/* Floating glass metric cards */
.glass-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 13px 18px;
  z-index: 20;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 110px;
}

.glass-metric-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}

.glass-metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.glass-metric-stars {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 3px;
}

/* Top-right of the glass panel (above main image) */
.glass-metric-topright {
  top: -18px;
  right: -18px;
}

/* Bottom-left, anchored to the first small image */
.glass-metric-bottomleft {
  bottom: -16px;
  left: -16px;
}

/* Bottom-right, anchored to the second small image */
.glass-metric-bottomright {
  bottom: -16px;
  right: -16px;
}

@media (max-width: 1024px) {
  .hero-inner {
    gap: 44px;
    padding: 80px 24px 64px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 20px 56px;
  }

  .hero-visual-glass {
    padding: 18px;
  }

  .glass-metric {
    padding: 9px 13px;
  }

  .glass-metric-value {
    font-size: 18px;
  }

  .glass-metric-topright {
    top: -12px;
    right: -8px;
  }

  .glass-metric-bottomleft {
    display: none;
  }

  .glass-metric-bottomright {
    bottom: -10px;
    right: -8px;
  }

  .hero-trust-strip {
    gap: 7px;
  }

  .hero-trust-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* ============================================
   CONTACT SECTION — FULL REDESIGN
   Dark two-column: info left, glass form right
   ============================================ */

.contact-redesign {
  background: linear-gradient(160deg, #070F1E 0%, #0B1E38 55%, #122744 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;
}

.contact-redesign::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 65%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---- Left column ---- */
.contact-info-col .section-eyebrow {
  text-align: left;
}

.contact-info-col h2 {
  font-size: clamp(28px, 3.4vw, 44px) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
}

.contact-info-col h2::after {
  margin: 18px 0 0 !important;
}

.contact-info-col > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 40px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-info-item:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.16);
}

/* Gold dot icon wrap */
.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.contact-info-text {
  flex: 1;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
  display: block;
}

.contact-info-value {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  display: block;
}

a.contact-info-value:hover {
  color: var(--accent);
}

/* Direct booking link */
.contact-book-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.3s ease;
}

.contact-book-link::after {
  content: '→';
  display: inline;
  transition: transform 0.3s ease;
}

.contact-book-link:hover {
  color: var(--accent-light);
  gap: 14px;
}

/* ---- Right column: glass form ---- */
.contact-form-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 48px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Gold shimmer line on top edge */
.contact-form-glass::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.50), transparent);
}

.contact-form-glass .form-group label {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-form-glass .form-group input,
.contact-form-glass .form-group textarea,
.contact-form-glass .form-group select {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 13px 16px !important;
  transition: all 0.25s ease !important;
}

.contact-form-glass .form-group input::placeholder,
.contact-form-glass .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.contact-form-glass .form-group input:focus,
.contact-form-glass .form-group textarea:focus,
.contact-form-glass .form-group select:focus {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(201, 168, 76, 0.38) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08) !important;
  transform: none !important;
}

.contact-form-glass .form-group select option {
  background: #0B1E38;
  color: rgba(255, 255, 255, 0.88);
}

.contact-privacy-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

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

  .contact-form-glass {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .contact-redesign {
    padding: 64px 0 !important;
  }

  .contact-form-glass {
    padding: 28px 20px;
  }
}
