/* ============================================================
   contact.css — Contact Page
   ANIB Building Contracting LLC
   Design System: Cormorant Garamond + DM Sans | Navy/Gold/Cream
   ============================================================ */

/* ── ROOT & RESET ── */
:root {
  --gold: #C9973A;
  --gold-light: #E8B25C;
  --primary: #0D1B2A;
  --cream: #F5F0E8;
  --dark-bg: #080F18;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: #F9F7F4; color: #1a1a1a; overflow-x: hidden; cursor: none; }
::selection { background: rgba(201,151,58,0.2); color: var(--primary); }

/* ── CURSOR ── */
.cursor { width:10px;height:10px;background:var(--gold);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9999;transition:transform 0.15s ease;mix-blend-mode:difference; }
.cursor-ring { width:36px;height:36px;border:1.5px solid rgba(201,151,58,0.7);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9998;transition:all 0.3s ease;opacity:0.6; }
@media(max-width:768px) { .cursor,.cursor-ring { display:none; } body { cursor:auto; } }

/* ── PROGRESS BAR ── */
.progress-bar { position:fixed;top:0;left:0;height:2px;background:linear-gradient(to right,var(--gold),var(--gold-light));z-index:9999;width:0%;transition:width 0.08s linear; }

/* ── HEADER ── */
.site-header { position:fixed;top:0;left:0;right:0;z-index:100;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:80px;transition:all 0.5s ease;background:rgba(13,27,42,0.75);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px); }
.site-header::after { content:'';position:absolute;bottom:0;left:5%;right:5%;height:1px;background:linear-gradient(to right,transparent,rgba(201,151,58,0.3),transparent); }
.site-header.scrolled { background:rgba(13,27,42,0.97);backdrop-filter:blur(20px);box-shadow:0 4px 40px rgba(0,0,0,0.4);height:68px; }
.logo-wrap { display:flex;align-items:center;gap:14px; }
.logo-wrap img { height:60px;transition:all 0.4s; }
.site-header.scrolled .logo-wrap img { height:42px; }
.logo-text { font-family:"DM Sans",sans-serif;font-weight:600;letter-spacing:0.15em;font-size:0.85rem;color:white;text-transform:uppercase; }
.nav-links { display:flex;gap:2.5rem;align-items:center; }
.nav-links a { font-size:0.78rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.85);text-decoration:none;position:relative;transition:color 0.3s; }
.nav-links a::after { content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--gold);transition:width 0.3s ease; }
.nav-links a:hover,.nav-links a.nav-active { color:var(--gold-light); }
.nav-links a:hover::after,.nav-links a.nav-active::after { width:100%; }
.nav-cta { background:var(--gold)!important;color:var(--primary)!important;padding:9px 22px;border-radius:4px;font-weight:700!important;transition:all 0.3s ease!important; }
.nav-cta:hover { background:var(--gold-light)!important;transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,151,58,0.5); }
.nav-cta::after,.nav-links a.nav-cta::after { display:none!important; }
.mobile-btn { display:none;background:none;border:1px solid rgba(201,151,58,0.5);color:white;width:40px;height:40px;border-radius:4px;cursor:pointer;font-size:1.2rem;align-items:center;justify-content:center; }
@media(max-width:768px) { .nav-links { display:none; } .mobile-btn { display:flex; } }

/* ── MOBILE MENU ── */
.mobile-menu { position:fixed;top:0;right:-100%;width:min(320px,85vw);height:100vh;background:var(--primary);z-index:200;padding:6rem 2.5rem 3rem;display:flex;flex-direction:column;gap:0;transition:right 0.5s cubic-bezier(0.77,0,0.175,1);border-left:1px solid rgba(201,151,58,0.2); }
.mobile-menu.open { right:0; }
.mobile-menu a { color:rgba(255,255,255,0.85);text-decoration:none;font-size:1.5rem;font-family:"Cormorant Garamond",serif;font-weight:600;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,0.07);transition:color 0.3s,padding-left 0.3s; }
.mobile-menu a:hover { color:var(--gold);padding-left:8px; }
.mobile-overlay { position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:199;opacity:0;pointer-events:none;transition:opacity 0.4s; }
.mobile-overlay.show { opacity:1;pointer-events:all; }
.close-menu { position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;color:white;font-size:1.5rem;cursor:pointer; }

/* ── PAGE HERO ── */
.page-hero { position:relative;height:88vh;min-height:620px;display:flex;align-items:center;overflow:hidden; }
.page-hero-bg {
  position:absolute;inset:0;
  background:url('assets/images/contact/contact-hero.webp') center center / cover no-repeat;
}
.page-hero-bg::before { content:'';position:absolute;inset:0;background:linear-gradient(135deg,#0D1B2A 0%,#1a3050 100%);z-index:-1; }
.page-hero-overlay { position:absolute;inset:0;background:linear-gradient(160deg,rgba(13,27,42,0.95) 0%,rgba(13,27,42,0.7) 55%,rgba(13,27,42,0.45) 100%); }

.page-hero-breadcrumb { position:absolute;top:100px;left:clamp(1.5rem,5vw,5rem);display:flex;align-items:center;gap:10px;font-size:0.72rem;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;color:rgba(255,255,255,0.5);z-index:10; }
.page-hero-breadcrumb a { color:rgba(255,255,255,0.5);text-decoration:none;transition:color 0.3s; }
.page-hero-breadcrumb a:hover { color:var(--gold); }
.page-hero-breadcrumb span:last-child { color:var(--gold); }
@media(max-width:768px) { .page-hero-breadcrumb { top:88px; } }

.page-hero-content { position:relative;z-index:10;padding:80px clamp(1.5rem,5vw,5rem) 0;max-width:820px; }
@media(min-width:768px) { .page-hero-content { padding-top:0; } }

.page-hero-tag { display:inline-flex;align-items:center;gap:10px;color:var(--gold);font-size:0.72rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;margin-bottom:1.2rem;opacity:0;animation:fadeUp 0.8s 0.3s forwards; }
.page-hero-tag::before { content:'';width:28px;height:1px;background:var(--gold); }
@media(max-width:767px) { .page-hero-tag { display:none; } }

.page-hero-h1 { font-family:"Cormorant Garamond",serif;font-size:clamp(3rem,7vw,6rem);font-weight:300;line-height:1.05;color:white;margin-bottom:1.2rem;opacity:0;animation:fadeUp 0.9s 0.5s forwards; }
.page-hero-h1 em { font-style:italic;color:var(--gold-light); }
.page-hero-sub { font-size:1.05rem;color:rgba(255,255,255,0.7);max-width:540px;line-height:1.75;margin-bottom:2.2rem;opacity:0;animation:fadeUp 0.9s 0.7s forwards; }
.hero-cta-row { display:flex;gap:1rem;flex-wrap:wrap;opacity:0;animation:fadeUp 0.9s 0.9s forwards; }

/* Quick contact strip */
.hero-quick-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(8,15,24,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,151,58,0.18);
  z-index: 10;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.hqs-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,5rem); display: flex; align-items: stretch; flex-wrap: wrap; }
.hqs-item { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 2rem; text-decoration: none; flex: 1; min-width: 160px; transition: background 0.3s; }
.hqs-item:hover { background: rgba(201,151,58,0.06); }
.hqs-item-plain { cursor: default; }
.hqs-item-plain:hover { background: transparent; }
.hqs-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(201,151,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hqs-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.hqs-icon-wa { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); }
.hqs-icon-wa svg { stroke: #25D366; fill: #25D366; }
.hqs-text { display: flex; flex-direction: column; gap: 3px; }
.hqs-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hqs-value { font-size: 0.82rem; font-weight: 600; color: white; transition: color 0.3s; }
.hqs-item:hover .hqs-value { color: var(--gold-light); }
.hqs-divider { width: 1px; background: rgba(255,255,255,0.07); align-self: stretch; }
@media(max-width: 768px) {
  .hqs-inner { flex-direction: column; }
  .hqs-divider { width: 100%; height: 1px; }
  .hqs-item { padding: 1rem 1.5rem; }
}

/* Scroll hint */
.scroll-hint { position:absolute;right:2.5rem;bottom:90px;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,0.35);font-size:0.62rem;letter-spacing:0.14em;text-transform:uppercase;z-index:10; }
.scroll-line { width:1px;height:50px;background:linear-gradient(to bottom,var(--gold),transparent);animation:scrollPulse 2.2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }
@media(max-width:768px) { .scroll-hint { display:none; } }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0;transform:translateY(28px);transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal.visible { opacity:1;transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.22s; }
.reveal-delay-3 { transition-delay:0.34s; }

/* ── SHARED ── */
.section { padding: 6rem clamp(1.5rem,5vw,5rem); }
.section-tag { display:inline-flex;align-items:center;gap:10px;color:var(--gold);font-size:0.7rem;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;margin-bottom:0.9rem; }
.section-tag::before { content:'';width:24px;height:1px;background:var(--gold); }
.section-h2 { font-family:"Cormorant Garamond",serif;font-size:clamp(2.2rem,4.5vw,3.8rem);font-weight:300;line-height:1.15;color:var(--primary); }
.section-h2 em { font-style:italic;color:var(--gold); }
.req { color:var(--gold); font-size:0.85em; }

/* ── BUTTONS ── */
.btn-gold { background:var(--gold);color:var(--primary);padding:13px 32px;font-weight:700;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-block;transition:all 0.35s ease;border:none;cursor:pointer; }
.btn-gold:hover { background:var(--gold-light);transform:translateY(-2px);box-shadow:0 10px 28px rgba(201,151,58,0.5); }
.btn-ghost { border:1.5px solid rgba(255,255,255,0.45);color:white;padding:13px 32px;font-weight:600;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-block;transition:all 0.35s ease; }
.btn-ghost:hover { border-color:var(--gold);color:var(--gold);background:rgba(201,151,58,0.07); }
.btn-outline-dark { border:1.5px solid var(--primary);color:var(--primary);padding:13px 32px;font-weight:700;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-block;transition:all 0.35s ease; }
.btn-outline-dark:hover { background:var(--primary);color:white; }

/* ── CONTACT MAIN ── */
.contact-main { background: white; }
.cm-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5.5rem; align-items: start; }
@media(max-width: 960px) { .cm-inner { grid-template-columns: 1fr; gap: 4rem; } }

.cm-intro { font-size: 0.95rem; color: #777; line-height: 1.8; margin: 1rem 0 2.5rem; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-full { grid-column: 1 / -1; }
.cf-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #555; }
.cf-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #aaa; font-size: 0.72rem; }
.cf-group input,
.cf-group select,
.cf-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: #1a1a1a;
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none; -webkit-appearance: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.08);
}
.cf-group input.error,
.cf-group select.error,
.cf-group textarea.error { border-color: #c53030; }
.cf-group textarea { resize: vertical; min-height: 130px; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9973A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; cursor: pointer; }
.field-error { font-size: 0.72rem; color: #c53030; min-height: 1em; }

/* File drop */
.file-drop { border: 1.5px dashed rgba(201,151,58,0.35); border-radius: 6px; background: rgba(201,151,58,0.03); transition: all 0.3s; position: relative; cursor: pointer; }
.file-drop:hover, .file-drop.dragover { border-color: var(--gold); background: rgba(201,151,58,0.06); }
.fd-inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; pointer-events: none; }
.fd-inner svg { width: 36px; height: 36px; stroke: var(--gold); opacity: 0.6; }
.fd-inner p { font-size: 0.85rem; color: #888; }
.fd-browse { color: var(--gold); font-weight: 600; text-decoration: underline; }
.fd-hint { font-size: 0.72rem; color: #bbb; }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-selected { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-top: 6px; min-height: 1.2em; }

/* Submit */
.cf-submit-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-submit { display: inline-flex; align-items: center; gap: 12px; background: var(--primary); color: white; padding: 15px 36px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase; border-radius: 4px; border: none; cursor: pointer; transition: all 0.35s ease; }
.btn-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,151,58,0.45); }
.btn-submit svg { width: 18px; height: 18px; stroke: currentColor; transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.cf-privacy { font-size: 0.72rem; color: #aaa; }

/* Form success */
.form-success { background: rgba(201,151,58,0.06); border: 1.5px solid rgba(201,151,58,0.25); border-radius: 6px; padding: 2.5rem 2rem; text-align: center; }
.fs-tick { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--primary); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success h4 { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--primary); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: #666; line-height: 1.7; }
.form-success strong { color: var(--primary); }

/* Right: contact info cards */
.ci-cards { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; border: 1px solid rgba(0,0,0,0.07); border-radius: 6px; overflow: hidden; }
.ci-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 1.75rem; border-bottom: 1px solid rgba(0,0,0,0.06); background: white; transition: background 0.3s; }
.ci-card:last-child { border-bottom: none; }
.ci-card:hover { background: #FFFDF9; }
.ci-icon { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(201,151,58,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(201,151,58,0.04); }
.ci-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.ci-icon-clock { background: rgba(13,27,42,0.04); border-color: rgba(13,27,42,0.15); }
.ci-icon-clock svg { stroke: var(--primary); }
.ci-text h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; margin-bottom: 5px; }
.ci-text a { display: block; font-size: 0.88rem; color: var(--primary); text-decoration: none; transition: color 0.3s; line-height: 1.7; }
.ci-text a:hover { color: var(--gold); }
.ci-text p { font-size: 0.88rem; color: #555; line-height: 1.7; }
.ci-note { font-size: 0.75rem; color: #aaa; margin-top: 3px; }

/* Map */
.ci-map-wrap { border: 1px solid rgba(0,0,0,0.07); border-radius: 6px; overflow: hidden; }
.ci-map-label { display: flex; align-items: center; gap: 10px; padding: 1rem 1.5rem; background: var(--primary); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.ci-map-label svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.ci-map { height: 280px; }
.ci-map iframe { width: 100%; height: 100%; display: block; }
.ci-map-link { display: flex; align-items: center; gap: 8px; padding: 0.9rem 1.5rem; background: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-top: 1px solid rgba(0,0,0,0.06); transition: background 0.3s; }
.ci-map-link:hover { background: rgba(201,151,58,0.06); }
.ci-map-link svg { width: 14px; height: 14px; stroke: var(--gold); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--primary); padding: 4rem clamp(1.5rem,5vw,5rem); border-top: 3px solid var(--gold); }
.ts-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.ts-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 2.5rem; flex: 1; min-width: 220px; }
.ts-divider { width: 1px; height: 70px; background: rgba(255,255,255,0.08); align-self: center; }
.ts-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(201,151,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ts-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.ts-text h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; color: white; margin-bottom: 5px; }
.ts-text p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 180px; }
@media(max-width: 768px) { .ts-divider { display: none; } .ts-item { padding: 1.25rem 1.5rem; min-width: 50%; } }

/* ── SERVICES INQUIRY ── */
.services-inquiry-section { background: var(--cream); }
.si-inner { max-width: 1200px; margin: 0 auto; }
.si-header { max-width: 560px; margin-bottom: 3rem; }
.si-sub { color: #777; font-size: 0.92rem; line-height: 1.75; margin-top: 0.75rem; }
.si-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media(max-width: 860px) { .si-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 480px) { .si-grid { grid-template-columns: 1fr; } }
.si-card {
  position: relative; background: white; border: 1.5px solid rgba(201,151,58,0.12);
  border-radius: 6px; padding: 2rem 1.75rem 1.75rem;
  text-align: left; cursor: pointer;
  transition: all 0.38s ease;
  overflow: hidden;
}
.si-card::before { content: ''; position: absolute; inset: 0; background: var(--primary); transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.77,0,0.175,1); z-index: 0; }
.si-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,27,42,0.15); }
.si-card:hover::before { transform: translateY(0); }
.si-card-num { position: absolute; top: 1.25rem; right: 1.5rem; font-family: "Cormorant Garamond",serif; font-size: 2.2rem; font-weight: 700; color: rgba(201,151,58,0.12); line-height: 1; z-index: 1; transition: color 0.35s; }
.si-card:hover .si-card-num { color: rgba(201,151,58,0.2); }
.si-card svg { width: 36px; height: 36px; stroke: var(--gold); margin-bottom: 1rem; position: relative; z-index: 1; transition: stroke 0.35s; }
.si-card h5 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; position: relative; z-index: 1; transition: color 0.35s; }
.si-card p { font-size: 0.8rem; color: #888; line-height: 1.65; position: relative; z-index: 1; transition: color 0.35s; }
.si-arrow { position: absolute; bottom: 1.5rem; right: 1.75rem; font-size: 1.2rem; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all 0.35s; z-index: 1; }
.si-card:hover svg { stroke: var(--gold-light); }
.si-card:hover h5 { color: white; }
.si-card:hover p { color: rgba(255,255,255,0.55); }
.si-card:hover .si-arrow { opacity: 1; transform: translateX(0); }
.si-card.selected { border-color: var(--gold); background: rgba(201,151,58,0.04); }

/* ── TESTIMONIAL STRIP ── */
.testimonial-strip { background: var(--primary); padding: 5rem clamp(1.5rem,5vw,5rem); }
.tstrip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media(max-width: 768px) { .tstrip-inner { grid-template-columns: 1fr; gap: 3rem; } }
.tstrip-divider { display: none; }
@media(min-width: 769px) { .tstrip-divider { display: block; width: 1px; background: rgba(255,255,255,0.08); } }
.tstrip-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1.25rem; }
.tstrip-quote blockquote { font-family: "Cormorant Garamond",serif; font-size: clamp(1.1rem,1.8vw,1.4rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.25rem; }
.tstrip-quote cite { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── FAQ ── */
.faq-section { background: white; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-header { margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(0,0,0,0.07); border-radius: 6px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 1.75rem; background: white; border: none; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--primary); text-align: left; transition: background 0.3s; font-family: "DM Sans",sans-serif; }
.faq-q:hover { background: #FFFDF9; }
.faq-q[aria-expanded="true"] { background: rgba(201,151,58,0.04); color: var(--gold); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--gold); transition: transform 0.35s ease; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 1.75rem 1.5rem; font-size: 0.88rem; color: #666; line-height: 1.82; }

/* ── CTA ── */
.cta-section { background: var(--cream); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-sub { color: #777; line-height: 1.78; margin-bottom: 2.5rem; font-size: 0.95rem; margin-top: 1rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--dark-bg); color: rgba(255,255,255,0.5); padding: 5rem clamp(1.5rem,5vw,5rem) 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.38); max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 0.7rem; }
.footer-contact-item span:first-child { color: var(--gold); margin-top: 1px; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem; flex-wrap: wrap; gap: 0.5rem; }

/* ── FLOAT GROUP ── */
.float-group { position:fixed;bottom:1.75rem;right:1.75rem;z-index:90;display:flex;flex-direction:column;align-items:center;gap:0.75rem; }
.wa-float { width:54px;height:54px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 25px rgba(37,211,102,0.4);transition:all 0.35s;text-decoration:none; }
.wa-float:hover { background:#20bc5a;transform:scale(1.1) translateY(-2px);box-shadow:0 14px 35px rgba(37,211,102,0.5); }
.wa-float svg { width:28px;height:28px; }
.scroll-top-btn { width:54px;height:54px;border-radius:50%;background:var(--primary);border:2px solid var(--gold);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.35s;box-shadow:0 8px 25px rgba(13,27,42,0.4);opacity:0;transform:translateY(16px);pointer-events:none; }
.scroll-top-btn.visible { opacity:1;transform:translateY(0);pointer-events:all; }
.scroll-top-btn:hover { background:var(--gold);border-color:var(--gold);transform:translateY(-3px) scale(1.08); }
.scroll-top-btn svg { width:20px;height:20px;stroke:var(--gold);transition:stroke 0.3s; }
.scroll-top-btn:hover svg { stroke:white; }