/* ============================================================
   RepairKart – Premium Repair Service Website
   style.css | Production-Ready CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --accent:       #FF4D00;
  --accent2:      #0066FF;
  --accent-light: #FF6A2A;
  --dark:         #0A0A0F;
  --dark2:        #111118;
  --dark3:        #1A1A26;
  --card-bg:      #15151F;
  --border:       rgba(255,255,255,0.08);
  --text:         #F0F0F8;
  --text-muted:   #9090A8;
  --white:        #FFFFFF;
  --green:        #00C97A;
  --shadow:       0 20px 60px rgba(0,0,0,0.4);
  --radius:       16px;
  --radius-sm:    10px;
  --nav-h:        72px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-display);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,77,0,0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,77,0,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-sm); padding: 16px 28px; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title { color: var(--white); }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,77,0,0.12);
  border: 1px solid rgba(255,77,0,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================================== */
/*   FLOATING BUTTONS                                         */
/* ========================================================== */
.fab {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  cursor: pointer;
}

.fab svg { width: 20px; height: 20px; flex-shrink: 0; }

.fab-call {
  bottom: 100px;
  right: 20px;
  background: var(--accent2);
  color: var(--white);
}
.fab-call:hover { transform: scale(1.06); background: #0055dd; }

.fab-whatsapp {
  bottom: 36px;
  right: 20px;
  background: #25D366;
  color: var(--white);
}
.fab-whatsapp:hover { transform: scale(1.06); background: #1ebe5c; }

/* ========================================================== */
/*   NAVBAR                                                   */
/* ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.nav-logo strong { font-weight: 800; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================================== */
/*   HERO                                                     */
/* ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,77,0,0.3), transparent 70%); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,102,255,0.2), transparent 70%); bottom: 0; left: -50px; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,77,0,0.1), transparent 70%); top: 50%; left: 50%; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeSlideDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,122,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,201,122,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent), #FF8C42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

.hero-br { display: none; }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.3s ease both;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 680px;
  margin: 0 auto;
  animation: fadeSlideDown 0.8s 0.4s ease both;
  backdrop-filter: blur(10px);
}

.stat { text-align: center; padding: 0 24px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeSlideDown 1s 0.8s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================================== */
/*   SERVICES                                                 */
/* ========================================================== */
.services { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Make the 4th and 5th cards span differently */
.services-grid .service-card:nth-child(4) { grid-column: 1; }
.services-grid .service-card:nth-child(5) { grid-column: 2 / 4; }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,77,0,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(255,77,0,0.3); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: rgba(255,77,0,0.4);
  background: linear-gradient(135deg, rgba(255,77,0,0.08), var(--card-bg));
}

.service-badge-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,77,0,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: rgba(255,77,0,0.2); transform: scale(1.05); }

.service-content h3 {
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 8px;
}

.service-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.service-cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.service-cta:hover { gap: 8px; }

/* ========================================================== */
/*   WHY US                                                   */
/* ========================================================== */
.why-us {
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,0,0.12), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,77,0,0.2);
  transform: translateY(-4px);
}

.why-icon { font-size: 36px; margin-bottom: 16px; }

.why-card h3 {
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ========================================================== */
/*   PRICING                                                  */
/* ========================================================== */
.pricing { background: var(--dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: rgba(255,77,0,0.5);
  background: linear-gradient(160deg, rgba(255,77,0,0.08), var(--card-bg) 60%);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(255,77,0,0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-icon { font-size: 40px; margin-bottom: 12px; }

.pricing-card h3 {
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 24px;
}

.price-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.price-item:last-child { border-bottom: none; }
.price-item span:first-child { color: var(--text-muted); }
.price-item span:last-child { color: var(--white); font-weight: 600; }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* ========================================================== */
/*   REVIEWS                                                  */
/* ========================================================== */
.reviews { background: var(--dark2); }

.overall-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.stars { font-size: 22px; color: #FFB800; letter-spacing: 2px; }
.rating-num { font-size: 20px; font-weight: 700; font-family: var(--font-display); color: var(--white); }
.rating-count { font-size: 14px; color: var(--text-muted); }

.reviews-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.review-card {
  min-width: calc(33.333% - 14px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 15px; color: var(--white); }
.review-stars { font-size: 13px; color: #FFB800; margin-top: 2px; }

.google-icon {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: #4285F4;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.review-date { font-size: 12px; color: rgba(255,255,255,0.3); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.rev-btn:hover { background: var(--accent); border-color: var(--accent); color: white; }

.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.rev-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ========================================================== */
/*   BOOKING                                                  */
/* ========================================================== */
.booking { background: var(--dark3); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.booking-info { padding-top: 20px; }
.booking-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-family: var(--font-display);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.booking-info p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

.booking-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.bf {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.bf span {
  width: 24px;
  height: 24px;
  background: rgba(0,201,122,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-contact-links { display: flex; flex-direction: column; gap: 10px; }

.contact-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.contact-link-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,77,0,0.06); }

/* Form */
.booking-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

#bookingForm { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  width: 100%;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239090A8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,77,0,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(144,144,168,0.5);
}

.form-group select option { background: var(--dark2); color: var(--text); }

/* ========================================================== */
/*   CONTACT / MAP                                            */
/* ========================================================== */
.contact { background: var(--dark2); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { border-color: rgba(255,77,0,0.2); }

.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.contact-card a, .contact-card p {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--transition);
}

.contact-card a:hover { color: var(--accent); }

.directions-btn { margin-top: 8px; width: 100%; justify-content: center; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

.map-overlay-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.map-overlay-btn a {
  display: inline-block;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.map-overlay-btn a:hover { background: var(--accent); border-color: var(--accent); color: white; }

/* ========================================================== */
/*   FOOTER                                                   */
/* ========================================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: white; }

.footer-links-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(144,144,168,0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================================== */
/*   TOAST NOTIFICATION                                       */
/* ========================================================== */
.toast {
  position: fixed;
  bottom: 180px;
  right: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 280px;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ========================================================== */
/*   ANIMATIONS                                               */
/* ========================================================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================================== */
/*   RESPONSIVE – TABLET                                      */
/* ========================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:nth-child(4) { grid-column: auto; }
  .services-grid .service-card:nth-child(5) { grid-column: auto; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ========================================================== */
/*   RESPONSIVE – MOBILE                                      */
/* ========================================================== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 890;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 20px; padding: 12px 24px; }
  .nav-cta { font-size: 18px; padding: 14px 32px; }

  /* Hero */
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats {
    gap: 0;
    padding: 20px 16px;
    flex-wrap: wrap;
  }
  .stat { padding: 8px 14px; min-width: 50%; }
  .stat-divider { display: none; }
  .hero-scroll-hint { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(5) { grid-column: auto; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .review-card { min-width: calc(100% - 20px); }

  /* Booking */
  .booking-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .booking-info { order: 1; }
  .booking-form-card { order: 2; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; }
  .map-container { height: 300px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* FABs */
  .fab { padding: 10px 14px; }
  .fab span { display: none; }
  .fab-call { bottom: 90px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .fab-whatsapp { bottom: 28px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
}

/* ========================================================== */
/*   PRINT / REDUCED MOTION                                   */
/* ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}