/* ==========================================================
   Fixxpresso — style.css
   Production stylesheet — do not edit debug comments
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ==========================================================
   CSS VARIABLES
   ========================================================== */
:root {
  --espresso:   #1A0E08;
  --dark-brown: #2A1810;
  --roast:      #3D1A00;
  --coffee:     #5C3A1E;
  --caramel:    #C97B2A;
  --gold:       #D4A24C;
  --light-gold: #E8C278;
  --cream:      #F5EAD8;
  --foam:       #FDF8F0;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-body:  #4A4A4A;
  --text-muted: #8A8070;
  --border:     rgba(201,123,42,0.15);
  --glass:      rgba(26,14,8,0.88);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(201,123,42,0.08);
  --shadow-lg:  0 16px 48px rgba(201,123,42,0.12);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(.22,1,.36,1);
  --transition: all 0.4s var(--ease);
}

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

/* FIX: both html and body prevent horizontal scroll */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* FIX: ensure body never exceeds viewport width */
  max-width: 100vw;
}
a                       { text-decoration: none; color: inherit; }
img                     { max-width: 100%; display: block; }
ul, ol                  { list-style: none; }
button                  { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ==========================================================
   GLOBAL UTILITIES
   ========================================================== */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section     { padding: 80px 0; }
.text-center { text-align: center; }

.section-dark  { background: var(--espresso); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-foam  { background: var(--foam); }
.section-gold  { background: var(--coffee); }

.section-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px; color: var(--text-muted);
  max-width: 560px; line-height: 1.6;
  margin-bottom: 40px;
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.10s; }
.fade-up.d2 { transition-delay: 0.20s; }
.fade-up.d3 { transition-delay: 0.30s; }
.fade-up.d4 { transition-delay: 0.40s; }
.fade-up.d5 { transition-delay: 0.50s; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn-primary,
.btn-secondary,
.btn-dark-outline,
.btn-small {
  display: inline-flex; align-items: center;
  border-radius: 10px; font-weight: 600;
  transition: var(--transition);
}
.btn-primary {
  gap: 8px; background: var(--caramel); color: var(--white);
  padding: 14px 28px; font-size: 14px;
  box-shadow: 0 2px 16px rgba(201,123,42,0.35);
}
.btn-primary:hover {
  background: var(--gold); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,123,42,0.5);
}
.btn-secondary {
  gap: 8px; background: transparent; color: var(--cream);
  padding: 14px 28px; font-size: 14px;
  border: 1.5px solid rgba(245,234,216,0.3);
}
.btn-secondary:hover { border-color: var(--caramel); color: var(--caramel); }
.btn-dark-outline {
  gap: 8px; background: transparent; color: var(--text-dark);
  padding: 14px 28px; font-size: 14px;
  border: 1.5px solid var(--border);
}
.btn-dark-outline:hover { border-color: var(--caramel); color: var(--caramel); }
.btn-small {
  gap: 6px; background: var(--caramel); color: var(--white);
  padding: 10px 20px; border-radius: 8px; font-size: 13px;
  box-shadow: 0 2px 12px rgba(201,123,42,0.3);
}
.btn-small:hover { background: var(--gold); transform: translateY(-1px); }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-dark); padding: 13px 24px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.btn-google:hover { border-color: var(--caramel); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-google-rating { color: var(--caramel); font-weight: 700; }

/* Mobile button sizing */
@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary,
  .btn-dark-outline { padding: 12px 20px; font-size: 13px; }
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: var(--transition);
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: 12px 0;
  box-shadow: 0 1px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--cream); letter-spacing: -0.5px;
  display: flex; align-items: center;
}
.nav-logo img  { height: 42px; width: auto; }
.nav-logo span { color: var(--caramel); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--cream); font-size: 14px; font-weight: 500;
  opacity: 0.8; letter-spacing: 0.3px;
  transition: opacity 0.3s, color 0.3s;
  background: none; border: none; padding: 0;
}
.nav-links a:hover  { opacity: 1; color: var(--gold); }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--caramel) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 13px !important;
  opacity: 1 !important; letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(201,123,42,0.35);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
  border: none !important;
}
.nav-links a.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; opacity: 1 !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,123,42,0.5); }
.nav-links a.nav-cta.active { background: var(--caramel) !important; color: var(--white) !important; opacity: 1 !important; }
.mobile-toggle     { display: none; color: var(--cream); padding: 4px; }
.mobile-toggle svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--espresso); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); font-size: 20px; font-weight: 500; transition: color 0.3s; background: none; border: none; padding: 0; opacity: 1; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.btn-primary { background: var(--caramel); color: var(--white); padding: 14px 28px; border-radius: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 2px 16px rgba(201,123,42,0.35); }
.mobile-menu a.btn-primary:hover { background: var(--gold); color: var(--white); }
.mobile-close { position: absolute; top: 20px; right: 24px; color: var(--cream); }
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .mobile-toggle{ display: block; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--espresso);
  overflow: visible;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,14,8,0.92) 0%, rgba(26,14,8,0.7) 50%, rgba(26,14,8,0.5) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,123,42,0.06) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 32px; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}

/* hero left content — higher z-index so dropdown floats above booking card */
.hero-inner > div:first-child {
  position: relative;
  z-index: 5;
}
.hero-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--caramel); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--cream);
  line-height: 1.08; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--caramel); }
.hero-sub {
  font-size: 16px; color: rgba(245,234,216,0.7);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 480px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

/* Quick Booking Card */
.booking-card {
  background: linear-gradient(160deg, rgba(45,26,15,0.96) 0%, rgba(26,14,8,0.98) 100%);
  border: 1px solid rgba(201,123,42,0.28);
  border-radius: 18px; padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.booking-card h3 { color: var(--cream); font-size: 17px; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.booking-card .bc-sub { color: rgba(245,234,216,0.55); font-size: 13px; margin-bottom: 22px; }
.bc-input,
.bc-select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid rgba(201,123,42,0.18);
  color: var(--text-dark); font-size: 14px;
  margin-bottom: 12px; outline: none; transition: all 0.3s;
}
.bc-input  { background: rgba(253,248,240,0.95); }
.bc-select {
  appearance: none; cursor: pointer;
  background: rgba(253,248,240,0.95)
    url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C97B2A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 16px center;
}
.bc-input:focus,
.bc-select:focus { border-color: var(--caramel); background-color: #fff; box-shadow: 0 0 0 3px rgba(201,123,42,0.12); }
.bc-input::placeholder { color: #9a8b7a; }
.bc-btn {
  width: 100%; padding: 15px; border-radius: 10px;
  background: var(--caramel); color: var(--white);
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: var(--transition); margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(201,123,42,0.4);
}
.bc-btn:hover { background: var(--gold); transform: translateY(-2px); }
.bc-note { font-size: 11px; color: rgba(245,234,216,0.45); text-align: center; }

/* FIX: hero responsive — single column, centered, equal buttons */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .hero-tag { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; width: 100%; }
  .hero-btns .btn-primary { flex: 1; max-width: 220px; justify-content: center; }
  .hero-btns > .branch-trigger-wrap { flex: 1; max-width: 220px; }
  .hero-btns > .branch-trigger-wrap > a { width: 100%; justify-content: center; }
  .booking-card { max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-inner { padding: 0 20px; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns > .branch-trigger-wrap { flex: none; width: 100%; max-width: 100%; }
  .hero-btns .btn-primary { justify-content: center; }
  .hero-btns > .branch-trigger-wrap { display: flex; }
  .hero-btns > .branch-trigger-wrap > a { width: 100%; justify-content: center; }
}

/* ==========================================================
   TRUST STRIP
   ========================================================== */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; }
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--text-dark); white-space: nowrap; }
.trust-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,123,42,0.1); display: flex; align-items: center; justify-content: center; color: var(--caramel); flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; gap: 20px; }
  .trust-inner::-webkit-scrollbar { display: none; }
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  text-align: left; transition: var(--transition);
  cursor: pointer; isolation: isolate;
}
.service-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(165deg, #2a1810 0%, #1a0e08 100%); transform: translateY(101%); transition: transform 0.5s var(--ease); }
.service-card::after  { content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--caramel), var(--gold)); transition: width 0.5s var(--ease); }
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 24px 60px rgba(26,14,8,0.35); }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover::after  { width: 100%; }
.service-num { position: absolute; top: 18px; right: 22px; font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; line-height: 1; color: var(--caramel); opacity: 0.12; transition: var(--transition); pointer-events: none; }
.service-card:hover .service-num { opacity: 0.25; color: var(--gold); }
.service-card-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(201,123,42,0.1); display: flex; align-items: center; justify-content: center; color: var(--caramel); margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-card-icon { background: var(--caramel); color: var(--white); transform: scale(1.05) rotate(-4deg); }
.service-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); transition: color 0.4s; }
.service-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 22px; transition: color 0.4s; }
.service-card:hover h4 { color: var(--cream); }
.service-card:hover p  { color: rgba(245,234,216,0.65); }
.service-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); transition: border-color 0.4s; }
.service-card:hover .service-card-foot { border-top-color: rgba(255,255,255,0.1); }
.service-card .price { font-size: 13px; color: var(--caramel); font-weight: 600; transition: color 0.4s; }
.service-card:hover .price { color: var(--gold); }
.card-arrow { width: 34px; height: 34px; border-radius: 50%; background: rgba(201,123,42,0.1); display: flex; align-items: center; justify-content: center; color: var(--caramel); transition: var(--transition); }
.card-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card:hover .card-arrow { background: var(--caramel); color: var(--white); }
.service-card:hover .card-arrow svg { transform: translateX(2px); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* Services page extras */
.spectrum-grid { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; }
.spectrum-item { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 110px; text-align: center; }
.spectrum-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(201,123,42,0.08); border: 1px solid rgba(201,123,42,0.12); display: flex; align-items: center; justify-content: center; color: var(--caramel); transition: var(--transition); }
.spectrum-item:hover .spectrum-icon { background: var(--caramel); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201,123,42,0.3); }
.spectrum-item span               { font-size: 12px; color: var(--text-muted); line-height: 1.3; }
.section-dark .spectrum-item span { color: rgba(245,234,216,0.6); }
.service-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .service-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-cat-grid { grid-template-columns: 1fr; } }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cat-card { position: relative; border-radius: 16px; overflow: hidden; min-height: 400px; cursor: pointer; transition: var(--transition); background: var(--dark-brown); }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.cat-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,14,8,0.95) 0%, rgba(26,14,8,0.6) 40%, rgba(26,14,8,0.25) 100%); }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.cat-card-tag  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cat-card h3   { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cream); margin-bottom: 14px; font-weight: 700; }
.cat-card-items{ display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.cat-item { font-size: 11px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(245,234,216,0.85); padding: 5px 12px; border-radius: 20px; }
.brands-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-pill { padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border); font-size: 14px; font-weight: 500; color: var(--text-body); transition: var(--transition); background: var(--white); }
.brand-pill:hover { border-color: var(--caramel); color: var(--caramel); background: rgba(201,123,42,0.04); }
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.loc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); text-align: center; }
.loc-card:hover { border-color: var(--caramel); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.loc-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,123,42,0.1); display: flex; align-items: center; justify-content: center; color: var(--caramel); margin: 0 auto 14px; }
.loc-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.loc-card .loc-addr { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0 auto 12px; max-width: 280px; }
.loc-detail { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.loc-detail svg { width: 14px; height: 14px; color: var(--caramel); }
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 340px; }
  .loc-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   BEFORE / AFTER
   ========================================================== */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ba-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px rgba(26,14,8,0.06); transition: var(--transition); }
.ba-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(26,14,8,0.16); }
.ba-compare { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: ew-resize; user-select: none; touch-action: none; background: #2a1810; }
.ba-compare img     { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before-wrap     { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 2px solid rgba(255,255,255,0.85); }
.ba-before-wrap img { width: 100%; height: 100%; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 3; }
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.85); }
.ba-handle-grip { width: 42px; height: 42px; border-radius: 50%; background: var(--caramel); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.35); border: 2px solid #fff; }
.ba-caption  { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 20px 18px; flex-wrap: wrap; }
.ba-problem  { font-size: 13px; color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(192,57,43,0.5); }
.ba-solution { font-size: 13px; color: var(--text-dark); font-weight: 600; }
.ba-arrow-i  { color: var(--caramel); flex-shrink: 0; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-top   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.testimonial-stars { display: flex; gap: 2px; }
.gverified { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--foam); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px; transition: var(--transition); }
.gverified:hover { border-color: var(--caramel); color: var(--text-dark); }
.testimonial-card blockquote { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--caramel); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; font-size: 14px; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.stat-item { text-align: center; padding: 32px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--caramel); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); }
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-section { background: var(--foam); }
.why-split   { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.why-media { position: relative; }
.why-photo { position: relative; z-index: 2; border-radius: 22px; overflow: hidden; box-shadow: 0 26px 60px rgba(26,14,8,0.22); aspect-ratio: 1/1; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-shape   { position: absolute; z-index: 1; border-radius: 24px; }
.why-shape-1 { width: 60%; height: 55%; top: -26px; left: -26px; background: var(--caramel); opacity: 0.9; }
.why-shape-2 { width: 55%; height: 50%; bottom: -26px; right: -26px; background: var(--espresso); }
.why-badge { position: absolute; z-index: 3; right: -18px; bottom: 48px; background: #fff; border-radius: 16px; padding: 16px 22px; display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 40px rgba(26,14,8,0.2); }
.why-badge-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--caramel); line-height: 1; }
.why-badge-txt { font-size: 12px; color: var(--text-muted); line-height: 1.3; font-weight: 500; }
.why-heading { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.4vw,38px); font-weight: 700; line-height: 1.15; color: var(--text-dark); margin: 6px 0 16px; }
.why-intro   { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; margin-bottom: 36px; }
.why-feat  { display: flex; gap: 14px; align-items: flex-start; }
.why-feat-ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: rgba(201,123,42,0.12); display: flex; align-items: center; justify-content: center; color: var(--caramel); transition: var(--transition); }
.why-feat:hover .why-feat-ic { background: var(--caramel); color: #fff; transform: translateY(-3px); }
.why-feat h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.why-feat p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.why-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.why-cta-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--text-dark); transition: color 0.3s; }
.why-cta-phone svg   { color: var(--caramel); }
.why-cta-phone:hover { color: var(--caramel); }
@media (max-width: 900px) { .why-split { grid-template-columns: 1fr; gap: 56px; } .why-media { max-width: 460px; margin: 0 auto; width: 100%; } }
@media (max-width: 520px) { .why-feats { grid-template-columns: 1fr; gap: 22px; } .why-badge { right: 12px; padding: 12px 16px; } .why-badge-num { font-size: 30px; } }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.how-step { text-align: left; }
.how-num  { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.how-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--caramel); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.how-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.how-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.how-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 768px) { .how-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .how-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list          { max-width: 720px; margin: 0 auto; }
.faq-list.faq-full { max-width: 100%; }
.faq-item          { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--text-dark); text-align: left; transition: color 0.3s;
}
.faq-q:hover { color: var(--caramel); }
.faq-icon { color: var(--caramel); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-dark .faq-q   { color: var(--cream); }
.faq-dark .faq-a p { color: var(--text-muted); }
.faq-dark .faq-item{ border-color: rgba(255,255,255,0.08); }

/* FIX: faq-2col responsive — single column + overflow visible for dropdown */
.faq-2col  { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; overflow: visible; }
/* faq-left stacks above faq-right so dropdown is never behind the cards */
.faq-left  { overflow: visible; position: relative; z-index: 10; }
.faq-right { position: relative; z-index: 1; }
.faq-left .faq-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--cream); margin: 6px 0 14px; line-height: 1.15; }
.faq-subtext { font-size: 14px; color: rgba(245,234,216,0.6); line-height: 1.7; margin-bottom: 24px; }
.faq-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 24px; box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.faq-image img { width: 100%; height: 100%; object-fit: cover; }
.faq-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; overflow: visible; }
.faq-whatsapp { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold); transition: color 0.3s; }
.faq-whatsapp:hover { color: var(--caramel); }
.faq-cards .faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,123,42,0.14); border-radius: 12px; margin-bottom: 12px; padding: 2px 22px; transition: background 0.3s, border-color 0.3s; }
.faq-cards .faq-item:hover { border-color: rgba(201,123,42,0.4); background: rgba(255,255,255,0.05); }
.faq-cards .faq-item.open  { background: rgba(201,123,42,0.09); border-color: rgba(201,123,42,0.5); }
.faq-cards .faq-q  { padding: 18px 0; }
.faq-cards .faq-a p{ padding-bottom: 18px; }

@media (max-width: 860px) {
  .faq-2col  { grid-template-columns: 1fr; gap: 36px; }
  .faq-image { max-width: 420px; }
}

/* ==========================================================
   CTA SECTION
   ========================================================== */
.cta-section {
  background: linear-gradient(rgba(26,14,8,0.90), rgba(26,14,8,0.93)),
              url('../images/cta-bg.webp') center/cover no-repeat;
  text-align: center; padding: 80px 32px;
  position: relative; overflow: visible;
}
.cta-section::before,
.cta-section::after { content: ''; position: absolute; pointer-events: none; z-index: 0; }
.cta-section::before { top: -50%; left: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(201,123,42,0.06) 0%, transparent 70%); }
.cta-section::after  { bottom: -50%; right: -20%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(201,123,42,0.04) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-section .section-tag { color: var(--gold); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,44px); color: var(--cream); margin-bottom: 16px; line-height: 1.15; }
.cta-section p  { color: rgba(245,234,216,0.65); font-size: 15px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-btns   { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; overflow: visible; }
.cta-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.cta-badge  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.cta-badge svg { width: 14px; height: 14px; color: var(--caramel); }

/* FIX: cta responsive — equal button widths on mobile */
@media (max-width: 600px) {
  .cta-section { padding: 60px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  /* Make both the plain btn AND the branch-trigger-wrap the same width */
  .cta-btns > .btn-primary,
  .cta-btns > .branch-trigger-wrap {
    width: 100%;
    max-width: 320px;
    display: flex;
  }
  .cta-btns > .btn-primary { justify-content: center; }
  .cta-btns > .branch-trigger-wrap > a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--espresso); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0 24px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.footer-logo img { height: 40px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(201,123,42,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: var(--transition); }
.footer-socials a:hover { background: var(--caramel); color: var(--white); transform: translateY(-2px); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 40px; }
.footer-cols    { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h5      { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 18px; }
.footer-addr    { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.footer-branch  { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gold); transition: color 0.3s; }
.footer-branch:hover { color: var(--caramel); }
.footer-links li      { margin-bottom: 11px; }
.footer-links a       { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p  { font-size: 12px; color: var(--text-muted); }
.footer-credit    { font-size: 12px; color: var(--text-muted); }
.footer-credit a  { color: var(--gold); font-weight: 600; transition: color 0.3s; }
.footer-credit a:hover { color: var(--caramel); }
.footer-legal a   { font-size: 12px; color: var(--text-muted); margin-left: 20px; transition: color 0.3s; }
.footer-legal a:hover  { color: var(--gold); }
@media (max-width: 768px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } .footer-legal a { margin-left: 0; margin-right: 16px; } }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--espresso); overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-bg.webp'); background-size: cover; background-position: center; }
.about-hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,14,8,0.92) 0%, rgba(26,14,8,0.7) 50%, rgba(26,14,8,0.5) 100%); }
.about-hero-bg::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,123,42,0.06) 0%, transparent 60%); }
.about-hero-inner { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center; min-height: 100vh; text-align: center; padding: 0 32px; }
.about-hero-content { padding-top: 80px; width: 100%; max-width: 860px; display: flex; flex-direction: column; align-items: center; }
.about-hero-tag { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--caramel); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.about-hero-tag::before,
.about-hero-tag::after { content: ''; width: 24px; height: 1px; background: var(--caramel); }
.about-hero h1    { font-family: 'Playfair Display', serif; font-size: clamp(38px,5.5vw,68px); font-weight: 700; color: var(--cream); line-height: 1.08; margin-bottom: 20px; }
.about-hero h1 em { font-style: normal; color: var(--caramel); }
.about-hero-sub   { font-size: 16px; color: rgba(245,234,216,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 560px; font-weight: 300; }
.about-hero-btns  { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; justify-content: center; }
/* FIX: about hero needs overflow visible for dropdowns */
.about-hero { overflow: visible; }
.about-hero-bg { overflow: hidden; }

.about-hero-stats { display: grid; grid-template-columns: repeat(4,1fr); width: 100%; max-width: 660px; background: rgba(26,14,8,0.7); backdrop-filter: blur(16px); border: 1px solid rgba(201,123,42,0.25); border-radius: 16px; overflow: hidden; margin: 0 auto; }
.about-hero-stat { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(201,123,42,0.18); position: relative; }
.about-hero-stat::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 28px; height: 2px; background: var(--caramel); }
.about-hero-stat:last-child { border-right: none; }
.about-hero-stat-num   { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--caramel); display: block; line-height: 1; }
.about-hero-stat-label { font-size: 11px; color: rgba(245,234,216,0.5); margin-top: 6px; line-height: 1.3; }
@media (max-width: 700px) {
  .about-hero-stats { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .about-hero-stat:nth-child(2) { border-right: none; }
  .about-hero-stat:nth-child(1),
  .about-hero-stat:nth-child(2) { border-bottom: 1px solid rgba(201,123,42,0.18); }
}

.about-story-section { background: var(--foam); padding: 90px 0; }
.about-story-split   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-images  { position: relative; }
.about-story-img-main { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 60px rgba(26,14,8,0.22); position: relative; z-index: 2; }
.about-story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-story-img-float { position: absolute; bottom: -32px; right: -32px; z-index: 3; width: 55%; border-radius: 16px; overflow: hidden; border: 4px solid var(--foam); box-shadow: 0 16px 40px rgba(26,14,8,0.25); aspect-ratio: 4/3; }
.about-story-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-story-shape { position: absolute; top: -24px; left: -24px; z-index: 1; width: 55%; height: 50%; background: var(--caramel); border-radius: 18px; opacity: 0.85; }
.about-story-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px; }
.about-story-content p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.about-story-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-story-val { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.about-story-val:hover { border-color: var(--caramel); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.about-story-val-ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(201,123,42,0.1); display: flex; align-items: center; justify-content: center; color: var(--caramel); }
.about-story-val h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.about-story-val p  { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin: 0; }
@media (max-width: 900px) { .about-story-split { grid-template-columns: 1fr; gap: 60px; } .about-story-images { max-width: 460px; margin: 0 auto; } .about-story-img-float { right: -16px; bottom: -16px; } }
@media (max-width: 480px) { .about-story-values { grid-template-columns: 1fr; } }

.about-mission-section { position: relative; overflow: hidden; }
.about-mission-section::before { content: ''; position: absolute; top: -60%; left: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(201,123,42,0.07) 0%, transparent 70%); pointer-events: none; }
.about-mission-quote { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,44px); font-weight: 700; color: var(--cream); line-height: 1.2; text-align: center; max-width: 820px; margin: 0 auto 16px; }
.about-mission-quote em { font-style: italic; color: var(--caramel); }
.about-mission-sub { text-align: center; font-size: 15px; color: rgba(245,234,216,0.55); max-width: 560px; margin: 0 auto 56px; line-height: 1.7; }
.about-mission-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.about-mission-pillar { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,123,42,0.14); border-radius: 16px; padding: 32px 24px; text-align: center; transition: var(--transition); }
.about-mission-pillar:hover { background: rgba(201,123,42,0.1); border-color: rgba(201,123,42,0.4); transform: translateY(-6px); }
.about-mission-pillar-ic { width: 56px; height: 56px; border-radius: 14px; background: rgba(201,123,42,0.15); display: flex; align-items: center; justify-content: center; color: var(--caramel); margin: 0 auto 18px; transition: var(--transition); }
.about-mission-pillar:hover .about-mission-pillar-ic { background: var(--caramel); color: var(--white); }
.about-mission-pillar h4 { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.about-mission-pillar p  { font-size: 13px; color: rgba(245,234,216,0.55); line-height: 1.6; }
@media (max-width: 800px) { .about-mission-pillars { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .about-mission-pillars { grid-template-columns: 1fr; } }

.about-timeline-wrap  { position: relative; max-width: 900px; margin: 0 auto; }
.about-timeline-line  { position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--caramel), transparent); }
.about-timeline-items { display: flex; flex-direction: column; gap: 48px; }
.about-timeline-item  { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; }
.about-tl-content { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.about-tl-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-tl-year      { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--caramel); letter-spacing: 1px; margin-bottom: 6px; }
.about-tl-content h4{ font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.about-tl-content p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.about-tl-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--caramel); margin: 0 auto; box-shadow: 0 0 0 5px rgba(201,123,42,0.15); z-index: 2; position: relative; }
@media (max-width: 680px) { .about-timeline-line { left: 20px; } .about-timeline-item { grid-template-columns: 40px 1fr; } .about-timeline-item .about-tl-content { grid-column: 2; } .about-tl-empty { display: none; } .about-tl-dot { margin: 0; } }

.about-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-team-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: var(--transition); }
.about-team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--caramel); }
.about-team-card-img  { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.about-team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.about-team-card:hover .about-team-card-img img { transform: scale(1.05); }
.about-team-card-info { padding: 22px 22px 24px; }
.about-team-card-name { font-size: 17px; font-weight: 600; margin-bottom: 3px; }
.about-team-card-role { font-size: 12px; color: var(--caramel); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
.about-team-card-bio  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 900px) { .about-team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .about-team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-hero { position: relative; min-height: 42vh; display: flex; align-items: center; justify-content: center; background: var(--espresso); overflow: hidden; padding-top: 80px; text-align: center; }
.contact-hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-bg.webp'); background-size: cover; background-position: center; }
.contact-hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,14,8,0.92) 0%, rgba(61,26,0,0.82) 50%, rgba(26,14,8,0.90) 100%); }
.contact-hero-bg::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(201,123,42,0.09) 0%, transparent 65%); }
.contact-hero-grain { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.contact-hero-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 60px 32px 80px; }
.contact-hero-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,5vw,52px); font-weight: 700; color: var(--cream); line-height: 1.1; margin: 10px 0 16px; }
.contact-hero-inner p  { font-size: 15px; color: rgba(245,234,216,0.65); line-height: 1.75; font-weight: 300; }
.contact-section { background: var(--cream); padding: 0 0 80px; }
.contact-wrap    { max-width: 960px; margin: -52px auto 0; padding: 0 24px; position: relative; z-index: 3; }
.contact-card { display: grid; grid-template-columns: 340px 1fr; background: var(--white); border-radius: 18px; box-shadow: 0 20px 60px rgba(26,14,8,0.14); overflow: hidden; }
.contact-info { background: var(--espresso); padding: 40px 34px; display: flex; flex-direction: column; }
.contact-info h2      { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.contact-info-sub     { font-size: 13px; color: rgba(245,234,216,0.52); line-height: 1.65; margin-bottom: 30px; }
.contact-detail-item  { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon  { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: rgba(201,123,42,0.18); display: flex; align-items: center; justify-content: center; color: var(--caramel); transition: all 0.35s; }
.contact-detail-item:hover .contact-detail-icon { background: var(--caramel); color: var(--white); }
.contact-detail-item h4   { font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.contact-detail-item p    { font-size: 12px; color: rgba(245,234,216,0.55); line-height: 1.6; }
.contact-detail-item p a  { color: rgba(245,234,216,0.55); transition: color 0.3s; }
.contact-detail-item p a:hover { color: var(--gold); }
.contact-social-block { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-social-label { font-size: 11px; color: rgba(245,234,216,0.4); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 12px; }
.contact-socials { display: flex; gap: 8px; }
.contact-socials a { width: 34px; height: 34px; border-radius: 8px; background: rgba(201,123,42,0.14); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all 0.3s; }
.contact-socials a:hover { background: var(--caramel); color: var(--white); transform: translateY(-2px); }
.contact-form-wrap    { padding: 40px; background: var(--white); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 5px; }
.cf-full  { margin-bottom: 14px; }
.cf-group label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.4px; text-transform: uppercase; }
.cf-input,
.cf-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(201,123,42,0.15); border-radius: 9px; font-size: 13px; color: var(--text-dark); background: var(--foam); outline: none; transition: all 0.3s; font-family: 'Outfit', sans-serif; }
.cf-textarea { resize: vertical; line-height: 1.6; min-height: 100px; }
.cf-input:focus,
.cf-textarea:focus { border-color: var(--caramel); background: var(--white); box-shadow: 0 0 0 3px rgba(201,123,42,0.10); }
.cf-input::placeholder,
.cf-textarea::placeholder { color: #c5b8a8; }
.cf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; background: var(--caramel); color: var(--white); border-radius: 9px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 18px rgba(201,123,42,0.35); margin-top: 4px; font-family: 'Outfit', sans-serif; }
.cf-btn:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,123,42,0.5); }
.cf-note { font-size: 12px; text-align: center; margin-top: 10px; min-height: 16px; color: var(--caramel); }
.contact-map-wrap  { max-width: 960px; margin: 24px auto 0; padding: 0 24px; }
.contact-map-inner { width: 100%; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(26,14,8,0.10); }
.contact-map-inner iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(15%) contrast(1.02); }
@media (max-width: 820px) { .contact-card { grid-template-columns: 1fr; } .contact-info { padding: 32px 28px; } .contact-form-wrap { padding: 32px 28px; } }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } .contact-wrap, .contact-map-wrap { padding: 0 16px; } }

/* ==========================================================
   BRANCH-AWARE DROPDOWNS
   FIX: max-width prevents overflow on narrow screens
   FIX: z-index 9999 ensures always on top
   ========================================================== */
.branch-trigger-wrap { position: relative; display: inline-flex; }

.branch-dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  /* FIX: responsive width — never wider than screen */
  min-width: 220px;
  max-width: calc(100vw - 32px);
  width: max-content;
  background: #F5EAD8;
  border: 1px solid rgba(201,123,42,0.18);
  border-radius: 14px; padding: 8px;
  /* FIX: always above all sections */
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.10), 0 24px 48px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.branch-dropdown.open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}

/* Arrow tip */
.branch-dropdown::before {
  content: ''; position: absolute;
  top: -6px; left: 20px;
  width: 11px; height: 11px;
  background: #F5EAD8;
  border-left: 1px solid rgba(201,123,42,0.18);
  border-top:  1px solid rgba(201,123,42,0.18);
  transform: rotate(45deg);
}
.branch-dropdown--up { top: auto; bottom: calc(100% + 8px); }
.branch-dropdown--up::before { top: auto; bottom: -6px; transform: rotate(225deg); }

.branch-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  cursor: pointer; text-decoration: none; color: #5C3A1E;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
  /* FIX: prevent text overflow on small screens */
  white-space: nowrap;
}
.branch-option:hover           { background: rgba(193,117,30,0.06); color: #827a7a; }
.branch-option.amber-opt:hover { border-left-color: #C97B2A; }
.branch-option.blue-opt:hover  { border-left-color: #4285F4; }
.branch-option + .branch-option{ margin-top: 2px; }

.branch-badge { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.branch-badge.amber { background: rgba(201,123,42,0.12); color: #C97B2A; }
.branch-badge.blue  { background: rgba(66,133,244,0.12);  color: #4285F4; }

.branch-option-text { display: flex; flex-direction: column; gap: 3px; }
.branch-option-name { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1; }
.branch-option-sub  { font-size: 11px; color: #999; line-height: 1; letter-spacing: 0.2px; }

.branch-dropdown-divider { height: 1px; background: #fff; margin: 6px 4px; }

/* FAQ WhatsApp dropdown — body level, positioned by JS */
#faqWhatsappDropdown {
  position: absolute;
  top: auto; left: auto;
}

/* FIX: on very small screens, dropdowns that open near right edge
   should shift left so they don't overflow */
@media (max-width: 480px) {
  .branch-dropdown {
    left: auto;
    right: 0;
    min-width: 200px;
  }
  .branch-dropdown::before {
    left: auto;
    right: 20px;
  }
}