body { font-family: 'Outfit', system-ui, sans-serif; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* Gold gradient text */
.text-gold-gradient { background: linear-gradient(135deg, #b49144 0%, #c19e52 50%, #8f7233 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero background */
.hero-bg {
  background: linear-gradient(135deg, #092d50 0%, #0f3a64 60%, #092d50 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b49144' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,145,68,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-card {
  border: 1px solid rgba(156, 156, 154, 0.45);
}

/* Nav blur */
.nav-blur { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* Navbar brand */
.nav-brand {
  gap: 0.5rem;
}

.nav-brand-logo {
  display: block;
}

.nav-brand-primary {
  color: #f5f5f5;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-brand-secondary {
  color: #b49144;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.1;
  margin-top: 0.1rem;
}

@media (min-width: 768px) {
  .nav-brand {
    gap: 0.9rem;
  }

  .nav-brand-logo {
    display: block;
    height: 2.9rem;
    width: auto;
  }

  .nav-brand-primary {
    font-size: 1.55rem;
  }

  .nav-brand-secondary {
    font-size: 0.9rem;
    margin-top: 0.05rem;
  }
}

/* Service card hover */
.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(9,45,80,0.16); }

/* Service icons: navy tile with gold icon */
#services .service-card > div:first-child {
  background: #092d50;
}

#services .service-card > div:first-child svg {
  color: #b49144;
}

/* Core Values icons: navy tile with gold icon */
#why-us .w-12.h-12 {
  background: #092d50;
}

#why-us .w-12.h-12 svg {
  color: #b49144;
}

/* Simple Process step circles: navy circle with gold number */
#process .group > .w-14.h-14 {
  background: #092d50;
}

#process .group > .w-14.h-14 span {
  color: #b49144;
}

/* Core Values section band */
.core-values-section {
  background: linear-gradient(180deg, #ebeef1 0%, #e5e9ee 100%);
  border-top: 1px solid rgba(9, 45, 80, 0.08);
  border-bottom: 1px solid rgba(9, 45, 80, 0.08);
}

/* Partner initials badge */
.partner-chip {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.partner-chip-navy {
  background: #092d50;
  color: #b49144;
}

.partner-chip-gold {
  background: #b49144;
  color: #092d50;
}

.partner-chip-slate {
  background: #9c9c9a;
  color: #f5f5f5;
}

/* Trust badge */
.trust-badge { background: linear-gradient(135deg, #f5f5f5, #ffffff); }

/* Form input focus */
.form-input:focus { outline: none; border-color: #b49144; box-shadow: 0 0 0 3px rgba(180,145,68,0.15); }

/* Testimonial card */
.testimonial-card { background: linear-gradient(145deg, #ffffff, #f5f5f5); }

.testimonial-avatar {
  background: #092d50;
  color: #b49144;
}

/* Section divider */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, #b49144, #c19e52); border-radius: 2px; }

/* Services heading */
.services-kicker {
  color: #b49144;
  letter-spacing: 0.16em;
}

.services-title {
  color: #092d50;
}

.contact-kicker {
  color: #b49144;
}

/* Mobile menu */
#mobile-menu { transition: max-height 0.35s ease, opacity 0.3s ease; max-height: 0; overflow: hidden; opacity: 0; }
#mobile-menu.open { max-height: 500px; opacity: 1; }

/* Sticky nav */
#navbar { transition: background 0.4s, box-shadow 0.4s; }
#navbar.scrolled { background: rgba(9,45,80,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.3); }

/* Stats counter */
.stat-card { background: rgba(245,245,245,0.06); border: 1px solid rgba(180,145,68,0.2); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, #092d50 0%, #0f3a64 100%); }

.cta-kicker {
  color: #b49144;
}

.cta-book-btn {
  background: #b49144;
  color: #ffffff;
  white-space: nowrap;
}

.cta-book-btn:hover {
  background: #c19e52;
}

/* Hero quick booking card */
.quick-booking-card {
  background: #f5f5f5;
  border-color: rgba(9, 45, 80, 0.14);
}

.quick-booking-title {
  color: #092d50;
}

.quick-booking-subtitle {
  color: rgba(9, 45, 80, 0.8);
}

.quick-booking-btn {
  background: #092d50;
  color: #f5f5f5;
}

.quick-booking-btn:hover {
  background: #0f3a64;
}

/* Contact form submit button */
.form-submit-btn {
  background: #092d50;
  color: #f5f5f5;
}

.form-submit-btn:hover {
  background: #b49144;
}

/* Footer */
.footer-section {
  background: #041f3f;
  color: rgba(245, 245, 245, 0.72);
}

.footer-brand-copy {
  color: rgba(245, 245, 245, 0.78);
  max-width: 22rem;
}

.footer-brand-badge {
  background: #b49144;
  border: 1px solid rgba(245, 245, 245, 0.18);
}

.footer-brand-badge-icon {
  color: #092d50;
}

.footer-heading {
  color: #f5f5f5;
  letter-spacing: 0.06em;
}

.footer-link {
  color: rgba(245, 245, 245, 0.8);
}

.footer-link:hover {
  color: #b49144;
}

.footer-social-link {
  background: #b49144;
  color: #092d50;
  border: 1px solid rgba(245, 245, 245, 0.18);
}

.footer-social-link:hover {
  background: #c19e52;
  color: #092d50;
}

.footer-meta {
  border-top-color: rgba(245, 245, 245, 0.12);
  color: rgba(245, 245, 245, 0.74);
}

.footer-meta-left,
.footer-meta-right {
  text-align: center;
}

.footer-meta-center {
  text-align: center;
}

@media (min-width: 640px) {
  .footer-meta-left {
    text-align: left;
  }

  .footer-meta-right {
    text-align: right;
  }
}

/* Scroll to top hidden by default; JS toggles .visible */
#scrollTop { opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; }
#scrollTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

body { font-family: 'Outfit', system-ui, sans-serif; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* Gold gradient text */
.text-gold-gradient { background: linear-gradient(135deg, #b49144 0%, #c19e52 50%, #8f7233 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero background */
.hero-bg {
  background: linear-gradient(135deg, #092d50 0%, #0f3a64 60%, #092d50 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b49144' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,145,68,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-card {
  border: 1px solid rgba(156, 156, 154, 0.45);
}

/* Nav blur */
.nav-blur { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* Navbar brand */
.nav-brand {
  gap: 0.5rem;
}

.nav-brand-logo {
  display: block;
}

.nav-brand-primary {
  color: #f5f5f5;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-brand-secondary {
  color: #b49144;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.1;
  margin-top: 0.1rem;
}

@media (min-width: 768px) {
  .nav-brand {
    gap: 0.9rem;
  }

  .nav-brand-logo {
    display: block;
    height: 2.9rem;
    width: auto;
  }

  .nav-brand-primary {
    font-size: 1.55rem;
  }

  .nav-brand-secondary {
    font-size: 0.9rem;
    margin-top: 0.05rem;
  }
}

/* Service card hover */
.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(9,45,80,0.16); }

/* Service icons: navy tile with gold icon */
#services .service-card > div:first-child {
  background: #092d50;
}

#services .service-card > div:first-child svg {
  color: #b49144;
}

/* Core Values icons: navy tile with gold icon */
#why-us .w-12.h-12 {
  background: #092d50;
}

#why-us .w-12.h-12 svg {
  color: #b49144;
}

/* Simple Process step circles: navy circle with gold number */
#process .group > .w-14.h-14 {
  background: #092d50;
}

#process .group > .w-14.h-14 span {
  color: #b49144;
}

/* Core Values section band */
.core-values-section {
  background: linear-gradient(180deg, #ebeef1 0%, #e5e9ee 100%);
  border-top: 1px solid rgba(9, 45, 80, 0.08);
  border-bottom: 1px solid rgba(9, 45, 80, 0.08);
}

/* Partner initials badge */
.partner-chip {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.partner-chip-navy {
  background: #092d50;
  color: #b49144;
}

.partner-chip-gold {
  background: #b49144;
  color: #092d50;
}

.partner-chip-slate {
  background: #9c9c9a;
  color: #f5f5f5;
}

/* Trust badge */
.trust-badge { background: linear-gradient(135deg, #f5f5f5, #ffffff); }

/* Form input focus */
.form-input:focus { outline: none; border-color: #b49144; box-shadow: 0 0 0 3px rgba(180,145,68,0.15); }

/* Testimonial card */
.testimonial-card { background: linear-gradient(145deg, #ffffff, #f5f5f5); }

.testimonial-avatar {
  background: #092d50;
  color: #b49144;
}

/* Section divider */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, #b49144, #c19e52); border-radius: 2px; }

/* Services heading */
.services-kicker {
  color: #b49144;
  letter-spacing: 0.16em;
}

.services-title {
  color: #092d50;
}

.contact-kicker {
  color: #b49144;
}

/* Mobile menu */
#mobile-menu { transition: max-height 0.35s ease, opacity 0.3s ease; max-height: 0; overflow: hidden; opacity: 0; }
#mobile-menu.open { max-height: 500px; opacity: 1; }

/* Sticky nav */
#navbar { transition: background 0.4s, box-shadow 0.4s; }
#navbar.scrolled { background: rgba(9,45,80,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.3); }

/* Stats counter */
.stat-card { background: rgba(245,245,245,0.06); border: 1px solid rgba(180,145,68,0.2); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, #092d50 0%, #0f3a64 100%); }

.cta-kicker {
  color: #b49144;
}

.cta-book-btn {
  background: #b49144;
  color: #ffffff;
  white-space: nowrap;
}

.cta-book-btn:hover {
  background: #c19e52;
}

/* Hero quick booking card */
.quick-booking-card {
  background: #f5f5f5;
  border-color: rgba(9, 45, 80, 0.14);
}

.quick-booking-title {
  color: #092d50;
}

.quick-booking-subtitle {
  color: rgba(9, 45, 80, 0.8);
}

.quick-booking-btn {
  background: #092d50;
  color: #f5f5f5;
}

.quick-booking-btn:hover {
  background: #0f3a64;
}

/* Contact form submit button */
.form-submit-btn {
  background: #092d50;
  color: #f5f5f5;
}

.form-submit-btn:hover {
  background: #b49144;
}

/* Footer */
.footer-section {
  background: #041f3f;
  color: rgba(245, 245, 245, 0.72);
}

.footer-brand-copy {
  color: rgba(245, 245, 245, 0.78);
  max-width: 22rem;
}

.footer-brand-badge {
  background: #b49144;
  border: 1px solid rgba(245, 245, 245, 0.18);
}

.footer-brand-badge-icon {
  color: #092d50;
}

.footer-heading {
  color: #f5f5f5;
  letter-spacing: 0.06em;
}

.footer-link {
  color: rgba(245, 245, 245, 0.8);
}

.footer-link:hover {
  color: #b49144;
}

.footer-social-link {
  background: #b49144;
  color: #092d50;
  border: 1px solid rgba(245, 245, 245, 0.18);
}

.footer-social-link:hover {
  background: #c19e52;
  color: #092d50;
}

.footer-meta {
  border-top-color: rgba(245, 245, 245, 0.12);
  color: rgba(245, 245, 245, 0.74);
}

.footer-meta-left,
.footer-meta-right {
  text-align: center;
}

.footer-meta-center {
  text-align: center;
}

@media (min-width: 640px) {
  .footer-meta-left {
    text-align: left;
  }

  .footer-meta-right {
    text-align: right;
  }
}

/* Scroll to top hidden by default; JS toggles .visible */
#scrollTop { opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; }
#scrollTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
