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

:root {
  --navy: #0b1d51;
  --navy-deep: #060f2e;
  --navy-mid: #162a72;
  --navy-light: #1e3a8a;
  --gold: #f0b429;
  --gold-light: #ffd76e;
  --gold-dim: #c9940f;
  --gold-soft: rgba(240, 180, 41, 0.12);
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light: #eef1f9;
  --text: #1a2340;
  --muted: #6270a0;
  --border: #dde3f5;
  --border-soft: rgba(221, 227, 245, 0.6);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(11, 29, 81, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 29, 81, 0.18);
  --shadow-gold: 0 8px 32px rgba(240, 180, 41, 0.25);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: transparent;
  padding: 20px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 48, 135, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV LOGO ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-deep);
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.35s;
  font-family: 'Outfit', sans-serif;
}

.nav-logo-text .tagline {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.35s;
}

.navbar.scrolled .nav-logo-text .brand {
  color: var(--navy);
}

.navbar.scrolled .nav-logo-text .tagline {
  color: var(--muted);
}

/* ─── NAV LINKS ─── */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.3s;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.navbar.scrolled .nav-links a {
  color: var(--navy);
}

/* ─── NAV CTA ─── */
.nav-cta-btn {
  margin-left: 16px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nav-cta-btn:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.4);
}

/* ─── HAMBURGER / MOBILE ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 8999;
  background: var(--navy-deep);
  border-bottom: 2px solid rgba(240, 180, 41, 0.4);
  padding: 16px 6% 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #c0cce8;
  font-size: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav .mob-cta {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep) !important;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px !important;
  border-radius: 10px;
  border: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: 0 6px 24px rgba(240, 180, 41, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(240, 180, 41, 0.5);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  box-shadow: 0 6px 24px rgba(11, 29, 81, 0.3);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11, 29, 81, 0.4);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #1cb557);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

/* ─── SECTION BASICS ─── */

section {
  padding: 96px 6%;
}

section.tight {
  padding: 64px 6%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 180, 41, 0.11);
  border: 1px solid rgba(240, 180, 41, 0.28);
  color: var(--gold-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 14px;
  color: var(--navy-deep);
}

.section-title span {
  color: var(--gold);
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.sec-header {
  margin-bottom: 58px;
}

.sec-header.center {
  text-align: center;
}

.sec-header.center .section-desc {
  margin: 0 auto;
}

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  animation: tick 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--navy-deep);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0f1e5a 50%, var(--navy-mid) 100%);
  padding: 75px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.09) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
}

.cta-band-text h2 {
  font-size: clamp(24px, 3vw, 42px);
  color: #fff;
  margin-bottom: 8px;
}

.cta-band-text p {
  color: #8899cc;
  font-size: 16px;
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-band-text {
  position: relative;
  z-index: 2;
}

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #04091f 100%);
  color: #8899bb;
  padding: 70px 6% 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.3), rgba(240, 180, 41, 0.6), rgba(240, 180, 41, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

/* Footer Logo Styles */
.footer-about .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-about .logo-badge {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-deep);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(240, 180, 41, 0.2);
}

.footer-about .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-about .logo-text .name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.footer-about .logo-text .tag {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.85;
  margin: 16px 0 22px;
  color: #7788aa;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8899bb;
  font-size: 14px;
  transition: all 0.25s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.35);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #7788aa;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
  color: #5566.88;
}

.footer-bottom span {
  color: var(--gold);
}

/* ─── FLOAT BUTTONS ─── */
.fab-wa {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1cb557);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: 8000;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 3s infinite;
  transition: transform 0.2s;
}

.fab-wa:hover {
  transform: scale(1.12);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45)
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.08)
  }
}

.fab-call {
  position: fixed;
  bottom: 24px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  z-index: 8000;
  box-shadow: 0 4px 22px rgba(11, 29, 81, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-call:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(11, 29, 81, 0.6);
}

.back-top {
  position: fixed;
  bottom: 24px;
  left: 22px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(11, 29, 81, 0.88);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 8000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media(max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media(max-width:640px) {
  section {
    padding: 64px 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    text-align: center;
    justify-content: center;
  }
}