/*
 * Q8 Car Wash — Aqua Industrial Design System
 * Typography: Clash Display (headlines) + IBM Plex Sans Arabic (body)
 * Palette: Charcoal #0D1117, Cyan #00BCD4, Light #F8FAFB
 * Layout: RTL, mobile-first
 */

/* ─── CSS Custom Properties ─── */
:root {
  --charcoal: #0D1117;
  --charcoal-light: #161B22;
  --cyan: #00BCD4;
  --cyan-hover: #26C6DA;
  --cyan-light: #E0F7FA;
  --cyan-glow: rgba(0, 188, 212, 0.4);
  --slate: #64748B;
  --slate-dark: #4A5568;
  --light-bg: #F8FAFB;
  --white: #FFFFFF;
  --border-light: #E2E8F0;
  --whatsapp: #25D366;
  --whatsapp-hover: #22c55e;
  --star: #FACC15;
  --font-display: 'Clash Display', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s ease;

  /* Semantic aliases used by inner pages */
  --surface: var(--charcoal-light);
  --text: #E6EDF3;
  --text-muted: var(--slate);
  --accent: var(--cyan);
  --border: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.logo-tagline {
  color: var(--cyan);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* GMB Links */
.google-rating-link,
.reviews-rating-link {
  display: inline-block;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}

.google-rating-link:hover,
.reviews-rating-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--cyan);
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(0,188,212,0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header-phone:hover {
  background: rgba(0,188,212,0.1);
  border-color: var(--cyan);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close svg {
  width: 28px;
  height: 28px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--cyan);
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .header-phone { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
  }
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(13, 17, 23, 0.55) 0%,
    rgba(13, 17, 23, 0.68) 50%,
    rgba(13, 17, 23, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 1.5rem;
  padding-bottom: calc(3rem + 6rem);
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}

.hero-subtitle {
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

/* Google Rating Badge */
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--star);
  color: var(--star);
}

.google-rating span {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.google-rating strong {
  color: var(--white);
  font-weight: 700;
}

/* Service Pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.pill.visible {
  opacity: 1;
  transform: translateY(0);
}

.pill:hover {
  background: rgba(0,188,212,0.15);
  border-color: rgba(0,188,212,0.4);
  color: var(--cyan);
}

/* CTA Buttons */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-group .btn {
  flex: 1;
  min-width: 140px;
}

.cta-group--col {
  flex-direction: column;
  align-items: stretch;
}

.cta-group--col .btn {
  flex: none;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  font-weight: 700;
}

.btn-cyan:hover {
  background: var(--cyan-hover);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

/* ─── About Section ─── */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--cyan);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-display);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--slate-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .about-img-wrap img {
    height: 400px;
  }
}

/* ─── Pricing Section ─── */
.pricing {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

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

.pricing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.92), rgba(13,17,23,0.96));
}

.pricing .container {
  position: relative;
  z-index: 10;
}

.section-title-light {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.price-card:hover {
  border-color: rgba(0,188,212,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,188,212,0.1);
}

.price-card.vip {
  border-color: rgba(0,188,212,0.25);
  background: rgba(0,188,212,0.06);
}

.price-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card.vip .price-card-title {
  color: var(--cyan);
}

.vip-badge {
  background: var(--cyan);
  color: var(--charcoal);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-card-list {
  margin-bottom: 1.5rem;
}

.price-card-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.price-row {
  display: flex;
  gap: 1rem;
}

.price-box {
  flex: 1;
  background: rgba(0,188,212,0.08);
  border: 1px solid rgba(0,188,212,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}

.price-box-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
}

.price-currency {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--cyan);
}

.price-old {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Monthly Subscriptions ─── */
.monthly {
  padding: 5rem 0;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--charcoal);
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}

.monthly-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.monthly-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,188,212,0.3);
}

.monthly-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.monthly-card-title.vip-title {
  color: var(--cyan);
}

.monthly-card-washes {
  color: var(--slate);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.monthly-card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.monthly-card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--slate);
}

@media (min-width: 768px) {
  .monthly-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .monthly-card { padding: 2rem; }
  .monthly-card-title { font-size: 1.1rem; }
}

/* ─── Features / Why Us ─── */
.features {
  padding: 5rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.feature-item p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ─── Reviews ─── */
.reviews {
  padding: 5rem 0;
  background: var(--light-bg);
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-header h2 {
  margin-bottom: 0.75rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reviews-rating .stars svg {
  width: 20px;
  height: 20px;
}

.reviews-rating strong {
  font-size: 1.1rem;
}

.reviews-rating span {
  color: var(--slate);
  font-size: 0.85rem;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin-inline: auto;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--star);
  color: var(--star);
}

.review-text {
  color: var(--slate-dark);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ─── FAQ ─── */
.faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 750px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0,188,212,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-align: right;
  cursor: pointer;
  transition: color var(--transition);
  gap: 1rem;
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--slate);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ─── Content Section ─── */
.content-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.content-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.content-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  order: 2;
}

.content-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.content-text {
  order: 1;
}

.content-text h2 {
  margin-bottom: 1.25rem;
}

.content-text p {
  color: var(--slate-dark);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .content-img-wrap {
    order: 1;
  }
  .content-text {
    order: 2;
  }
  .content-img-wrap img {
    height: 380px;
  }
}

/* ─── CTA Section ─── */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.88), rgba(13,17,23,0.92));
}

.cta-section .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-buttons .btn-cyan {
  color: var(--white);
  font-weight: 700;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-links a svg {
  width: 12px;
  height: 12px;
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact .contact-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--cyan);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ─── Floating CTAs ─── */
.float-cta-group {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.float-cta-group.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.float-btn svg {
  width: 28px;
  height: 28px;
}

.float-btn-call {
  background: var(--cyan);
  box-shadow: 0 4px 16px var(--cyan-glow);
}

.float-btn-call:hover {
  box-shadow: 0 6px 24px rgba(0, 188, 212, 0.6);
}

.float-btn-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.float-btn-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ─── Our Work ─── */
.our-work {
  padding: 5rem 0;
  background: var(--charcoal);
}

.our-work .section-title {
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

/* ─── Video Section (reversed) ─── */
.content-vid-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  order: 2;
}

.content-vid-wrap video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .content-grid--reversed .content-vid-wrap {
    order: 2;
  }
  .content-grid--reversed .content-text {
    order: 1;
  }
  .content-vid-wrap video {
    height: 380px;
  }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delays for pills */
.pill:nth-child(1) { transition-delay: 0.05s; }
.pill:nth-child(2) { transition-delay: 0.1s; }
.pill:nth-child(3) { transition-delay: 0.15s; }
.pill:nth-child(4) { transition-delay: 0.2s; }
.pill:nth-child(5) { transition-delay: 0.25s; }
.pill:nth-child(6) { transition-delay: 0.3s; }
.pill:nth-child(7) { transition-delay: 0.35s; }
.pill:nth-child(8) { transition-delay: 0.4s; }

/* ─── Utility ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.dir-ltr {
  direction: ltr;
  unicode-bidi: embed;
}

/* ─── Kicker label ─── */
.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

/* ─── Services Grid + Cards (inner pages) ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 7rem 0 3.5rem;
  background: var(--charcoal-light);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin: 0.5rem 0;
}

.page-hero p {
  color: var(--slate);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ─── Service card icon (used on inner pages) ─── */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 188, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
}

/* ─── Service card with image (services listing page) ─── */
.service-card--img {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card--img .service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
  transition: transform 0.4s ease;
}

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

.service-card--img .service-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── CTA section background ─── */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  position: relative;
}
