/* ==========================================================================
   Coolora AC Service — Design tokens (EzBreeze-inspired blue/yellow theme)
   ========================================================================== */
:root {
  --blue: #0063E1;
  --blue-deep: #0050B4;
  --blue-dark: #003C8A;
  --blue-bg: #EAF2FF;
  --yellow: #FFCB00;
  --yellow-dark: #B98900;
  --text: #6B7280;
  --text-dark: #101828;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --border-soft: #EEF1F5;
  --gray-bg: #F5F6F8;
  --shadow: 0 24px 48px -20px rgba(0, 60, 138, 0.28);
  --shadow-sm: 0 12px 28px -14px rgba(0, 60, 138, 0.22);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --container: 1220px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.28;
  font-weight: 600;
}
p { margin: 0; }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section-pad { padding: 92px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 58px 0; }
}

/* ==========================================================================
   Texture helper (subtle wave pattern on blue panels)
   ========================================================================== */
.tex-blue {
  background-color: var(--blue);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.07) 0, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.06) 0, transparent 50%),
    radial-gradient(circle at 60% 15%, rgba(255,255,255,0.05) 0, transparent 40%);
}

/* ==========================================================================
   Utility
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before { content: "["; }
.eyebrow::after { content: "]"; }
.eyebrow.on-blue { color: var(--yellow); }

.section-head { max-width: 660px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: 36px; }
.section-head h2 .accent { color: var(--yellow); }
.section-head p { margin-top: 14px; font-size: 15.5px; line-height: 1.75; }
@media (max-width: 768px) {
  .section-head h2 { font-size: 27px; }
}

.bg-light { background: var(--gray-bg); }
.bg-blue-tint { background: var(--blue-bg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg { width: 13px; height: 13px; }
.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 14px 26px -10px rgba(255, 203, 0, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -10px rgba(255, 203, 0, 0.7); }
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 26px -10px rgba(0, 99, 225, 0.55);
}
.btn-blue:hover { transform: translateY(-2px); background: var(--blue-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(16, 24, 40, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.header-call-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #0F6CE3;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-call-btn svg { width: 16px; height: 16px; fill: var(--white); flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-dark);
}
.header-phone .icon-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-phone .icon-circle svg { width: 16px; height: 16px; fill: var(--blue); }
.header-phone small { display: block; font-weight: 400; font-size: 11px; color: var(--text); }
.header-phone span { font-size: 14.5px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; fill: var(--blue-dark); }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 767px) {
  .header-cta .btn-primary { display: none; }
  .header-call-btn { display: inline-flex; }
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 10px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  padding: 13px 4px;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a.active { color: var(--blue); }
.mobile-nav .btn { margin-top: 16px; }

/* ==========================================================================
   Ticker / marquee bar
   ========================================================================== */
.ticker { background: var(--blue-bg); overflow: hidden; padding: 16px 0; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-deep);
  white-space: nowrap;
  padding: 0 26px;
}
.ticker-dot { color: var(--yellow-dark); font-style: normal; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 84px 0 66px;
  color: var(--white);
}
.page-hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.page-hero .crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: #CFE0FF;
  margin-bottom: 16px;
}
.page-hero .crumb .current { color: var(--yellow); }
.page-hero h1 {
  color: var(--white);
  font-size: 44px;
  max-width: 620px;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { margin-top: 14px; max-width: 480px; color: #DCE8FF; font-size: 15.5px; line-height: 1.7; }
@media (max-width: 768px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 29px; }
}

/* ==========================================================================
   Home hero
   ========================================================================== */
.hero { position: relative; }
.hero .container {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  align-items: stretch;
  min-height: 560px;
}
.hero-content {
  color: var(--white);
  padding: 90px 60px 70px clamp(24px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 { font-size: 46px; color: var(--white); }
.hero-content h1 .accent { color: var(--yellow); }
.hero-content p { margin-top: 18px; font-size: 16px; line-height: 1.75; color: #DCE8FF; max-width: 440px; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; min-height: 320px; }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-deep);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 13px;
  margin-left: -12px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13.5px; color: #DCE8FF; }
.hero-trust-text strong { display: block; color: var(--white); font-size: 14.5px; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; order: -1; }
  .hero-content { padding: 44px 24px 48px; }
  .hero-content h1 { font-size: 34px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 27px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   About snippet (image + stat card)
   ========================================================================== */
.about-snippet .container {
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3.5;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.stat-card-row { display: flex; align-items: center; gap: 18px; margin-top: -60px; margin-left: 24px; position: relative; z-index: 2; flex-wrap: wrap; }
.stat-card {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  min-width: 190px;
}
.stat-card strong { display: block; font-family: var(--font-head); font-size: 28px; }
.stat-card span { font-size: 12.5px; color: #CFE0FF; }
.mission-note {
  flex: 1 1 200px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.mission-note strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--text-dark); margin-bottom: 6px; }
.mission-note p { font-size: 13.5px; line-height: 1.7; }

.about-copy h2 { font-size: 34px; }
.about-copy > p.lead { margin-top: 16px; font-size: 15.5px; line-height: 1.8; }
.about-copy .btn { margin-top: 26px; }
.about-copy .eyebrow.tag { display: inline-block; background: var(--blue-bg); color: var(--blue-dark); padding: 5px 14px; border-radius: 999px; font-size: 11.5px; margin-bottom: 10px; }

.about-snippet.reverse .about-media { order: 2; }
.about-snippet.reverse .about-copy { order: 1; }

@media (max-width: 900px) {
  .about-snippet .container { grid-template-columns: 1fr; gap: 32px; }
  .about-snippet.reverse .about-media,
  .about-snippet.reverse .about-copy { order: initial; }
  .stat-card-row { margin-top: -40px; margin-left: 16px; }
}
@media (max-width: 560px) {
  .stat-card-row { flex-direction: column; align-items: stretch; margin-left: 0; }
  .stat-card { min-width: 0; }
  .mission-note { flex-basis: auto; }
}

/* ==========================================================================
   Why choose us (numbered cards)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease;
}
.why-card.on {
  background: var(--blue);
  color: var(--white);
}
.why-card .row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.why-card .icon-tile {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.why-card .icon-tile svg { width: 19px; height: 19px; fill: var(--blue); }
.why-card .num { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--border); }
.why-card.on .num { color: rgba(255,255,255,0.35); }
.why-card h3 { font-size: 16.5px; }
.why-card.on h3 { color: var(--white); }
.why-card p { margin-top: 8px; font-size: 13px; line-height: 1.7; }
.why-card.on p { color: #CFE0FF; }

@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services tabs (interactive showcase)
   ========================================================================== */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.tab-btn {
  border: none;
  background: var(--gray-bg);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 999px;
}
.tab-btn.active { background: var(--blue); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel-inner {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  gap: 32px;
  align-items: center;
}
.tab-media { position: relative; }
.tab-media > img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border-radius: var(--radius-md); }
.tab-media .mini-img {
  position: absolute;
  right: -18px; bottom: -18px;
  width: 42%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--white);
}
.tab-media .mini-img img { aspect-ratio: 1/1; object-fit: cover; }
.tab-media .mini-img .go {
  position: absolute; right: 8px; bottom: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.tab-media .mini-img .go svg { width: 13px; height: 13px; fill: var(--blue-dark); }
.tab-copy h3 { font-size: 24px; }
.tab-copy p { margin-top: 14px; font-size: 14.5px; line-height: 1.8; }
.tab-tags { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.tab-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .tab-panel-inner { grid-template-columns: 1fr; }
  .tab-media .mini-img { width: 46%; }
}
@media (max-width: 480px) {
  .tab-panel-inner { padding: 18px; }
  .tab-media .mini-img { display: none; }
}

/* ==========================================================================
   Services grid (card list, used on services page)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card img { width: 100%; aspect-ratio: 4/2.8; object-fit: cover; }
.service-card-body { padding: 22px; }
.service-card .icon-tile {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card .icon-tile svg { width: 21px; height: 21px; fill: var(--blue); }
.service-card h3 { font-size: 18px; }
.service-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.65; }
.service-card .learn {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 13.5px;
}
.service-card .learn svg { width: 13px; height: 13px; fill: var(--blue); transition: transform 0.2s ease; }
.service-card:hover .learn svg { transform: translateX(4px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Steps / How we work
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}
.step-card.on { background: var(--blue); color: var(--white); }
.step-card .row-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 30px; }
.step-card .icon-tile {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.step-card .icon-tile svg { width: 17px; height: 17px; fill: var(--blue); }
.step-card .num { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--border); }
.step-card.on .num { color: rgba(255,255,255,0.4); }
.step-card h3 { font-size: 16px; margin-top: auto; }
.step-card.on h3 { color: var(--white); }
.step-card p { margin-top: 8px; font-size: 12.5px; line-height: 1.65; }
.step-card.on p { color: #CFE0FF; }

/* ==========================================================================
   Checklist grid (feature/problem lists, 2-col)
   ========================================================================== */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: 22px 0;
}
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-item .icon-tile {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-item .icon-tile svg { width: 12px; height: 12px; fill: var(--blue); }
.check-item span { font-size: 14px; color: var(--text-dark); line-height: 1.5; }
@media (max-width: 560px) {
  .check-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Flow strip (Inspect -> Understand -> Recommend -> Service -> Check)
   ========================================================================== */
.flow-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.flow-strip span.step {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue-dark);
  background: var(--blue-bg);
  padding: 10px 18px;
  border-radius: 999px;
}
.flow-strip span.arrow { color: var(--yellow-dark); font-weight: 700; }

/* ==========================================================================
   Process split (dark/light) — reused for "what happens when you book"
   ========================================================================== */
.process-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-copy { background: var(--blue); color: #DCE8FF; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.process-media { background: var(--blue-deep); }
.process-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.process-copy h2 { color: var(--white); font-size: 30px; max-width: 440px; }
.process-copy > p { margin-top: 14px; font-size: 14.5px; line-height: 1.75; max-width: 440px; }
.process-steps { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; max-width: 440px; }
.process-step { display: flex; gap: 14px; align-items: flex-start; }
.process-step .icon-circle {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-step .icon-circle svg { width: 18px; height: 18px; fill: var(--yellow); }
.process-step strong { display: block; color: var(--white); font-size: 15px; }
.process-step span { font-size: 13px; }

@media (max-width: 900px) {
  .process-split { grid-template-columns: 1fr; }
  .process-copy { padding: 44px 26px; }
  .process-media img { min-height: 240px; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-layout { display: grid; grid-template-columns: minmax(0, 640px) 1fr; gap: 46px; align-items: stretch; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--gray-bg);
}
.faq-item.active { background: var(--white); border-color: var(--blue); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark);
}
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.faq-item.active .faq-toggle { background: var(--blue); border-color: var(--blue); }
.faq-toggle svg { width: 10px; height: 10px; fill: var(--text-dark); transition: transform 0.2s ease; }
.faq-item.active .faq-toggle svg { fill: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer-inner { padding: 2px 20px 18px; font-size: 14px; line-height: 1.75; color: var(--text); }

.faq-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; }
.faq-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-visual { min-height: 260px; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
}
.cta-banner .container { padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; max-width: none; }
.cta-banner h2 { color: var(--white); font-size: 28px; max-width: 540px; }
.cta-wrap { padding: 0 24px; }
.cta-wrap .container { max-width: var(--container); }
@media (max-width: 700px) {
  .cta-banner { padding: 34px 24px; text-align: center; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Booking / contact form
   ========================================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-field label {
  display: block; font-size: 13.5px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--gray-bg);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
.form-field.full { grid-column: 1 / -1; margin-bottom: 22px; }
.form-field textarea { min-height: 110px; resize: vertical; }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.social-row { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.social-row span { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--text-dark); }
.social-row .icons { display: flex; gap: 10px; }
.social-row .icons a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
}
.social-row .icons a svg { width: 15px; height: 15px; fill: var(--blue); }

/* ==========================================================================
   Contact info cards
   ========================================================================== */
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card.on { background: var(--blue); color: var(--white); }
.info-card .icon-tile {
  width: 44px; height: 44px; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.info-card .icon-tile svg { width: 19px; height: 19px; fill: var(--blue); }
.info-card h3 { font-size: 16.5px; }
.info-card.on h3 { color: var(--white); }
.info-card p { margin-top: 6px; font-size: 13px; line-height: 1.6; }
.info-card.on p { color: #CFE0FF; }
.info-card .btn { margin-top: 18px; }

@media (max-width: 900px) { .info-card-grid { grid-template-columns: 1fr; } }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { color: #DCE8FF; }
.footer-top { padding: 64px 0 40px; }
.footer-top .container {
  display: grid;
  grid-template-columns: minmax(0, 380px) repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.footer-logo { height: 42px; width: auto; margin-bottom: 20px; }
.footer-newsletter h4 { color: var(--white); font-size: 18px; font-family: var(--font-head); font-weight: 600; }
.newsletter-form { margin-top: 16px; display: flex; gap: 0; border-radius: 999px; overflow: hidden; background: var(--white); padding: 4px; }
.newsletter-form input {
  flex: 1;
  border: none; background: transparent;
  padding: 11px 16px; font-size: 13.5px; color: var(--text-dark);
  min-width: 0;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--yellow); color: var(--blue-dark); border: none;
  border-radius: 999px; padding: 11px 20px; font-weight: 600; font-size: 13px; flex-shrink: 0;
}
.footer-newsletter p { margin-top: 14px; font-size: 13px; line-height: 1.7; max-width: 320px; }

.footer-col h4 { color: var(--white); font-size: 15px; font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #CFE0FF; }
.footer-col a:hover { color: var(--yellow); }

.footer-contact-row {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 30px 0;
}
.footer-contact-row .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-contact-item { display: flex; align-items: center; gap: 14px; }
.footer-contact-item .icon-tile {
  width: 42px; height: 42px; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-contact-item .icon-tile svg { width: 18px; height: 18px; fill: var(--blue); }
.footer-contact-item strong { display: block; color: var(--white); font-size: 14.5px; }
.footer-contact-item span, .footer-contact-item a { font-size: 13.5px; color: #CFE0FF; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 18px 0; text-align: center; font-size: 13px; }

@media (max-width: 980px) {
  .footer-top .container { grid-template-columns: 1fr 1fr; }
  .footer-contact-row .container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-top .container { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-form button { border-radius: var(--radius-sm); margin-top: 4px; }
}

/* ==========================================================================
   Misc responsive safety
   ========================================================================== */
@media (max-width: 640px) {
  .section-head { padding: 0 4px; }
}

/* ==========================================================================
   Sticky Call + WhatsApp buttons (phone devices only)
   ========================================================================== */
.mobile-contact-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  flex-direction: column;
  gap: 12px;
}
.mobile-contact-fab a {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.22);
}
.mobile-contact-fab a.call { background: var(--blue); }
.mobile-contact-fab a.whatsapp { background: #25D366; }
.mobile-contact-fab a svg { width: 24px; height: 24px; fill: var(--white); }
@media (max-width: 767px) {
  .mobile-contact-fab { display: flex; }
  body { padding-bottom: 84px; }
}
