/* ===================================================
   JJ SHINY TINTS – Landing Page Stylesheet
   Brand: Dark/Black aesthetic, Red accents, Bold type
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #181818;
  --dark-border: #2a2a2a;
  --red: #e63946;
  --red-dark: #c1121f;
  --red-glow: rgba(230, 57, 70, 0.25);
  --gold: #f4a261;
  --gold-dark: #e07c3a;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-300: #cccccc;
  --gray-500: #888888;
  --gray-700: #444444;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-red: 0 4px 24px rgba(230, 57, 70, 0.3);
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

html {
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Shared ---- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-service {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 12px 24px;
  font-size: 0.9rem;
}
.btn-service:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-service--gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-service--gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 40px; /* offset for promo banner */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
  background: transparent;
}
.banner-hidden .navbar {
  top: 0;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('car_tint_hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(230, 57, 70, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.5);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-accent { color: var(--red); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.desktop-br { display: block; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-300);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
  animation: fadeInUp 0.8s ease 0.7s forwards;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

/* ===== BRAND STORY ===== */
.brand-story {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-body {
  color: var(--gray-300);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--red);
  font-style: italic;
  margin: 28px 0;
  padding-left: 20px;
  border-left: 3px solid var(--red);
}

.story-contact-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--gray-300);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-pill:hover {
  border-color: var(--red);
  color: var(--white);
}

.story-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.story-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}
.story-image-frame:hover .story-img { filter: brightness(1); }

.story-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(230, 57, 70, 0.9);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.feature-mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
}
.feature-mini-card:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.feature-icon { font-size: 1.4rem; }
.feature-text { display: flex; flex-direction: column; }
.feature-text strong { font-size: 0.95rem; color: var(--white); }
.feature-text span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== SERVICES ===== */
.services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  border-color: rgba(244, 162, 97, 0.4);
  background: linear-gradient(135deg, var(--dark-card), rgba(244, 162, 97, 0.05));
}
.service-card--featured::before { background: var(--gold); }
.service-card--featured:hover { border-color: rgba(244, 162, 97, 0.7); }

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.service-icon--gold {
  background: rgba(244, 162, 97, 0.1);
  border-color: rgba(244, 162, 97, 0.3);
  color: var(--gold);
}

.service-badge {
  background: rgba(230, 57, 70, 0.15);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.service-badge--gold {
  background: rgba(244, 162, 97, 0.15);
  color: var(--gold);
  border-color: rgba(244, 162, 97, 0.3);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.service-tagline {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card--featured .service-tagline { color: var(--gold); }

/* Film brand badge */
.film-brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.film-brand-badge--gold {
  background: rgba(244,162,97,0.06);
  border-color: rgba(244,162,97,0.2);
}
.film-brand-img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.film-brand-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #aaa;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}
.film-brand-label strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 1px;
}
.film-brand-badge--gold .film-brand-label strong {
  color: var(--gold);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--gray-300);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.service-card--featured .service-features li::before { color: var(--gold); }

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.service-price { display: flex; flex-direction: column; }
.price-from { font-size: 0.75rem; color: var(--gray-500); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

/* Expanded 9-image gallery: 3 rows of (large+2) + (3) + (large+2) */
.gallery-grid--expanded {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(3, 280px);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item--large {
  grid-row: span 1;
}

/* In the original (non-expanded) grid, large items span 2 rows */
.gallery-grid:not(.gallery-grid--expanded) .gallery-item--large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.8);
}

.gallery-item--large img { min-height: 400px; }

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.gallery-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  border-color: rgba(230, 57, 70, 0.4);
  background: linear-gradient(135deg, var(--dark-card), rgba(230, 57, 70, 0.05));
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--gray-100);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}

.testimonial-quote::before { content: open-quote; color: var(--red); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-avatar--1 { background: linear-gradient(135deg, #e63946, #c1121f); }
.author-avatar--2 { background: linear-gradient(135deg, #f4a261, #e07c3a); }
.author-avatar--3 { background: linear-gradient(135deg, #457b9d, #1d3557); }

.author-info { flex-grow: 1; }
.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: var(--gray-500); }

.google-badge { color: var(--gray-500); }

/* Rating Summary */
.rating-summary {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.rating-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.rating-stars-large {
  color: #ffd700;
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.rating-label { font-size: 0.8rem; color: var(--gray-500); }

.rating-bars { flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.rating-bar-row span:first-child { min-width: 52px; }
.rating-bar-row span:last-child { min-width: 32px; text-align: right; }

.bar-track {
  flex-grow: 1;
  height: 8px;
  background: var(--dark-border);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 100px;
  transition: width 1.5s ease;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.why-us-text p {
  color: var(--gray-300);
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
}

.why-icon { font-size: 2rem; margin-bottom: 12px; }

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.why-card p { font-size: 0.875rem; color: var(--gray-300); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--gray-300);
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.contact-detail-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--gray-100);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-detail-item a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--dark-border);
  color: var(--gray-300);
  transition: var(--transition);
}

.social-link--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
}

.social-link--facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.required { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-700);
}

.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 57, 70, 0.15);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-300);
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--red); }

.footer-services ul li {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gray-300);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--red); }

.footer-book-btn { margin-top: 16px; }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom a { color: var(--gray-300); }
.footer-bottom a:hover { color: var(--red); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-row: span 1; }
}

/* ===== TABLET (768px) ===== */
@media (max-width: 768px) {
  /* Base */
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 1001; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .desktop-br { display: none; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.4rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-location { font-size: 0.78rem; text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 24px 20px; }
  .service-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-from { font-size: 0.8rem; }
  .btn-service { width: 100%; text-align: center; justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 24px; padding: 24px; }
  .rating-number { font-size: 3rem; }

  /* Why Us */
  .why-us-cards { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* Prevents iOS zoom on focus */

  /* Story */
  .story-contact-row { flex-direction: column; }
  .contact-pill { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 60px 0 0; }

  /* Booking section */
  .booking-trust-row { gap: 10px; }
  .trust-badge { min-width: 140px; padding: 12px 14px; }
  .booking-sidebar { grid-template-columns: 1fr; }
  .booking-contact-details { grid-column: span 1; }
  .booking-social { grid-column: span 1; }
  .booking-urgency-bar { font-size: 0.82rem; padding: 12px 16px; }
  .booking-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .booking-widget-wrapper { min-height: 500px; }
}

/* ===== MOBILE (480px) ===== */
@media (max-width: 480px) {
  /* Base */
  section { padding: 48px 0; }
  .container { padding: 0 14px; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Promo banner */
  #promo-banner { font-size: 0.78rem !important; padding: 10px 40px 10px 14px !important; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-content { padding: 0 14px; padding-top: 100px; }
  .hero-stats { gap: 12px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-divider { height: 28px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 14px; }

  /* Service cards */
  .service-name { font-size: 1.3rem; }
  .service-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-from { font-size: 0.75rem; line-height: 1.5; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid--expanded { grid-template-rows: unset; }
  .gallery-item img { min-height: 200px; }
  .gallery-item--large img { min-height: 220px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }
  .rating-summary { padding: 20px 16px; }

  /* Why Us */
  .why-us-cards { grid-template-columns: 1fr; }
  .why-card { padding: 20px 16px; }

  /* Booking */
  .booking-trust-row { flex-direction: column; align-items: stretch; }
  .trust-badge { min-width: unset; }
  .booking-magnet { padding: 0 0 60px; }
  .booking-hook { margin-bottom: 32px; }
  .booking-subtitle { font-size: 0.92rem; }
  .booking-contact-item { padding: 14px 16px; }
  .bci-icon { font-size: 1.1rem; }
  .quick-service-item { padding: 12px 14px; }

  /* Financing section */
  .financing-section { padding: 48px 0 !important; }

  /* Contact form */
  .contact-form-wrapper { padding: 20px 14px; }
  .form-title { font-size: 1.3rem; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 32px; }

  /* Buttons — large tap targets */
  .btn { padding: 15px 28px; font-size: 0.95rem; min-height: 48px; }
  .btn-service { padding: 14px 20px; min-height: 48px; }
}

/* ===================================================
   BOOKING MAGNET SECTION
   =================================================== */

.booking-magnet {
  background: var(--black);
  padding: 0 0 100px;
  position: relative;
}

/* Urgency Banner */
.booking-urgency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 64px;
}

.urgency-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* Hook */
.booking-hook {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.booking-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.text-red { color: var(--red); }

.booking-subtitle {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Trust Badges Row */
.booking-trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 200px;
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.trust-badge span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Main Layout */
.booking-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mini Testimonial */
.booking-testimonial {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
}

.booking-stars {
  color: #f4a261;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.booking-quote {
  font-style: italic;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.booking-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.av-red { background: var(--red); color: #fff; }

.booking-reviewer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.booking-reviewer span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Quick Services */
.booking-services-quick {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.quick-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.quick-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-border);
}

.quick-service-item:last-child { border-bottom: none; }

.qs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.qs-dot--red { background: var(--red); }
.qs-dot--gold { background: var(--gold); }
.qs-dot--green { background: #2ecc71; }

.quick-service-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.quick-service-item span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Contact Details */
.booking-contact-details {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--dark-border);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.booking-contact-item:last-child { border-bottom: none; }

.booking-contact-item:hover {
  background: rgba(230, 57, 70, 0.08);
  padding-left: 26px;
}

.bci-icon { font-size: 1.2rem; flex-shrink: 0; }

.booking-contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.booking-contact-item span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.booking-social {
  display: flex;
  gap: 12px;
}

/* Widget Wrapper */
.booking-widget-wrapper {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(230,57,70,0.15);
}

.booking-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(230, 57, 70, 0.06);
  border-bottom: 1px solid var(--dark-border);
}

.widget-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}

.widget-live-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.widget-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* GHL Booking CTA */
.ghl-booking-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 24px;
  min-height: 300px;
}

.ghl-booking-desc {
  font-size: 1rem;
  color: var(--gray-300);
  max-width: 380px;
  line-height: 1.7;
}

.ghl-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #c1121f);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(230,57,70,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ghl-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(230,57,70,0.55);
}

.ghl-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.widget-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(46, 204, 113, 0.06);
  border-top: 1px solid var(--dark-border);
  font-size: 0.8rem;
  color: #2ecc71;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .booking-contact-details { grid-column: span 2; }
  .booking-social { grid-column: span 2; }
}

/* 5-review testimonials grid */
.testimonials-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 1200px) {
  .testimonials-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.author-avatar--4 { background: linear-gradient(135deg, #8e44ad, #6c3483); }
.author-avatar--5 { background: linear-gradient(135deg, #16a085, #1abc9c); }


/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  animation: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1a1a1a;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1a1a1a;
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ===== REPUTATIONHUB WIDGET ===== */
.reputation-widget-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}

.reputation-widget-wrapper iframe.lc_reviews_widget {
  display: block;
  width: 100%;
  min-width: 100%;
  border: none;
}

/* ===== GHL FORM CONTAINER ===== */
.ghl-form-container {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  min-height: 600px;
}

.ghl-form-container iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

@media (max-width: 768px) {
  .ghl-form-container,
  .ghl-form-container iframe {
    min-height: 520px;
  }
}

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-sticky-cta {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  /* Show sticky CTA bar on mobile */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    height: 58px;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }

  .mobile-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    background: var(--dark-card);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 1px solid var(--dark-border);
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .mobile-sticky-call:active { background: #222; }

  .mobile-sticky-book {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .mobile-sticky-book:active { background: var(--red-dark); }

  /* Add padding to body so content isn't hidden behind sticky bar */
  body { padding-bottom: 58px; }

  /* Move WhatsApp button above sticky bar */
  .whatsapp-float { bottom: 74px; right: 16px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .whatsapp-float { bottom: 70px; right: 14px; width: 48px; height: 48px; }
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #0d0d0d;
}
.gallery-slider {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Arrow buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.gallery-arrow:hover {
  background: #e63946;
  border-color: #e63946;
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow--prev { left: 14px; }
.gallery-arrow--next { right: 14px; }

/* Dot indicators */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.gallery-dot.active {
  background: #e63946;
  transform: scale(1.3);
}

/* Mobile: hide arrows on very small screens, rely on swipe */
@media (max-width: 480px) {
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-arrow--prev { left: 8px; }
  .gallery-arrow--next { right: 8px; }
  .gallery-slide { flex: 0 0 100%; min-width: 100%; width: 100%; aspect-ratio: 4 / 3; }
}

/* ===================================================
   DISCOUNT POP-UP
   Dark modal, red accent, Oswald headings
   =================================================== */

.discount-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.discount-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.discount-modal {
  position: relative;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(230, 57, 70, 0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  text-align: center;
}
.discount-overlay.is-visible .discount-modal {
  transform: translateY(0) scale(1);
}

.discount-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.discount-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.discount-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.discount-icon {
  font-size: 2.8rem;
  margin-bottom: 8px;
  line-height: 1;
}
.discount-success-icon {
  font-size: 3.2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.discount-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.discount-highlight {
  color: var(--red);
}

.discount-sub {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
  line-height: 1.5;
}

.discount-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.discount-field input {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 13px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.discount-field input::placeholder {
  color: #555;
}
.discount-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.discount-error {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.85rem;
  padding: 10px 14px;
  text-align: left;
}

.discount-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
  width: 100%;
}
.discount-submit:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.45);
}
.discount-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.discount-fine {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
  margin-top: 4px;
}

/* --- Coupon reveal --- */
.discount-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1a1a;
  border: 2px dashed var(--red);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0;
}
.discount-code {
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
}
.discount-copy-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.discount-copy-btn:hover {
  background: var(--red-dark);
}

.discount-copied {
  font-size: 0.85rem;
  color: #4caf50;
  margin-top: -8px;
  margin-bottom: 8px;
}

.discount-book-btn {
  display: block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}
.discount-book-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .discount-modal {
    padding: 32px 20px 24px;
  }
  .discount-title {
    font-size: 1.5rem;
  }
  .discount-code {
    font-size: 1.3rem;
  }
}
