/* ════════════════════════════════════════════════
   BROBARBER — LUXURY SHOWCASE WEBSITE
   Design: Dark luxury theme with gold accents
   ════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --gold:        #D4AF37;
  --gold-light:  #E8CC6A;
  --gold-dark:   #A88B25;
  --black:       #080808;
  --dark:        #0E0E0E;
  --dark-2:      #141414;
  --dark-3:      #1C1C1C;
  --dark-4:      #242424;
  --dark-5:      #2E2E2E;
  --white:       #FFFFFF;
  --off-white:   #F0EDE6;
  --muted:       #888888;
  --muted-light: #AAAAAA;
  --text:        #E8E4DC;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-display:'Bebas Neue', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --trans:       all 0.35s cubic-bezier(0.4,0,0.2,1);
  --trans-fast:  all 0.2s ease;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
section, footer { overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }
.section-padding { padding: 100px 0; }

/* ── CONTAINER ───────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--trans-fast);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 44px; font-size: 1rem; }

/* ══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
}
.logo-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #d2da16;
  text-transform: none;
  margin-top: 4px;
  line-height: 1;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted-light);
  border-radius: 6px;
  transition: var(--trans-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.6) 0%,
    rgba(8, 8, 8, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  max-width: 680px;
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.badge-line { flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-light);
}
.hero-title-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(232,228,220,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -1px;
  left: -6px;
  width: 6px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { left: -6px; opacity: 1; }
  100% { left: 60px; opacity: 0; }
}

/* ══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--black);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; height: 560px; }
.about-img-primary {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-primary img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: var(--shadow);
  transition-delay: var(--delay, 0s);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
}
.float-num { font-size: 1.3rem; line-height: 1; }
.float-label { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.about-text { color: var(--muted-light); margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid var(--dark-5);
  transition: var(--trans);
}
.pillar:hover { border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow-gold); }
.pillar-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.pillar h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pillar p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.services-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
}
.services .container { position: relative; z-index: 1; }
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--dark-3);
  border-radius: 50px;
  border: 1px solid var(--dark-5);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: var(--trans);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.services-panels { min-height: 440px; }
.services-panel { display: none; }
.services-panel.active { display: block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius);
  transition: var(--trans);
  animation-delay: calc(var(--i) * 0.08s);
}
.service-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: var(--dark-4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), var(--shadow-gold);
}
.svc-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border-radius: 10px;
}
.svc-info { flex: 1; }
.svc-info h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.svc-info p { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.svc-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   BRANCHES
═══════════════════════════════════════════════ */
.branches { background: var(--dark); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-5);
  transition: var(--trans);
  animation-delay: calc(var(--i) * 0.1s);
}
.branch-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), var(--shadow-gold);
}
.branch-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.branch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.branch-card:hover .branch-img-wrap img { transform: scale(1.08); }
.branch-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 60%);
}
.branch-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.branch-info { padding: 24px; }
.branch-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.branch-office-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  line-height: 1;
}
.branch-addr,
.branch-phone {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.addr-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.branch-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.branch-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  letter-spacing: 0.05em;
}
.branch-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  transition: var(--trans-fast);
  letter-spacing: 0.04em;
}
.branch-map-btn svg { width: 14px; height: 14px; }
.branch-map-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.branch-map-btn.disabled-btn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}
.coming-soon-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-4));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.coming-soon-icon {
  width: 64px;
  height: 64px;
  color: rgba(212, 175, 55, 0.4);
  animation: pulseComingSoon 3s ease-in-out infinite alternate;
}
@keyframes pulseComingSoon {
  from { transform: scale(1) rotate(0deg); opacity: 0.5; }
  to { transform: scale(1.08) rotate(5deg); opacity: 0.8; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials { background: var(--black); }
.testimonials-wrapper { max-width: 860px; margin: 0 auto; }
.testimonials-track {
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  display: none;
  padding: 48px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-5);
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.testimonial-card.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testi-stars { font-size: 1.6rem; color: var(--gold); letter-spacing: 4px; margin-bottom: 24px; }
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 32px;
}
.testi-author { display: flex; align-items: center; gap: 16px; justify-content: center; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-name { font-weight: 600; color: var(--white); }
.testi-branch { font-size: 0.8rem; color: var(--muted); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--dark-5);
  background: var(--dark-3);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-5);
  transition: var(--trans-fast);
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-text { color: var(--muted-light); margin-bottom: 40px; }

/* ══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-item h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-item a { color: var(--white); font-size: 1.05rem; transition: var(--trans-fast); }
.contact-item a:hover { color: var(--gold); }
.contact-item p { color: var(--muted-light); font-size: 0.95rem; line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--dark-5);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--trans-fast);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

/* ══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: var(--black); border-top: 1px solid var(--dark-3); }
.footer-top { padding: 72px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.footer-logo-main {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.footer-logo-sub {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #d2da16;
  text-transform: none;
  margin-top: 4px;
  line-height: 1;
}
.footer-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 0.9rem; color: var(--muted-light); transition: var(--trans-fast); }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: var(--trans-fast); }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--dark-3);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--trans);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--dark-5);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up     { transform: translateY(32px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; order: -1; }
  .contact-grid { gap: 40px; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .nav-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 40px;
    gap: 16px;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .nav-cta { font-size: 1rem; padding: 14px 36px; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-content { max-width: 100%; padding: 100px 24px 80px; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 12px 20px; }
  .hero-scroll { display: none; }
  .branches-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-tabs {
    width: 100%;
    border-radius: var(--radius);
    flex-direction: column;
  }
  .tab-btn { border-radius: var(--radius); text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
  .about-images { height: 280px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .logo-img { height: 36px; }
  .logo-main { font-size: 1.15rem; }
  .logo-sub { font-size: 0.58rem; }
  .nav-logo { gap: 8px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .branches-grid { grid-template-columns: 1fr; }
  .services-tabs { gap: 4px; }
}
