/* ============================================
   REYES CARPET CLEANING — PROTOTYPE STYLES
   ============================================ */

:root {
  --royal-blue: #0055CC;
  --midnight: #0A1628;
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --sky: #4A90D9;
  --foam: #E8F4FD;
  --white: #FFFFFF;
  --cloud: #F8F9FA;
  --stone: #6C757D;
  --charcoal: #343A40;
  --success: #28A745;
  --danger: #DC3545;
  --warning: #FFC107;
  
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Helvetica, sans-serif;
  --font-script: 'Caveat', cursive;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 14px rgba(212,175,55,0.4);
  --shadow-blue: 0 4px 20px rgba(0,85,204,0.08);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  
  --transition: all 0.25s ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220,53,69,0.4);
}
.btn-danger:hover {
  background: #C82333;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--danger);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--cloud);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  background: var(--foam);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--stone);
  font-size: 18px;
}

.section-header p.light {
  color: rgba(255,255,255,0.8);
}

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

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--midnight);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  border: 2px solid var(--gold);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: none;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background: var(--midnight);
  color: var(--gold-light);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.announcement-bar a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: var(--white);
}

.announcement-close {
  background: none;
  border: none;
  color: var(--stone);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  margin-left: auto;
}

.announcement-close:hover {
  color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-caption,
.navbar.scrolled .nav-links a {
  color: var(--midnight);
}

.navbar.scrolled .nav-inner .logo {
  color: var(--midnight);
}

.navbar.scrolled .nav-cta {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

/* Navbar & footer logo: vertical stack */
.nav-inner .logo,
.footer-brand .logo {
  flex-direction: column;
  gap: 2px;
}

.navbar.scrolled .logo {
  color: var(--midnight);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--midnight) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  opacity: 1 !important;
  border: 2px solid var(--gold);
}

.nav-cta:hover {
  background: var(--gold-light);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--midnight);
  z-index: 2000;
  padding: 80px 32px 32px;
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.mobile-menu.active::before {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.mobile-menu ul a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-actions .btn {
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: max(600px, min(100vh, 56.25vw));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(0,85,204,0.75) 50%, rgba(10,22,40,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  color: var(--white);
}

.badge-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-reviews i {
  color: var(--gold-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.trust-item i {
  font-size: 20px;
  color: var(--gold-light);
}

.trust-item strong {
  color: var(--white);
  display: block;
  font-size: 15px;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--cloud);
  padding: 24px 0;
  border-bottom: 1px solid #e9ecef;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

/* ── BENTO GRID (Pricing Promise + Payment) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.bento-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: center;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.bento-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.bento-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}

.bento-card .payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--foam);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.payment-item i {
  color: var(--royal-blue);
  font-size: 16px;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-logo > i:first-child {
  font-size: 32px;
  color: var(--royal-blue);
}

.trust-logo > i.fab.fa-google {
  color: #4285F4;
}

.trust-logo > i.fab.fa-yelp {
  color: #FF1A1A;
}

.trust-logo > i.fab.fa-facebook {
  color: #1877F2;
}

.trust-logo div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--midnight);
}

.trust-stars {
  color: var(--gold);
  font-size: 12px;
}

.trust-logo small {
  font-size: 12px;
  color: var(--stone);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--stone);
  font-size: 14px;
  font-weight: 500;
}

.trust-badge i {
  font-size: 24px;
  color: var(--success);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 80px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--foam);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,85,204,0.12);
  border-color: var(--sky);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--foam);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 26px;
  color: var(--royal-blue);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--stone);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-link {
  font-weight: 600;
  color: var(--royal-blue);
  font-size: 14px;
}

.service-link:hover {
  color: var(--gold);
}

.service-link i {
  font-size: 12px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

.service-link.emergency {
  color: var(--danger);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-us {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--foam) 100%);
}

/* VIDEO PRESENTATION */
/* Services hub — split hero */
.services-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, #0a2044 100%);
  padding: 100px 0 80px;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-hero-text {
  color: var(--white);
}
.services-hero-text .section-tag {
  display: inline-block;
  margin-bottom: 20px;
}
.services-hero-text h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.services-hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.services-hero-text .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.services-video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 16/9;
}
.services-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-hero { padding: 80px 0 60px; }
}
@media (max-width: 640px) {
  .services-hero { padding: 72px 0 48px; }
  .services-hero-text h1 { font-size: 32px; }
}

/* Before / After gallery */
.before-after-section {
  padding: 80px 0;
  background: var(--midnight);
}
.before-after-section .section-header h2 { color: var(--white); }
.before-after-section .section-header p  { color: rgba(255,255,255,0.65); }
.before-after-section .section-tag {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.ba-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.ba-pair {
  display: flex;
  position: relative;
  aspect-ratio: 1/1;
}
.ba-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ba-card:hover .ba-img img { transform: scale(1.04); }
.ba-label {
  position: absolute;
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.ba-before { left: 10px; background: rgba(220,53,69,0.85); color: var(--white); }
.ba-after  { right: 10px; background: rgba(40,167,69,0.85); color: var(--white); }
.ba-divider {
  width: 3px;
  background: var(--white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.ba-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--royal-blue);
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.ba-card-single .ba-single-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.ba-card-single .ba-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ba-card-single:hover .ba-single-img img { transform: scale(1.04); }
.ba-single-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ba-single-overlay p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }
.ba-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ba-caption i { color: var(--gold); font-size: 14px; }
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* House cleaning page — split layout */
.house-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.house-split-reverse { direction: rtl; }
.house-split-reverse > * { direction: ltr; }
.house-split-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.house-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.house-split-text h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 12px;
}
.house-split-price {
  font-size: 22px;
  color: var(--royal-blue);
  margin-bottom: 16px;
}
.house-split-price strong { font-size: 32px; }
.house-split-price span { font-size: 14px; color: var(--slate); }
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal);
}
.checklist li i {
  color: var(--royal-blue);
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .house-split { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .house-split-reverse { direction: ltr; }
}

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

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-left: 4px solid var(--gold);
}

.float-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--midnight);
  line-height: 1;
}

.float-label {
  font-size: 13px;
  color: var(--stone);
  font-weight: 500;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-content p {
  color: var(--stone);
  margin-bottom: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
}

.why-list i {
  color: var(--success);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-list strong {
  color: var(--midnight);
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: 80px 0;
  background: var(--white);
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--foam);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.pricing-header {
  padding: 24px;
  border-bottom: 1px solid var(--foam);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
}

.pricing-badge {
  background: var(--gold);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pricing-body {
  padding: 20px 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e9ecef;
  font-size: 15px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:first-child {
  color: var(--charcoal);
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--midnight);
}

.price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--stone);
}

.pricing-includes {
  padding: 0 24px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 8px;
}

.pricing-includes h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 16px 0 10px;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-includes li {
  font-size: 13px;
  color: var(--stone);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-includes li i {
  color: var(--success);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 16px 24px 24px;
  text-align: center;
}

.pricing-note {
  font-size: 13px;
  color: var(--stone);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 80px 0;
  background: var(--midnight);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-weight: 400;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--stone);
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--stone);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: #ced4da;
}

.breadcrumb a {
  color: var(--royal-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--midnight);
}

.breadcrumb li[aria-current="page"] {
  color: var(--charcoal);
  font-weight: 600;
}

/* ── PLATFORMS ── */
.platforms {
  padding: 80px 0;
  background: var(--cloud);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 24px;
  margin-bottom: 4px;
}

.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.platform-card p {
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--midnight);
  padding: 100px 0;
  text-align: center;
}

.cta-section .section-header h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section .hero-ctas {
  margin-top: 32px;
}

/* ── REVIEWS BENTO GRID ── */
.reviews-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-bento .bento-card {
  justify-content: flex-start;
}

.reviews-bento .bento-card.large {
  justify-content: center;
}

.reviews-bento .bento-card .testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.reviews-bento .bento-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin: 0;
}

.reviews-bento .bento-card.large blockquote {
  font-size: 17px;
  line-height: 1.75;
}

.reviews-bento .bento-card .testimonial-author {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-bento .bento-card .testimonial-author strong {
  font-size: 15px;
  color: var(--charcoal);
}

.reviews-bento .bento-card .testimonial-author span {
  font-size: 13px;
  color: var(--stone);
}

/* ============================================
   TESTIMONIALS CAROUSEL — PREMIUM
   ============================================ */

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

/* Decorative glow behind carousel */
.testimonials-carousel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonials-carousel .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transform: scale(0.96);
  opacity: 0.7;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonials-carousel .testimonial-card.is-active {
  transform: scale(1);
  opacity: 1;
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 1px rgba(212,175,55,0.1);
}

.testimonials-carousel .testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(212,175,55,0.15);
}

/* Quote icon */
.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 56px;
  line-height: 1;
  color: rgba(212,175,55,0.12);
  pointer-events: none;
  font-family: Georgia, serif;
  font-style: italic;
}

/* Avatar */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--midnight);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,175,55,0.25);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-meta strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--stone);
}

/* Override old author styles inside carousel cards */
.testimonials-carousel .testimonial-author {
  display: none;
}

/* Stars above quote */
.testimonials-carousel .testimonial-stars {
  margin-bottom: 12px;
}

/* Navigation arrows — side positioned */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
  padding: 0 4px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

.carousel-btn:disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.carousel-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.carousel-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-dot.active::after {
  width: 100%;
}

.carousel-dot.active {
  background: rgba(212,175,55,0.2);
}

/* ============================================
   SERVICE AREAS
   ============================================ */

.areas {
  padding: 80px 0;
  background: var(--cloud);
}

.areas-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.areas-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.areas-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.areas-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tag {
  background: var(--white);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: var(--transition);
  cursor: default;
}

.city-tag:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

.city-tag.featured {
  background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.05) 100%);
  color: var(--gold);
  border-color: rgba(212,175,55,0.35);
  font-weight: 600;
}

.city-tag.featured:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

/* ── FEATURED CITIES GRID ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.city-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.city-card p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.city-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap 0.2s ease;
}

.city-card:hover .city-card-link {
  gap: 10px;
}

/* ============================================
   MAP PIN — HQ MARKER
   ============================================ */

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: mapPinBounce 2.5s ease-in-out infinite;
}

.map-pin i {
  font-size: 36px;
  color: var(--gold);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.map-pin-label {
  background: var(--midnight);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(212,175,55,0.3);
  white-space: nowrap;
}

@keyframes mapPinBounce {
  0%, 100% { transform: translate(-50%, -100%) translateY(0); }
  50% { transform: translate(-50%, -100%) translateY(-10px); }
}

/* ============================================
   EMERGENCY BANNER
   ============================================ */

.emergency-banner {
  background: var(--danger);
  padding: 20px 0;
}

.emergency-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.emergency-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.emergency-text i {
  font-size: 24px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e9ecef;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  text-align: left;
}

.faq-question:hover {
  color: var(--royal-blue);
}

.faq-question i {
  color: var(--royal-blue);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cloud) 0%, var(--white) 100%);
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--stone);
  margin-bottom: 32px;
}

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

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row i {
  width: 40px;
  height: 40px;
  background: var(--foam);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-row div {
  display: flex;
  flex-direction: column;
}

.contact-row span:first-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-row a,
.contact-row span:last-child {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-row a:hover {
  color: var(--royal-blue);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--foam);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(0,85,204,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ADB5BD;
}

.form-note {
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, #0A1628 0%, #001a33 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  height: 50px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--midnight);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-col i {
  width: 16px;
  color: var(--gold);
  font-size: 13px;
}

.footer-emergency {
  color: var(--danger) !important;
  font-weight: 600;
}

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

/* ============================================
   FLOATING CTAs
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  font-size: 22px;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-cta:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 4px 24px rgba(212,175,55,0.7); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.animate-in {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-carousel .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .testimonials-carousel { padding: 20px 50px; }
  .carousel-btn { width: 40px; height: 40px; }
  .areas-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 16px; }
  
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  .bento-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-carousel .testimonial-card { flex: 0 0 100%; }
  .testimonials-carousel { padding: 20px 0; }
  .carousel-nav { position: static; transform: none; justify-content: center; gap: 16px; margin-top: 24px; padding: 0; }
  .carousel-btn { width: 44px; height: 44px; font-size: 14px; }
  .carousel-dots { margin-top: 20px; }
  .testimonial-quote-icon { font-size: 40px; top: 16px; right: 16px; }
  
  .why-grid { grid-template-columns: 1fr; }
  .why-float-card { right: 10px; bottom: -10px; }
  
  .areas-map { height: 280px; }
  
  .form-row { grid-template-columns: 1fr; }
  .emergency-flex { flex-direction: column; text-align: center; }
  .emergency-flex .btn { width: 100%; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .platforms-grid { grid-template-columns: 1fr; max-width: 400px; }
  .platforms { padding: 60px 0; }
  .cta-section { padding: 70px 0; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  
  .reviews-bento {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  .reviews-bento .bento-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .section-header h2 { font-size: 28px; }
  
  .floating-cta,
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .whatsapp-float { bottom: 80px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .bento-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .breadcrumb { font-size: 13px; }
  .platforms-grid { gap: 16px; }
  .cta-section { padding: 60px 0; }
  .cities-grid { grid-template-columns: 1fr; max-width: 400px; }
  .reviews-bento {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .reviews-bento .bento-card.large,
  .reviews-bento .bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .badge-reviews { font-size: 11px; padding: 6px 12px; }
  .logo-img { height: 36px; }
  .logo-caption { font-size: 11px; }
}

/* ============================================
   NAV DROPDOWN
   ============================================ */

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-out;
  z-index: 1001;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--foam);
  color: var(--royal-blue);
}

.dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: var(--royal-blue);
}

.dropdown-divider {
  height: 1px;
  background: var(--foam);
  margin: 6px 0;
  list-style: none;
}

/* Mobile dropdown */
.mobile-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.mobile-dropdown-toggle i {
  transition: transform 0.25s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding-left: 16px;
  margin-bottom: 8px;
  list-style: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  border-bottom: none;
}

.mobile-dropdown-menu a:hover {
  color: var(--gold-light);
}

.mobile-dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: var(--gold);
}

/* ============================================
   SERVICE CARD WITH IMAGE
   ============================================ */

.service-card-img {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -32px -32px 20px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */

.gallery-before-after {
  padding: 80px 0;
  background: var(--midnight);
}

.gallery-before-after .section-header h2 {
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--foam) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
  
  .floating-cta {
    animation: none;
  }
}

/* ============================================
   HERO LANDING — SPLIT LAYOUT (Homepage)
   ============================================ */
.hero-landing .hero-content {
  max-width: 1400px;
  width: 95%;
  text-align: left;
  padding: 0 32px;
}

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

.hero-landing-text .badge-reviews {
  margin-bottom: 20px;
}

.hero-landing-text h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-landing-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-landing-text .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-landing-text .hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-landing-video-desktop .services-video-wrapper,
.hero-landing-video-mobile .services-video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 16/9;
  max-height: 420px;
}

.hero-landing-video-desktop .services-video-wrapper video,
.hero-landing-video-mobile .services-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-landing-video-mobile {
  display: none;
  margin: 24px 0;
}

@media (max-width: 900px) {
  .hero-landing-video-desktop {
    display: none;
  }
  .hero-landing-video-mobile {
    display: block;
  }
}

.hero-landing-video .services-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-landing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-landing-text {
    text-align: center;
  }
  .hero-landing-text p {
    max-width: 100%;
  }
  .hero-landing-text .hero-ctas {
    justify-content: center;
  }
  .hero-landing-text .hero-trust {
    justify-content: center;
  }
}

/* ============================================
   TEAM IN ACTION — VIDEO GRID
   ============================================ */
.team-action {
  background: linear-gradient(180deg, var(--midnight) 0%, #0d1f3a 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--charcoal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.video-caption {
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.95) 20%);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.video-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.video-caption p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .video-caption { padding: 12px; margin-top: -50px; }
  .video-caption p { font-size: 13px; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--foam) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.1);
}

.product-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.product-card .product-tag {
  display: inline-block;
  background: var(--foam);
  color: var(--royal-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.cookie-content p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-content p a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; max-width: 400px; }
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
