/* =========================================================
   3M Car Care Studio — Stylesheet
   ========================================================= */

:root {
  --red: #ED1B2F;
  --red-dark: #c2101d;
  --dark: #111111;
  --text-1: #1a1a1a;
  --text-2: #444444;
  --text-3: #555555;
  --bg-alt: #f8f8f8;
  --border: #e6e6e6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  color: var(--dark);
}

.page {
  width: 100%;
  overflow-x: clip;
  background: #ffffff;
  color: #111111;
}

a { color: inherit; }

img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.container-narrow { max-width: 1180px; }
.container-faq { max-width: 1000px; }
.container-booking { max-width: 980px; }

.section { 
   padding-top: clamp(46px, 4vw, 80px); 
  padding-bottom: clamp(20px, 4vw, 40px);
   scroll-margin-top: 90px;
}

.section-head {
    margin-bottom: clamp(28px, 4vw, 52px);
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

.section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-head p {
    margin: 0;
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-2);
    line-height: 1.35;
}

.center-heading {
  margin: 0 0 clamp(34px, 4vw, 58px);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
}

.center-cta { display: flex; justify-content: center; margin-top: clamp(36px, 4vw, 56px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn .arrow { font-size: 1.2em; line-height: 1; }

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 17px 34px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(237,27,47,0.36); }
.btn-primary:active { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(237,27,47,0.3); }

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  padding: 16px 32px;
}
.btn-outline:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.4); }
.btn-outline:active { transform: translateY(-1px); }

.btn-block { width: 100%; justify-content: center; padding: 21px; margin-top: 4px; font-size: clamp(13px,1.05vw,15px); }

/* =========================================================
   HEADER
   ========================================================= */
  :root {
    --ivory: #FAF6EF;
    --ink: #1B1812;
    --ink-soft: #4A453C;
    --brass: #A9834B;
    --brass-deep: #8A6A3A;
    --line: rgba(27, 24, 18, 0.1);
    --nav-height: 84px;
  }
 
  /* ---------- NAVBAR ---------- */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
  }
 
  .nav-inner {
    box-sizing: border-box;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
 
  /* Logo */
  .nav-logo {
    justify-self: start;
    display: flex;
    align-items: center;
  }
  .nav-logo img {
    height: 42px;
    width: 360px;
    display: block;
    margin-left: -35px;
  }
 
  /* Center links */
  .nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 0;
    transition: color 0.25s ease;
    font-family: 'Roboto', system-ui, sans-serif;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #C2101D;
    transition: width 0.3s ease;
  }
  .nav-links a:hover {
    color: #141414;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
 
  /* CTA button */
  .nav-cta-wrap {
    justify-self: end;
  }
  .btn-book {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
    background: #C2101D;
    border: 1px solid #C2101D;
    padding: 12px 26px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
  }

 
  /* Hamburger */
  .hamburger {
    display: none;
    justify-self: end;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 1100;
  }
  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.25s ease, top 0.35s ease;
  }
  .hamburger span:nth-child(1) { top: 2px; }
  .hamburger span:nth-child(2) { top: 11px; }
  .hamburger span:nth-child(3) { top: 20px; }
 
  .hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }
 
  /* ---------- MOBILE MENU ---------- */
  .mobile-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 360px);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    font-family: 'Inter', sans-serif;
  }
  .mobile-menu.open {
    transform: translateX(0%);
  }
 
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu li {
    overflow: hidden;
  }
  .mobile-menu a {
    box-sizing: border-box;
    display: block;
    color: var(--ivory);
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.6rem;
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid rgba(250, 246, 239, 0.12);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu.open li:nth-child(1) a { transition-delay: 0.12s; }
  .mobile-menu.open li:nth-child(2) a { transition-delay: 0.18s; }
  .mobile-menu.open li:nth-child(3) a { transition-delay: 0.24s; }
  .mobile-menu.open li:nth-child(4) a { transition-delay: 0.30s; }
 
  .mobile-menu .btn-book {
    margin-top: 32px;
    width: 100%;
    background: var(--brass);
    border-color: var(--brass);
    color: var(--ink);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease 0.36s, transform 0.45s ease 0.36s, background 0.25s ease;
  }
  .mobile-menu.open .btn-book {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu .btn-book:hover {
    background: var(--ivory);
  }
 
  /* Backdrop */
  .backdrop {
    position: fixed;
    inset: 0;
    background: rgba(27, 24, 18, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1040;
  }
  .backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
 
  body.menu-open {
    overflow: hidden;
  }
  
/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 560PX;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Slide 1: image, un-cropped, less "zoomed in" */
.hero-slide-image {
  background: #0a0a0a;
}

.hero-slide-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover ;   /* shows full image, no aggressive crop/zoom */
  object-position: center;
  display: block;
}

/* Slide 2: video */
.hero-slide-video {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Arrow nav buttons */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease;
}
.hero-nav:hover {
  background: rgba(237,27,47,0.85);
  border-color: #ED1B2F;
}
.hero-nav-prev { left: 20px; }
.hero-nav-next { right: 20px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.34) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) clamp(20px, 5vw, 64px);
}
.hero-content { max-width: 940px; animation: ccUp .7s ease both; }
.hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237,27,47,0.22);
}
.hero-tag span:last-child {
  color: #ffffff;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.hero-title {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.hero-brand {
    color: #C2101D;
}
.hero-desc {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    align-items: center;
    gap: 16px 24px;
    margin: 0 0 34px;
    padding: 18px 20px;
    width: fit-content;
    max-width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid #ED1B2F;
    border-radius: 3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: clamp(16px, 0.85vw, 18px);
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-desc span {
    position: relative;
    white-space: nowrap;
}

/* Small red separator */
.hero-desc span:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #ED1B2F;
    border-radius: 50%;
    transform: translateY(-50%);
}
@keyframes ccUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-desktop-banner {
    display: block;
}

.hero-mobile-banner {
    display: none;
}



/* =========================================================
   FORM
   ========================================================= */
.premium-form-card{
    --accent:#fff;
    --bg:#cc1225;
    --border:rgba(255,255,255,.15);
    --field-h:58px;

    width:100%;
    max-width:1200px;
    margin:40px auto;
    padding:30px 40px;
    background:var(--bg);
    border:1px solid var(--border);
    border-top:2px solid #fff;
    border-radius:6px;
    box-sizing:border-box;
}

.premium-form-card *,
.premium-form-card *::before,
.premium-form-card *::after{
    box-sizing:border-box;
}

.premium-form-card .container{
    width:100%;
    max-width:100%;
    padding:0;
    margin:0;
}

.premium-form-card form{
    display:flex;
    align-items:center;
    gap:22px;
}

.premium-form-card .field{
    position:relative;
    flex:1;
    min-width:240px;
    height:var(--field-h);
    background:#fff;
    border-radius:4px;
    overflow:hidden;
}

.premium-form-card .icon-wrap{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
    color:#ED1B2F;
    z-index:2;
}

.premium-form-card .icon-wrap svg{
    width:18px;
    height:18px;
}

.premium-form-card .field input{
    width:100%;
    height:100%;
    border:0;
    outline:0;
    background:transparent;
    padding:0 16px 0 48px;
    font-size:14px;
    color:#333;
    position:relative;
    z-index:2;
}

.premium-form-card .field input::placeholder{
    color:#999;
}

/* Underline */
.premium-form-card .underline{
    position:absolute;
    left:48px;
    right:18px;
    bottom:14px;
    height:1px;
    background:#d8d8d8;
    z-index:1;
}

.premium-form-card .error-msg{
    display:none;
}

.premium-form-card .field.invalid .error-msg{
    display:block;
    position:absolute;
    top:calc(100% + 5px);
    left:0;
    color:#fff;
    font-size:11px;
}

/* Submit Button */
.premium-form-card button{
    width:130px;
    min-width:130px;
    height:var(--field-h);
    padding:0;
    border:1px solid #fff;
    border-radius:4px;
    background:#fff;
    color:#ED1B2F;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.premium-form-card button:hover{
    background:#f5f5f5;
}

#enquiryForm{
    scroll-margin-top: 120px;
    
}


/* =========================================================
   SERVICES
   ========================================================= */
.services-section { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 7/5;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-5px); }

.service-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.92) 100%);
}
.service-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 2.4vw, 32px);
}
.service-text h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
}
.service-text p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(13px, 1.1vw, 14px);
  line-height: 1.4;
  font-weight: 400;
}

/* =========================================================
   MARQUEES (Why Choose Us / Gallery)
   ========================================================= */
.marquee-mask {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.why-track { animation: whyMarquee 38s linear infinite; }
.gallery-track { animation: whyMarquee 30s linear infinite; }

@keyframes whyMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.why-card {
  flex: 0 0 clamp(280px, 78vw, 360px);
  margin-right: clamp(18px, 2vw, 26px);
  box-sizing: border-box;
  background: var(--bg-alt);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-icon {
  width: 60px; height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.why-card h3 { margin: 0; font-size: clamp(17px, 1.4vw, 20px); font-weight: 500; }
.why-card p { margin: 0; font-size: clamp(14px, 1.2vw, 15px); color: var(--text-2); line-height: 1.45; font-weight: 300; }

.gallery-section .marquee-mask {
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.gallery-item {
  flex: 0 0 clamp(260px, 30vw, 420px);
  margin-right: clamp(16px, 1.6vw, 24px);
  box-sizing: border-box;
  overflow: hidden;
  aspect-ratio: 9/10;
  background: #eee;
}
.gallery-img { width: 100%; height: 100%; background-size: cover; background-position: center; }

/* =========================================================
   PROMISE
   ========================================================= */
.promise-section { background: var(--bg-alt); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 3vw, 40px);
}
.promise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 clamp(8px, 1.5vw, 24px);
}
.promise-icon {
  width: 66px; height: 66px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.promise-card h3 { margin: 0; font-size: clamp(17px, 1.5vw, 21px); font-weight: 500; }
.promise-card p { margin: 0; font-size: clamp(14px, 1.2vw, 15px); color: var(--text-2); line-height: 1.45; font-weight: 300; max-width: 360px; }

/* =========================================================
   CONTACT / MAP / HOURS
   ========================================================= */
.contact-section { background: var(--bg-alt); }

.map-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/2;
  min-height: 320px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  margin-bottom: clamp(34px, 4vw, 54px);
  background: #e9e9e9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-badge {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #111;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.map-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.26); }
.map-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-heading {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.contact-lead {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-2);
  line-height: 1.45;
  font-weight: 300;
  max-width: 520px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.contact-row-last { margin-bottom: 32px; }
.contact-icon { width: 32px; height: 32px; object-fit: contain; }
.contact-row a { font-size: clamp(15px, 1.3vw, 18px); color: #111; font-weight: 300; text-decoration: none; }
.contact-map-link { border-bottom: 1px solid transparent; transition: color .18s ease, border-color .18s ease; }
.contact-map-link:hover { color: var(--red); border-color: var(--red); }

.hours-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: clamp(6px, 1vw, 14px) clamp(22px, 2.4vw, 32px);
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(14px, 1.5vw, 18px) 0;
  border-bottom: 1px solid #ededed;
}
.hours-row span:first-child { font-size: clamp(14px, 1.3vw, 17px); font-weight: 500; color: var(--text-1); }
.hours-row span:last-child { font-size: clamp(13px, 1.2vw, 16px); color: var(--text-3); font-weight: 400; }
.hours-row.today { background: rgba(237,27,47,0.00); }
.hours-row.today span:first-child { font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 1.6vw, 22px) 4px;
  font-family: inherit;
}
.faq-question span:first-child { font-size: clamp(15px, 1.4vw, 17px); font-weight: 500; color: #111; }

.faq-sign {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #111111;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform .34s cubic-bezier(.34,1.3,.5,1), background .28s ease, color .28s ease;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity .32s ease;
}
.faq-answer-inner p {
  margin: 0;
  padding: 0 50px clamp(22px, 2.4vw, 28px) 4px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-3);
  line-height: 1.55;
  font-weight: 300;
}

.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-item.open .faq-answer-inner { opacity: 1; }
.faq-item.open .faq-sign {
  background: var(--red);
  color: #ffffff;
  transform: rotate(45deg);
}

/* =========================================================
   BOOKING FORM
   ========================================================= */
.booking-section { background: var(--bg-alt); }

.booking-form {
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 16px 44px rgba(0,0,0,0.06);
  padding: clamp(26px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.6vw, 30px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"] {
  border: 1.5px solid #d6d6d6;
  background: #fff;
  padding: 17px 20px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: inherit;
  color: #111;
  outline: none;
  transition: border-color .15s ease;
}
.booking-form input:focus { border-color: var(--red); }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  border: 1.5px solid #111;
  background: #fff;
  padding: 18px 50px 18px 20px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: inherit;
  color: #111;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s ease;
}
.select-wrap select:focus { border-color: var(--red); }
.select-caret {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--red);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #fff; padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 3vw, 40px); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-logo {
  height: auto;
  width: 400px;
  max-width: none;
  object-fit: contain;
  display: block;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}
.footer-about {
  margin: 0;
  max-width: 440px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--text-3);
  line-height: 1.75;
  font-weight: 400;
  text-align: justify;
}

.footer-contact { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 26px); }
.footer-row { display: flex; align-items: center; gap: 14px; }
.footer-row a { font-size: clamp(15px, 1.4vw, 17px); color: #111; font-weight: 400; text-decoration: none; }
.footer-row-address { align-items: flex-start; }
.footer-row-address a { line-height: 1.55; max-width: 360px; }
.footer-row-address .footer-icon { margin-top: 2px; }

.footer-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--red);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.footer-social { display: flex; align-items: center; gap: 16px; margin-left: 4px; }
.footer-social a { display: inline-flex; width: 26px; height: 26px; flex-shrink: 0; }

.footer-divider { height: 1px; background: var(--border); margin: clamp(34px, 4vw, 56px) 0 clamp(20px, 2.4vw, 28px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  flex-wrap: wrap;
}
.footer-bottom span:first-child { font-size: clamp(13px, 1.1vw, 15px); color: var(--text-2); font-weight: 500; }
.footer-power { color: #111; text-decoration: none; font-weight: 600; }
.footer-privacy { font-size: clamp(13px, 1.1vw, 15px); color: var(--text-3); font-family: 'Poppins', sans-serif; font-weight: 500; }
.footer-privacy a { color: var(--text-3); text-decoration: none; }

/* =========================================================
   FLOATING CONTACT BUTTONS
   ========================================================= */
.float-btn{
    position: fixed;
    right: 20px;              /* Both buttons on right */
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.float-btn i{
    font-size:26px;
    color:#fff;
}

.float-btn:hover{
    transform:scale(1.08);
}

.float-call{
    bottom:95px;
    background:#0d6efd;      /* Blue */
}

.float-whatsapp{
    bottom:20px;
    background:#25D366;      /* WhatsApp Green */
}

.float-btn svg{
    width:28px;
    height:28px;
}

@keyframes ccPulse{
    0%{
        box-shadow:0 0 0 0 rgba(0,0,0,.35);
    }
    70%{
        box-shadow:0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,0,0,0);
    }
}

.float-call,
.float-whatsapp{
    animation:ccPulse 2s infinite;
}