/* ============================================================
   DENSPARK STUDIO — Contact CSS
   Consistent with portfolio / services / about
   ============================================================ */

:root {
  --blue:        #1A56DB;
  --blue-dark:   #1240A8;
  --blue-light:  #3B82F6;
  --black:       #0A0A0A;
  --navy:        #0F172A;
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-800:    #1F2937;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white); color: var(--black);
  overflow-x: hidden; cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ============================================================
   PRELOADER
   ============================================================ */
/* ── Preloader - Unified ─────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy, var(--dark)); /* falls back if one isn't set */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out, ease), 
              visibility 0.6s var(--ease-out, ease);
}

/* Support both .hidden and .hide for the fade-out state */
.preloader.hidden,
.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner { 
  text-align: center; 
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem); /* using smaller clamp as base */
  font-weight: 300; /* use 600 if you prefer the bolder one */
  color: var(--white);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

/* Optional pulse - add .pulse class to .preloader-logo to enable */
.preloader-logo.pulse {
  animation: pulseLogo 1.2s ease-in-out infinite alternate;
}

@keyframes pulseLogo { 
  from { opacity: 0.4; transform: scale(0.98); } 
  to { opacity: 1; transform: scale(1); } 
}

.preloader-line {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-line span {
  position: absolute;
  inset: 0;
  background: var(--blue-light, var(--blue-primary));
}

/* Animation Style 1: Scale from left - add .scale class */
.preloader-line.scale span {
  transform-origin: left;
  transform: scaleX(0);
  animation: loadLine 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes loadLine { 
  0% { transform: scaleX(0); } 
  100% { transform: scaleX(1); } 
}

/* Animation Style 2: Slide in - default or add .slide class */
.preloader-line span,
.preloader-line.slide span {
  transform: translateX(-100%);
  animation: preloaderSlide 1.4s var(--ease-out, ease) forwards;
}

@keyframes preloaderSlide {
  to { transform: translateX(0); }
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease; }
.cursor-follower { width: 32px; height: 32px; border: 1.5px solid rgba(26,86,219,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997; transform: translate(-50%,-50%); transition: transform 0.12s ease, width 0.25s ease, height 0.25s ease; }
body.cursor-hover .cursor { width: 12px; height: 12px; }
body.cursor-hover .cursor-follower { width: 48px; height: 48px; border-color: rgba(26,86,219,0.25); }

/* ============================================================
   NAVBAR
   ============================================================ */
/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 64px;
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.12em; color: var(--white);
}
.logo-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--blue-light); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--blue-light);
  transform: scaleX(0); transition: transform var(--transition); border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-book {
  display: inline-flex; align-items: center;
  background: var(--blue); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.03em;
}
.btn-book:hover {
  background: var(--blue-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 7px;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: #c8d9ee; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SERVICES MEGA MENU ──────────────────────────────────── */
.services-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.has-mega:hover .services-chevron,
.has-mega.open  .services-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px;
  width: 660px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.mega-arrow {
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.has-mega:hover .mega-menu,
.has-mega.open  .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Hide desktop mega completely on mobile */
@media (max-width: 900px) {
  .has-mega .mega-menu { display: none !important; }
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mega-column h4 {
  font-size: 10px; font-weight: 600; color: #4a90d9;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin: 0 0 10px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,0.2);
}
.mega-column a {
  display: block; color: #a8c2e0; font-size: 12.5px;
  padding: 4px 0; text-decoration: none;
  transition: color 0.15s, padding-left 0.15s; line-height: 1.5;
}
.mega-column a:hover { color: #ffffff; padding-left: 6px; }
.mega-footer {
  margin-top: 18px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 10px; color: #3d6a9c;
  letter-spacing: 1px; text-transform: uppercase; text-align: center;
}

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0 20px 24px;
  max-height: calc(100vh - 64px); /* never taller than the viewport */
  overflow-y: auto;               /* scroll if content overflows    */
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }

.mobile-nav-links { list-style: none; padding: 8px 0 0; margin: 0; }

.mobile-nav-links > li > a,
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: #c8d9ee; font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; font-family: inherit;
  transition: color 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-services-toggle:hover { color: #ffffff; }

.mobile-services-chevron {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid #4a90d9;
  border-bottom: 2px solid #4a90d9;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mobile-services-toggle.open .mobile-services-chevron,
.mobile-services-item.open .mobile-services-chevron {
  transform: rotate(-135deg);
}

/* Mobile mega accordion */
.mobile-mega {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 12px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-services-item.open .mobile-mega {
  max-height: 1200px;           /* enough room for all links        */
  opacity: 1;
  padding: 8px 0 4px 12px;
}
.mobile-mega .mega-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.mobile-mega .mega-column h4 { font-size: 10px; }
.mobile-mega .mega-column a {
  font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-mega .mega-column a:last-child { border-bottom: none; }

/* Mobile CTA */
.btn-book-mobile {
  display: block; margin-top: 16px;
  background: #2563b0; color: #ffffff;
  text-align: center; padding: 13px; border-radius: 9px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.btn-book-mobile:hover { background: #1d50a0; }

.mobile-info {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-info span { font-size: 11px; color: #3d6a9c; }

/* ═══ WHAT WE DO DROPDOWN — matches Services mega-menu style ═══ */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--t) var(--ease);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.nav-drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 2px;
}
.nav-drop-btn:hover,
.nav-drop-btn[aria-expanded="true"] { color: var(--white); }
.nav-drop-btn:hover::after,
.nav-drop-btn[aria-expanded="true"]::after { transform: scaleX(1); }

.nav-drop-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.nav-drop-btn[aria-expanded="true"] .nav-drop-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 660px;
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  z-index: 1001;
}
.nav-drop-panel::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drop-panel.open,
.nav-dropdown:hover .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.nav-drop-col h5 {
  font-size: 10px;
  font-weight: 600;
  color: #4a90d9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,.2);
}
.nav-drop-col a {
  display: block;
  color: #a8c2e0;
  font-size: 12.5px;
  padding: 4px 0;
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  line-height: 1.5;
}
.nav-drop-col a:hover { color: #ffffff; padding-left: 6px; }
.nav-drop-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
  color: #3d6a9c;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 900px) {
      .nav-dropdown { display: none; }
      .mobile-whatwedo-item { display: list-item; }
    }

/* ── Responsive breakpoint ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-book  { display: none; }
  .menu-toggle { display: flex; }
}
/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero { position: relative; height: 70vh; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px 60px; animation: heroContent 1s 0.3s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes heroContent { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.bc-sep { color: var(--blue-light); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-hero-title em { font-style: italic; color: var(--blue-light); }
.page-hero-sub { max-width: 560px; font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.page-hero-scroll { position: absolute; bottom: 32px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: fadeUp 1s 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; background: var(--blue-light); animation: scrollDrop 1.5s ease-in-out infinite; height: 40%; }
@keyframes scrollDrop { 0% { top: -40%; } 100% { top: 140%; } }
.page-hero-scroll span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); writing-mode: vertical-rl; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); transition-delay: var(--delay, 0s); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); overflow-x: auto; }
.contact-strip::-webkit-scrollbar { display: none; }
.contact-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; }
.strip-item { display: flex; align-items: center; gap: 14px; padding: 20px 32px; text-decoration: none; color: var(--white); transition: background var(--transition); white-space: nowrap; flex: 1; }
a.strip-item:hover { background: rgba(255,255,255,0.04); }
.strip-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strip-icon svg { width: 18px; height: 18px; color: var(--blue-light); }
.strip-text { display: flex; flex-direction: column; gap: 2px; }
.strip-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.strip-value { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.strip-divider { width: 1px; background: rgba(255,255,255,0.06); flex-shrink: 0; margin: 12px 0; }

/* ============================================================
   SHARED EYEBROW
   ============================================================ */
.section-eyebrow { display: inline-block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--blue); margin-bottom: 14px; position: relative; padding: 0 24px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; position: absolute; top: 50%; width: 16px; height: 1px; background: var(--blue); }
.section-eyebrow::before { left: 0; }
.section-eyebrow::after  { right: 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 96px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── SIDEBAR ── */
.contact-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.sidebar-top { padding: 40px 36px 32px; }

.sidebar-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.sidebar-title em { font-style: italic; color: var(--blue-light); }
.sidebar-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.contact-methods { border-top: 1px solid rgba(255,255,255,0.07); }

.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; color: var(--white);
  transition: background var(--transition);
  position: relative;
}
.contact-method--static { cursor: default; }
a.contact-method:hover { background: rgba(255,255,255,0.04); }

.method-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition); }
.method-icon svg { width: 20px; height: 20px; color: var(--blue-light); }
a.contact-method:hover .method-icon { background: var(--blue); }
a.contact-method:hover .method-icon svg { color: var(--white); }

.method-content { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.method-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.method-value { font-size: 0.88rem; font-weight: 500; color: var(--white); }
.method-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.method-arrow { font-size: 1rem; color: rgba(255,255,255,0.2); transition: color var(--transition), transform var(--transition); }
a.contact-method:hover .method-arrow { color: var(--blue-light); transform: translateX(3px); }

.sidebar-social { padding: 24px 36px 32px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 16px; }
.social-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); white-space: nowrap; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.social-links a svg { width: 15px; height: 15px; }
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ── BOOKING FORM ── */
.form-wrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 48px 44px; }

.form-header { margin-bottom: 36px; }
.form-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--black); line-height: 1.15; margin-bottom: 10px; }
.form-title em { font-style: italic; color: var(--blue); }
.form-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group--full { grid-column: 1 / -1; }

label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-800); }
.req { color: var(--blue); }

input, select, textarea {
  width: 100%; padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
}
input.error, select.error, textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }

textarea { resize: vertical; min-height: 130px; }

/* Custom select */
.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: none; padding-right: 40px; }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-400); pointer-events: none; transition: transform var(--transition), color var(--transition); }
.select-wrap:focus-within .select-arrow { transform: translateY(-50%) rotate(180deg); color: var(--blue); }

/* Date input */
input[type="date"] { color: var(--gray-800); cursor: none; }

/* Error & char count */
.form-error { font-size: 0.75rem; color: #EF4444; min-height: 16px; display: block; animation: errorSlide 0.25s ease; }
@keyframes errorSlide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.char-count { font-size: 0.72rem; color: var(--gray-400); text-align: right; display: block; margin-top: 4px; }
.char-count.near-limit { color: #F59E0B; }
.char-count.at-limit    { color: #EF4444; }

/* Submit button */
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 6px;
  padding: 16px 32px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-submit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,219,0.3); }
.btn-submit:active { transform: translateY(0); }
.btn-icon { transition: transform var(--transition); }
.btn-submit:hover .btn-icon { transform: translateX(4px) rotate(-30deg); }

.btn-loading { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon { display: none; }
.btn-submit.loading .btn-loading { display: block; }

/* Success state */
.form-success {
  display: none; align-items: center; gap: 16px;
  background: rgba(26,86,219,0.06); border: 1.5px solid rgba(26,86,219,0.2);
  border-radius: var(--radius); padding: 20px 24px;
  animation: successIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes successIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.form-success svg { width: 36px; height: 36px; color: var(--blue); flex-shrink: 0; }
.form-success strong { display: block; font-size: 0.95rem; color: var(--black); margin-bottom: 3px; }
.form-success p { font-size: 0.85rem; color: var(--gray-600); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { padding: 80px 0; background: var(--off-white); }

.map-header { margin-bottom: 32px; }
.section-title-sm { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--black); line-height: 1.15; }
.section-title-sm em { font-style: italic; color: var(--blue); }

.map-container {
  position: relative; height: 480px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-container iframe { display: block; width: 100%; height: 100%; border: 0; }

/* Pin card overlay */
.map-pin-card {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: pinCardIn 0.5s 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes pinCardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pin-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pin-icon svg { width: 18px; height: 18px; color: var(--white); }
.map-pin-card strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--black); }
.map-pin-card span { display: block; font-size: 0.78rem; color: var(--gray-600); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 96px 0; background: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 300; color: var(--black); line-height: 1.15; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--blue); }
.section-sub { font-size: 1rem; color: var(--gray-600); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: rgba(26,86,219,0.3); box-shadow: 0 4px 20px rgba(26,86,219,0.07); }
.faq-item.open { border-color: var(--blue); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  background: none; border: none; cursor: none;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--gray-800); text-align: left;
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover { color: var(--blue); background: rgba(26,86,219,0.02); }
.faq-item.open .faq-question { color: var(--blue); background: rgba(26,86,219,0.04); }

.faq-toggle { width: 28px; height: 28px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
.faq-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.faq-item.open .faq-toggle { background: var(--blue); }
.faq-item.open .faq-toggle svg { color: var(--white); transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 240px; padding: 0 24px 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--navy); overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.marquee-track { display: flex; width: 100%; }
.marquee-content { display: flex; align-items: center; gap: 0; white-space: nowrap; animation: marqueeScroll 22s linear infinite; flex-shrink: 0; min-width: 100%; }
.marquee-content span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); padding: 0 20px; font-weight: 500; }
.marquee-content .dot { color: var(--blue-light); padding: 0; font-size: 1.1rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee-content { animation-play-state: paused; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.15em; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--blue-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all var(--transition); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

  .contact-strip-inner { flex-direction: column; gap: 0; }
  .strip-item { padding: 14px 24px; }
  .strip-divider { width: 100%; height: 1px; margin: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero-scroll { display: none; }
  .map-container { height: 320px; }
}

@media (max-width: 480px) {
  .btn-book { display: none; }
  .sidebar-top { padding: 28px 24px 24px; }
  .contact-method { padding: 16px 24px; }
  .sidebar-social { padding: 20px 24px; }
}