/* ===================================================
   CARTAMIN SERVICES — services.cartamin.ae
   Brand: #41BFBB teal | #FF8500 orange | #939598 gray
   =================================================== */

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

/* ─── CSS VARIABLES ─── */
:root {
  --teal:        #41BFBB;
  --teal-dark:   #2a9e9a;
  --teal-glow:   rgba(65,191,187,0.25);
  --orange:      #FF8500;
  --gray:        #939598;
  --gray-light:  #c0c2c4;
  --black:       #080808;
  --dark:        #0f0f0f;
  --card:        #161616;
  --white:       #ffffff;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-in-out: cubic-bezier(0.76,0,0.24,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--teal); color: var(--black); }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(65,191,187,0.15);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
#header .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .logo-link img {
  height: 42px;
  width: auto;
}

/* ─────────────────────────────────────────
   HERO — 3D STEERING WHEEL
───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 68px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1300px;
  width: 100%;
  padding: 0 5vw;
}

.hero-text { }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65,191,187,0.1);
  border: 1px solid rgba(65,191,187,0.3);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line-teal { color: var(--teal); }
.hero-title .line-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--teal);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { color: var(--black); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* Hero 3D Steering Wheel */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}

.sw-stage {
  position: relative;
  width: 480px;
  height: 480px;
  perspective: 1000px;
}

.sw-glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,191,187,0.18) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { transform: scale(1); opacity:0.8; }
  50% { transform: scale(1.08); opacity:1; }
}

.sw-glow-outer {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  border: 1px solid rgba(65,191,187,0.12);
  animation: ring-spin 20s linear infinite;
}
.sw-glow-outer::after {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--teal), 0 0 24px var(--teal);
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sw-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sw-float 4s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes sw-float {
  0%,100% { transform: rotateX(8deg) rotateY(-4deg) translateY(0px); }
  25% { transform: rotateX(4deg) rotateY(4deg) translateY(-12px); }
  50% { transform: rotateX(-4deg) rotateY(8deg) translateY(-20px); }
  75% { transform: rotateX(6deg) rotateY(-2deg) translateY(-10px); }
}

.sw-img-wrap img {
  width: 420px;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(65,191,187,0.3));
  transition: filter 0.3s;
}
.sw-img-wrap:hover img {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 60px rgba(65,191,187,0.5));
}

.sw-hex-bg {
  position: absolute;
  inset: -20px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 17 L60 35 L30 52 L0 35 L0 17Z' fill='none' stroke='rgba(65,191,187,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 0.8;
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity:1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0.3; }
}

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
#services {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.service-block {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  transform: scale(1.05);
}
.service-block:hover .service-visual img { transform: scale(1); }

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,191,187,0.08), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.service-visual-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 2;
}

.service-num {
  position: absolute;
  top: 40px; right: 30px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(65,191,187,0.08);
  line-height: 1;
  z-index: 3;
  letter-spacing: -4px;
}

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6vw;
  background: var(--black);
  position: relative;
}
.service-info::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--teal) 30%, var(--teal) 70%, transparent);
  opacity: 0.2;
}
.service-block:not(.reverse) .service-info::before { left: 0; }
.service-block.reverse .service-info::before { right: 0; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(65,191,187,0.1);
  border: 1px solid rgba(65,191,187,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--teal); }

.service-name {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.service-name .accent { color: var(--teal); }

.service-desc {
  font-size: 1rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.service-feature::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(65,191,187,0.3);
  width: fit-content;
  transition: all 0.3s;
}
.btn-service:hover { gap: 16px; border-color: var(--teal); }
.btn-service svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-service:hover svg { transform: translateX(4px); }

/* Divider hex */
.hex-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 12px;
  background: var(--black);
}
.hex-divider::before,
.hex-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(65,191,187,0.3), transparent);
}
.hex-divider svg {
  width: 24px; height: 24px;
  color: var(--teal);
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   BOOKING FORM
───────────────────────────────────────── */
#booking {
  background: var(--dark);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(65,191,187,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#booking::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,133,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.booking-left { }
.booking-left .section-label { margin-bottom: 1rem; }
.booking-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.booking-title .accent { color: var(--teal); }

.booking-sub {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.booking-contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--gray-light);
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(65,191,187,0.08);
  border: 1px solid rgba(65,191,187,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--teal); }

/* Form */
.booking-form-wrap { position: relative; }

.booking-form {
  background: var(--card);
  border: 1px solid rgba(65,191,187,0.12);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 8px 8px 0 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(65,191,187,0.12);
}
.form-group select { cursor: pointer; -webkit-appearance: none; }
.form-group select option { background: var(--card); color: var(--white); }
.form-group textarea { resize: none; height: 110px; }

.phone-wrap {
  display: flex;
  gap: 10px;
}
.phone-wrap .country-select {
  width: 130px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.phone-wrap input { flex: 1; }

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--white); transform: translateY(-2px); }
.form-submit:active { transform: translateY(0); }
.form-submit svg { width: 18px; height: 18px; }

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

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 3rem;
}
.form-success.active { display: flex; }
.form-success svg { color: var(--teal); width: 64px; height: 64px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; }
.form-success p { color: var(--gray-light); }

/* ─────────────────────────────────────────
   GOOGLE REVIEWS
───────────────────────────────────────── */
#reviews {
  background: var(--black);
  padding: 100px 5vw;
  overflow: hidden;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--teal); }
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

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

.review-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,191,187,0.04), transparent 50%);
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(65,191,187,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.review-stars span { color: #FBBC04; font-size: 1rem; }

.review-text {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.review-date { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

.reviews-cta {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-review:hover { border-color: var(--teal); color: var(--teal); }
.btn-review svg { width: 20px; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
#about {
  background: var(--dark);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.about-image-grid .img-main {
  grid-column: 1 / -1;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.about-image-grid .img-sub {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
}
.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-image-grid div:hover img { transform: scale(1.04); }

.since-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  border-radius: 6px;
  padding: 20px 24px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 10px 30px rgba(65,191,187,0.3);
}
.since-year { font-size: 2.4rem; display: block; }
.since-text { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; }

.about-text { }
.about-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-title .accent { color: var(--teal); }

.about-desc {
  color: var(--gray-light);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
  background: #060606;
  border-top: 1px solid rgba(65,191,187,0.12);
  padding: 60px 5vw 30px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
}
.social-icon:hover { background: var(--teal); color: var(--black); border-color: var(--teal); }
.social-icon svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before {
  content: '';
  width: 12px; height: 1px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--teal); }

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s var(--ease-out);
  animation: wa-entrance 0.6s var(--ease-out) both;
  animation-delay: 2s;
}
@keyframes wa-entrance {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   HEXAGONAL GRID BG TEXTURE
───────────────────────────────────────── */
.hex-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 1 L59 18 L59 34 L30 51 L1 34 L1 18Z' fill='none' stroke='rgba(65,191,187,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}

/* Worldwide shipping bar */
.shipping-bar {
  background: var(--teal);
  color: var(--black);
  text-align: center;
  padding: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

#header { top: 36px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { height: 380px; order: -1; }
  .sw-stage { width: 320px; height: 320px; }
  .sw-img-wrap img { width: 280px; height: 280px; }
  
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-visual { min-height: 380px; }
  .service-info { padding: 3rem 5vw; }
  .service-info::before { display: none; }
  
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .shipping-bar { font-size: 0.65rem; letter-spacing: 2px; padding: 7px; }
  #header { top: 30px; height: 58px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
  .booking-form { padding: 2rem; }
}
