/* ===== Local Font: Thunder Bold LC ===== */
@font-face {
  font-family: 'Thunder';
  src: url('fonts/thunder-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Local Font: Silka ===== */
@font-face {
  font-family: 'Silka';
  src: url('fonts/silka-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silka';
  src: url('fonts/silka-bold-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FFF8EE;
  --darkest: #0A2033;
  --dark: #2D3246;
  --pink: #FF0048;
  --white: #FFFFFF;
  --pale: #F1E6D6;
  --light-grey: #D3D6E0;
  --dark-grey: #8F95AB;

  --font-display: 'Thunder', 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Silka', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1340px;
  --container-pad: 40px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--darkest);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===== Typography ===== */
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.9vw, 128px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: var(--darkest);
  letter-spacing: 1px;
}

.sub-heading {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--darkest);
}

/* Body copy */
.body-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--darkest);
}

.body-text strong { font-weight: 700; }
.body-text a { text-decoration: underline; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary {
  background: var(--white);
  color: var(--darkest);
  padding: 14px 22px;
  height: 52px;
}
.btn-secondary:hover { background: #f0f0f0; }

.btn-menu {
  background: var(--pink);
  color: var(--white);
  padding: 14px 22px;
  height: 52px;
  position: relative;
}
.btn-menu:hover { opacity: 0.9; }

.btn-primary-sm {
  background: var(--pink);
  color: var(--cream);
  padding: 14px 22px;
  height: 52px;
  min-width: 120px;
}
.btn-primary-sm:hover { opacity: 0.9; }

.btn-white {
  background: var(--white);
  color: var(--darkest);
  padding: 14px 22px;
  height: 52px;
  border: 1px solid var(--white);
  transition: background var(--transition), transform var(--transition);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline-dark {
  background: var(--cream);
  color: var(--darkest);
  padding: 14px 22px;
  height: 52px;
  border: 1px solid var(--darkest);
  border-radius: 55px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
}

/* ===== Select a Service dropdown ===== */
.svc-select-wrapper {
  position: relative;
  display: inline-block;
}

.svc-select-btn {
  gap: 12px;
  min-width: 240px;
  justify-content: space-between;
  transition: border-color var(--transition), background var(--transition);
}

.svc-select-btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.svc-select-wrapper.open .svc-select-btn svg {
  transform: rotate(180deg);
}

.svc-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(10, 32, 51, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
  overflow: hidden;
}

.svc-select-wrapper.open .svc-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.svc-select-menu li {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--darkest);
  cursor: pointer;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.svc-select-menu li:hover {
  background: var(--pale);
  color: var(--pink);
}

.svc-select-menu li.selected {
  color: var(--pink);
  font-weight: 700;
  background: var(--pale);
}

.btn-deny {
  background: transparent;
  color: var(--darkest);
  border: 2px solid var(--darkest);
  padding: 14px 22px;
  height: 52px;
  width: 140px;
  font-family: var(--font-body);
  font-size: 14px;
}
.btn-deny:hover { background: rgba(10,32,51,0.05); }

.btn-accept {
  background: var(--pink);
  color: var(--white);
  padding: 14px 22px;
  height: 52px;
  width: 140px;
  font-family: var(--font-body);
  font-size: 14px;
}
.btn-accept:hover { opacity: 0.9; }

/* ===== Split Compound CTA Button (Essence MediaCom style) ===== */
.btn-cta,
.btn-cta-light,
.btn-cta-pink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border-radius: 100px;
  height: auto;
  text-decoration: none;
  cursor: pointer;
}

.btn-cta .btn-text,
.btn-cta-light .btn-text,
.btn-cta-pink .btn-text {
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.btn-cta .btn-icon-circle,
.btn-cta-light .btn-icon-circle,
.btn-cta-pink .btn-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

/* Dark (default) — for light/cream backgrounds */
.btn-cta .btn-text          { background: var(--darkest); color: var(--white); }
.btn-cta .btn-icon-circle   { background: var(--darkest); color: var(--white); }
.btn-cta:hover .btn-text        { background: var(--pink); }
.btn-cta:hover .btn-icon-circle { background: var(--pink); transform: rotate(45deg); }

/* Light — for dark navy backgrounds (footer, dark sections) */
.btn-cta-light .btn-text          { background: var(--white); color: var(--darkest); }
.btn-cta-light .btn-icon-circle   { background: var(--white); color: var(--darkest); }
.btn-cta-light:hover .btn-text        { background: var(--cream); }
.btn-cta-light:hover .btn-icon-circle { background: var(--cream); transform: rotate(45deg); }

/* Pink — accent variant */
.btn-cta-pink .btn-text          { background: var(--pink); color: var(--white); }
.btn-cta-pink .btn-icon-circle   { background: var(--pink); color: var(--white); }
.btn-cta-pink:hover .btn-text        { background: var(--darkest); }
.btn-cta-pink:hover .btn-icon-circle { background: var(--darkest); transform: rotate(45deg); }

/* Menu button icon states */
.dot-grid {
  display: inline-grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(2, 4px);
  gap: 2px;
  margin-left: 6px;
  align-self: center;
  transition: opacity var(--transition), transform var(--transition);
}
.dot-grid span {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  display: block;
}

.close-star {
  display: none;
  margin-left: 6px;
  align-self: center;
  transition: opacity var(--transition), transform var(--transition);
}

/* When menu is open, swap icons */
body.menu-open .btn-menu .dot-grid { display: none; }
body.menu-open .btn-menu .close-star { display: block; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200; /* above menu overlay so pill + close icon remain visible */
  padding: 28px 0;
  transition: var(--transition);
}

/* nav-on-light: over cream/light sections — keep transparent, darken logo & pill */
.navbar.nav-on-light .logo-img {
  filter: brightness(0);
}
.navbar.nav-on-light .nav-right {
  background: rgba(10, 32, 51, 0.1);
}

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

.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Menu Overlay ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 32, 51, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.menu-card {
  position: absolute;
  top: 80px;
  left: 48px;
  right: 48px;
  bottom: auto;       /* height driven by content, not stretched */
  width: auto;
  min-height: 0;
  background: var(--white);
  border-radius: 40px;
  padding: 48px;      /* 48px on all four sides */
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.menu-overlay.open .menu-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-nav-item {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--darkest);
  line-height: 0.95;
  letter-spacing: 1px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: color var(--transition), transform 0.25s ease;
}

.menu-overlay.open .menu-nav-item {
  animation: menuItemIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.menu-nav-item[data-index="0"] { animation-delay: 0.12s; }
.menu-nav-item[data-index="1"] { animation-delay: 0.18s; }
.menu-nav-item[data-index="2"] { animation-delay: 0.24s; }
.menu-nav-item[data-index="3"] { animation-delay: 0.30s; }

@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-nav-item.active { color: var(--pink); }
.menu-nav-item:hover { color: var(--pink); transform: translateX(8px); }
.menu-nav-item.active:hover { color: var(--pink); transform: none; }

.menu-social {
  padding-top: 40px;
  border-top: 1px solid var(--light-grey);
  margin-top: 40px;
}

.menu-social-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.menu-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-icon-btn:hover {
  background: var(--light-grey);
  transform: scale(1.1);
}
.social-icon-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  background: var(--darkest);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-abstract-shape {
  position: absolute;
  top: 0; left: 0;
  width: 130%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-container {
  position: relative;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 180px);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

/* Hero line stagger animation */
.hero-line {
  display: block;
  opacity: 0;
  animation: heroLineIn 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.28s; }
.hero-line:nth-child(3) { animation-delay: 0.41s; }

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Video Section ===== */
.video-section {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 9;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 56px rgba(0, 0, 0, 0.32);
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== About Section ===== */
.about-section { padding: clamp(32px, 4vw, 64px) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-icon { display: flex; justify-content: flex-end; align-items: flex-start; }
.icon-illustration { width: min(289px, 100%); height: auto; }

/* ===== Ride Section ===== */
.ride-section { padding: clamp(20px, 3vw, 40px) 0 clamp(32px, 4vw, 64px); }

.ride-line {
  height: 1px;
  background: var(--light-grey);
  margin: 12px 0 40px;
  max-width: 423px;
}

.ride-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ride-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--darkest);
  margin-bottom: 16px;
}

.ride-col .body-text { margin-bottom: 12px; }
.ride-col .body-text:last-child { margin-bottom: 0; }

/* ===== Content Writing Section ===== */
.content-section { padding: clamp(40px, 5vw, 80px) 0; }

.content-section .display-heading { margin-bottom: 20px; }

.content-divider {
  width: 100%;
  height: 1px;
  background: var(--light-grey);
  margin-bottom: 40px;
}

.content-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Content items also count as large body/UI text – reduce 25% */
.content-item {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--darkest);
  text-align: center;
  padding: 8px;
}

.content-separator {
  width: 120px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-separator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--darkest);
  border-radius: 50%;
  display: block;
}

.content-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.timer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid var(--light-grey);
  border-radius: 55px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--darkest);
}

/* ===== Homepage Services Accordion ===== */
.services-section { padding: clamp(32px, 4vw, 64px) 0; }

.home-acc-item {
  border-bottom: 1px solid var(--light-grey);
}
.home-acc-item:first-child {
  border-top: 1px solid var(--light-grey);
}

/* Trigger row */
.home-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), padding var(--transition);
}
.home-acc-trigger:hover {
  background: var(--pale);
  padding: 16px 0;
  margin: 0 calc(-1 * var(--container-pad));
  width: calc(100% + 2 * var(--container-pad));
}

/* Service name */
.home-acc-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 9.2vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--darkest);
  letter-spacing: 1px;
  padding: 8px 0;
  transition: letter-spacing var(--transition), color var(--transition);
  pointer-events: none;
}
.home-acc-trigger:hover .home-acc-title,
.home-acc-item.open .home-acc-title {
  letter-spacing: 3px;
  color: var(--pink);
}

/* Chevron */
.home-acc-chevron {
  position: absolute;
  right: 0;
  color: var(--darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              color var(--transition);
}
.home-acc-trigger:hover .home-acc-chevron { color: var(--pink); }
.home-acc-item.open .home-acc-chevron {
  transform: rotate(180deg);
  color: var(--pink);
}

/* Panel — collapsed by default */
.home-acc-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}
.home-acc-item.open .home-acc-panel {
  max-height: 1400px;
  opacity: 1;
}

/* Process list shown when accordion is open */
.home-acc-process {
  padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--light-grey);
}

/* Panel inner — 2 cols */
.home-acc-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: 20px 0 clamp(32px, 4vw, 56px);
}

.home-acc-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.home-acc-cta { align-self: flex-start; }

/* What's included */
.home-acc-inc-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark-grey);
  margin-bottom: 18px;
}

.home-acc-inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-acc-inc-list li {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  color: var(--darkest);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.home-acc-inc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ===== CTA Banner ===== */
.cta-banner { padding: clamp(24px, 3.5vw, 56px) 0 clamp(40px, 5vw, 80px); }

.cta-card {
  background: var(--pale);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 60px) clamp(24px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-card .body-text { max-width: 574px; }

/* ===== Work Section ===== */
.work-section { padding: clamp(40px, 5vw, 80px) 0; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.work-logo-img { width: 100%; height: auto; opacity: 0.08; }
.work-photo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.work-photo-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ===== FAQ Section ===== */
.faq-section { padding: clamp(40px, 5vw, 80px) 0 clamp(48px, 6vw, 100px); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.faq-qa-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--darkest);
  cursor: pointer;
  padding-bottom: 4px;
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--pink); }
.faq-item.open .faq-question { color: var(--pink); }

/* Answer: hidden by default, revealed on open */
.faq-item .body-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 12px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              margin-top 0.3s ease,
              padding 0.3s ease;
}

.faq-item.open .body-text {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
  padding: 18px 24px;
  background: var(--pink);
  color: var(--white);
}

.faq-item.open .body-text strong {
  color: var(--white);
}

.faq-accordion-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-left {}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--darkest);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.faq-right-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-dropdown { margin-bottom: 8px; }

.faq-acc-item {
  border: 1px solid var(--light-grey);
  border-radius: 55px;
  background: var(--cream);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), border-radius var(--transition);
}

.faq-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--darkest);
  text-align: left;
  transition: color var(--transition), font-weight var(--transition);
}

.faq-acc-chevron {
  flex-shrink: 0;
  color: var(--darkest);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color var(--transition);
}

.faq-acc-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-acc-answer-inner {
  padding: 0 36px 22px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.faq-acc-item.active {
  background: var(--pink);
  border-color: var(--pink);
  border-radius: 20px;
}

.faq-acc-item.active .faq-acc-trigger {
  color: var(--white);
  font-weight: 700;
}

.faq-acc-item.active .faq-acc-chevron {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-acc-item.active .faq-acc-answer {
  max-height: 240px;
}

.faq-acc-item:hover:not(.active) { border-color: var(--darkest); }

/* ===== Footer ===== */
.footer {
  background: var(--darkest);
  padding: clamp(48px, 6vw, 100px) 0 clamp(24px, 3vw, 48px);
  position: relative;
  overflow: hidden;
}

/* Ensure all footer content sits above the watermark logo */
.footer .container > *:not(.footer-logo) {
  position: relative;
  z-index: 1;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 8.9vw, 128px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.footer-cta { text-align: center; margin-bottom: 40px; }

.footer-contact {
  text-align: center;
  margin-bottom: 60px;
}

.footer-contact p {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-follow-label {
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-socials a {
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-grey);
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--cream); }

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-grey);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.back-to-top:hover { color: var(--cream); transform: translateY(-2px); }

.footer-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Cookie Popup ===== */
.cookie-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: min(562px, calc(100vw - 40px));
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0px 0px 40px rgba(45, 50, 70, 0.2);
  padding: 59px 40px 40px;
  overflow: hidden;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-popup.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cookie-logo-watermark {
  position: absolute;
  top: -165px;
  right: -30px;
  width: 429px;
  height: 315px;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
}

.cookie-logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 32px;
  position: relative;
  max-width: 400px;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}

/* ===== Social Follow Popup ===== */
.social-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.social-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.social-popup {
  background: var(--white);
  border-radius: 20px;
  padding: 59px 40px 40px;
  width: min(562px, calc(100vw - 64px));
  position: relative;
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.social-popup-overlay.visible .social-popup {
  transform: translateY(0);
}

.social-popup-logo {
  position: absolute;
  top: -165px;
  right: -30px;
  width: 429px;
  height: 315px;
  opacity: 0.06;
  pointer-events: none;
}
.social-popup-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: var(--pale);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-popup-close:hover {
  background: var(--light-grey);
  transform: scale(1.1);
}

.social-popup-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: 0;
  position: relative;
}

.social-popup-social { position: relative; }

.social-popup-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 12px;
}

.social-popup-icons {
  display: flex;
  gap: 8px;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  :root {
    --container-pad: 24px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-icon { justify-content: flex-start; }

  .ride-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .work-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .faq-accordion-section { grid-template-columns: 1fr; gap: 40px; }

  .cta-card { padding: 40px 32px; }

  /* Menu card inherits base styles (full overlay card) — no overrides needed */
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
  }

  .navbar { padding: 16px 0; }

  /* Hide hamburger — mobile uses the pill nav like desktop */
  .mobile-toggle { display: none; }

  /* Mobile nav: full-width pill with 2 equal buttons */
  .nav-right {
    display: flex;
    position: static;
    height: auto;
    width: auto;
    background: rgba(255, 255, 255, 0.2);
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    padding: 6px;
    gap: 6px;
    border-radius: 100px;
    flex: 1;
    margin-left: 12px;
  }

  .btn-secondary,
  .btn-menu {
    flex: 1;
    justify-content: center;
    height: 44px;
    font-size: 13px;
    padding: 10px 14px;
  }

  /* Menu card on mobile: tighter margins, still content-height */
  .menu-card {
    top: 72px;
    left: 16px;
    right: 16px;
    bottom: auto;
    border-radius: 28px;
    padding: 32px;
    gap: 28px;
  }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 0; }
  .hero-abstract-shape { width: auto; height: 100%; object-fit: cover; object-position: left center; }

  /* Video */
  .video-section { margin-top: -40px; }

  .ride-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Content items slightly larger on mobile per Figma */
  .content-item { font-size: 20px; }

  /* Homepage services accordion — single column panel on mobile */
  .home-acc-panel-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-acc-item.open .home-acc-panel { max-height: 1100px; }
  .home-acc-trigger:hover {
    margin: 0;
    width: 100%;
  }

  .faq-acc-item { padding: 16px 24px; }

  /* CTA card smaller radius */
  .cta-card { border-radius: 10px; }

  /* Work photo full-width */
  .work-photo-img { border-radius: 4px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-logo { width: 100%; }

  /* Cookie */
  .cookie-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 40px 24px 32px;
  }
}

/* ===== Responsive: Small mobile ===== */
@media (max-width: 480px) {
  /* Hero title: auto-wraps at mobile, keep reasonable size */
  .hero-title {
    font-size: clamp(90px, 25.5vw, 132px);
    line-height: 0.88;
    white-space: normal;
  }

  /* Section headings match Figma 48px mobile spec */
  .display-heading { font-size: 48px; }
  .footer-heading { font-size: 48px; }
  .faq-heading { font-size: 48px; }

  /* Service accordion title — compact on small screens */
  .home-acc-title { font-size: 48px; letter-spacing: 0.5px; }

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

  .content-actions { flex-direction: column; }

  .footer-socials { gap: 16px; }

  .cookie-text { font-size: 13px; line-height: 1.6; }

  .cookie-actions { flex-direction: column; width: 100%; }
  .btn-deny, .btn-accept { width: 100%; }

  .menu-nav-item { font-size: clamp(32px, 10vw, 52px); }

  /* Split CTA buttons — compact on small screens */
  .btn-cta .btn-text,
  .btn-cta-light .btn-text,
  .btn-cta-pink .btn-text {
    padding: 12px 18px;
    font-size: 13px;
  }

  .btn-cta .btn-icon-circle,
  .btn-cta-light .btn-icon-circle,
  .btn-cta-pink .btn-icon-circle {
    width: 44px;
    height: 44px;
  }
}

/* ===== Accessibility: Focus Indicators ===== */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.btn:focus-visible,
.btn-cta:focus-visible,
.btn-cta-light:focus-visible,
.btn-cta-pink:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
  border-radius: 100px;
}

.home-acc-trigger:focus-visible,
.faq-acc-trigger:focus-visible,
.svc-acc-trigger:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
