/* ============================================================
   PSDM — MODERN CORPORATE THEME
   Deep navy × champagne gold, glassmorphism, soft glows
   ============================================================ */

:root {
  --navy-950: #060b1a;
  --navy-900: #0a1228;
  --navy-800: #0f1d3f;
  --navy-700: #16295a;
  --navy-600: #1f3a7a;
  --gold: #d9a92f;
  --gold-light: #f2cd6b;
  --gold-soft: rgba(217, 169, 47, .14);
  --ink: #0e1726;
  --text: #2b3950;
  --text-muted: #64748b;
  --surface: #f6f8fc;
  --white: #ffffff;
  --gray-100: #eef2f8;
  --gray-200: #dde5f0;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(10, 18, 40, .06);
  --shadow-md: 0 10px 34px rgba(10, 18, 40, .10);
  --shadow-lg: 0 24px 60px rgba(10, 18, 40, .18);
  --glow-gold: 0 8px 30px rgba(217, 169, 47, .35);
  --grad-gold: linear-gradient(120deg, #b8860b 0%, #e8be4d 45%, #f7e08e 70%, #d9a92f 100%);
  --grad-navy: linear-gradient(135deg, #0a1228 0%, #16295a 60%, #1f3a7a 100%);
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(.22, .9, .28, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--navy-950); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--grad-gold);
  background-size: 200% auto;
  color: var(--navy-950);
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(217, 169, 47, .5);
}
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-3px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-outline-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn-outline-dark:hover { color: var(--white); }
.btn-outline-dark:hover::before { transform: scaleX(1); }

.text-center { text-align: center; }
.mt-8 { margin-top: 3rem; }

/* ============================================================
   HEADER — frosted glass
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(10, 18, 40, .08);
  transition: padding .35s var(--ease), background .35s;
}
.header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 32px rgba(10, 18, 40, .12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { height: 54px; width: auto; transition: height .35s var(--ease); }
.header.scrolled .logo-img { height: 44px; }

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  color: var(--navy-800);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 10px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-item:hover > .nav-link { color: var(--gold); }
.nav-item:hover > .nav-link::after { transform: scaleX(1); }
.nav-arrow { font-size: .6rem; transition: transform .3s var(--ease); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  background: rgba(10, 18, 40, .92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: calc(100% + 6px);
}
.dropdown li a {
  display: block;
  padding: 11px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .8);
  border-radius: 9px;
  transition: all .22s;
}
.dropdown li a:hover {
  background: var(--gold-soft);
  color: var(--gold-light);
  padding-left: 22px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--navy-950); }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6.5s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 11, 26, .9) 0%, rgba(6, 11, 26, .25) 45%, rgba(6, 11, 26, .45) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(31, 58, 122, .35), transparent 55%);
}

/* Caption */
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(90px, 14vh, 150px);
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(217, 169, 47, .45);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  max-width: 16ch;
  text-wrap: balance;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}
.hero-title-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide-in animation for active caption */
.hero-slide .hero-caption > .container > * {
  opacity: 0;
  transform: translateY(28px);
}
.hero-slide.active .hero-caption > .container > * {
  animation: heroRise .9s var(--ease) forwards;
}
.hero-slide.active .hero-caption > .container > *:nth-child(1) { animation-delay: .25s; }
.hero-slide.active .hero-caption > .container > *:nth-child(2) { animation-delay: .4s; }
.hero-slide.active .hero-caption > .container > *:nth-child(3) { animation-delay: .55s; }
.hero-slide.active .hero-caption > .container > *:nth-child(4) { animation-delay: .7s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Arrows */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: grid;
  place-items: center;
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
  border-color: transparent;
  box-shadow: var(--glow-gold);
  transform: translateY(-50%) scale(1.08);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.hero-dot.active {
  width: 34px;
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(217, 169, 47, .6);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(70px, 9vw, 110px) 0; position: relative; }
.section-white { background: var(--white); }
.section-light {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(31, 58, 122, .05), transparent),
    var(--surface);
}

.section-header { margin-bottom: 52px; }
.section-header-left { text-align: left; }
.section-header-right { text-align: right; }

.section-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-gold);
  margin-top: 14px;
}
.section-header-right .section-title::after { margin-left: auto; }
.section-desc { color: var(--text-muted); margin-top: 12px; max-width: 60ch; }
.section-header-right .section-desc { margin-left: auto; }

/* ============================================================
   SCROLL REVEAL (script.js adds .reveal / .revealed)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
#booking-calendar {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(14px, 3vw, 30px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.fc .fc-toolbar-title { font-family: var(--font-display); font-size: 1.25rem !important; color: var(--ink); }
.fc .fc-button-primary {
  background: var(--navy-800) !important;
  border: none !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
  text-transform: capitalize;
}
.fc .fc-button-primary:not(:disabled):hover { background: var(--navy-600) !important; }
.fc .fc-button-primary:not(:disabled).fc-button-active { background: var(--gold) !important; color: var(--navy-950) !important; }
.fc .fc-daygrid-day.fc-day-today { background: var(--gold-soft) !important; }
.fc-event { border-radius: 6px !important; border: none !important; background: var(--navy-700) !important; cursor: pointer; }
.fc-event, .fc-event .fc-event-main, .fc-event .fc-event-title { color: #ffffff !important; }
.fc-event .fc-daygrid-event-dot { border-color: var(--gold) !important; }
.fc-daygrid-dot-event:hover { background: var(--navy-600) !important; }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid-equal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 28px;
}
.news-card-eq {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.news-card-eq::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 2;
}
.news-card-eq:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.news-card-eq:hover::after { transform: scaleX(1); }
.news-card-eq-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.news-card-eq:hover .news-card-eq-img { transform: scale(1.06); }
.news-card-eq > a, .news-card-eq-img { overflow: hidden; }
.news-card-eq-placeholder {
  height: 200px;
  display: grid;
  place-items: center;
  background: var(--grad-navy);
  color: rgba(255, 255, 255, .35);
  font-size: 2.6rem;
}
.news-card-eq-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
}
.news-card-eq-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.news-card-eq-body p {
  font-size: .9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy-700);
  transition: gap .3s var(--ease), color .3s;
}
.news-link:hover { color: var(--gold); gap: 14px; }

.news-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px dashed var(--gray-200);
}
.news-empty-state i { font-size: 2.6rem; color: var(--gold); margin-bottom: 16px; }
.news-empty-state h3 { font-family: var(--font-display); color: var(--ink); margin-bottom: 6px; }

/* ============================================================
   ADS
   ============================================================ */
.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.ads-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.ads-card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: var(--shadow-lg); }
.ads-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ads-card:hover img { transform: scale(1.04); }
.ads-card-title {
  padding: 16px 20px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  border-top: 3px solid var(--gold);
}

/* ============================================================
   PAUTAN LUAR — carousel
   ============================================================ */
.pautan-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.car-viewport { overflow: hidden; flex: 1; }
.car-track {
  display: flex;
  transition: transform .6s var(--ease);
}
.car-item { padding: 10px; }
.pautan-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  height: 100%;
}
.pautan-logo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 169, 47, .5);
  box-shadow: 0 16px 40px rgba(217, 169, 47, .18);
}
.pautan-logo-card img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.6);
  transition: filter .4s, transform .4s var(--ease);
}
.pautan-logo-card:hover img { filter: grayscale(0); transform: scale(1.08); }
.pautan-logo-card span {
  font-size: .76rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.car-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
  transition: all .3s var(--ease);
  display: grid;
  place-items: center;
}
.car-btn:hover:not(:disabled) {
  background: var(--grad-gold);
  color: var(--navy-950);
  border-color: transparent;
  box-shadow: var(--glow-gold);
}
.car-btn:disabled { opacity: .35; cursor: default; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(31, 58, 122, .4), transparent),
    var(--navy-950);
  color: rgba(255, 255, 255, .72);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-gold);
}
.footer-top { padding: clamp(60px, 8vw, 90px) 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.logo-img-footer { height: 62px; margin-bottom: 20px; }
.footer-about p { font-size: .9rem; font-weight: 300; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  transition: all .3s var(--ease);
}
.footer-socials a:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
  border-color: transparent;
}
.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-gold);
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: .88rem;
  transition: color .25s, padding-left .25s;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 8px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: .88rem;
  align-items: flex-start;
}
.contact-item i { color: var(--gold); margin-top: 4px; }
.contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  background: rgba(0, 0, 0, .25);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(217, 169, 47, .3);
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}
.visitor-counter i { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: none;
  background: var(--grad-navy);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

/* ============================================================
   CALENDAR MODAL
   ============================================================ */
.cal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 11, 26, .6);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
  padding: 20px;
}
.cal-modal-overlay.open { opacity: 1; visibility: visible; }
.cal-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: min(520px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--ease);
}
.cal-modal-overlay.open .cal-modal { transform: translateY(0) scale(1); }
.cal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--grad-navy);
  color: var(--white);
  position: sticky;
  top: 0;
}
.cal-modal-header h4 { font-family: var(--font-display); font-size: 1.1rem; }
.cal-modal-close {
  background: rgba(255, 255, 255, .12);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all .25s;
}
.cal-modal-close:hover { background: var(--gold); color: var(--navy-950); }
.cal-modal-body { padding: 28px; }
.cal-modal-body p { margin-bottom: 10px; font-size: .92rem; }
.cal-divider { border: none; border-top: 1px solid var(--gray-200); margin: 18px 0; }
.cal-list { margin-bottom: 14px; padding-left: 6px; font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 26, .97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    padding: 110px 8% 50px;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { justify-content: space-between; padding: 16px 8px; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .nav-link::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: max-height .4s var(--ease);
  }
  .nav-item.open .dropdown { visibility: visible; max-height: 500px; padding: 6px 0 10px 18px; }
  .nav-item.open .nav-arrow { transform: rotate(180deg); }

  .hero { min-height: 540px; }
  .hero-prev, .hero-next { display: none; }
  .section-header-right { text-align: left; }
  .section-header-right .section-title::after,
  .section-header-right .section-desc { margin-left: 0; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-caption { padding-bottom: 100px; }
  .hero-ctas .btn { padding: 12px 24px; font-size: .88rem; }
  .back-to-top { right: 18px; bottom: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
