/* =============================================================
   MoveAura Physiotherapy & Rehab — Stylesheet
   Version: 1.0
   ============================================================= */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --primary:       #00A8BE;
  --primary-dark:  #007F90;
  --primary-light: #E0F7FA;
  --primary-mid:   #4BBFCC;
  --accent:        #f09820;
  --accent-dark:   #d4830e;
  --dark:          #1B3574;
  --text:          #374151;
  --text-light:    #6b7280;
  --bg:            #f9fafb;
  --white:         #ffffff;
  --border:        #e5e7eb;
  --green:         #25d366;
  --green-dark:    #1da851;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --trans: 0.3s ease;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 82px;
  --announce-h: 40px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h));
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { line-height: 1.75; }

/* ── 4. UTILITIES ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(10,123,139,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
}

.section-header { margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

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

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,123,139,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,123,139,0.4); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240,152,32,0.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ── 6. ANNOUNCEMENT BAR ──────────────────────────────────── */
.announcement-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 24px;
  position: relative;
  z-index: 1001;
}
.announcement-bar a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--trans);
}
.announcement-bar a:hover { color: #fff; }
.announcement-bar i { margin-right: 4px; }

/* ── 7. HEADER ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  background: white;
  border-radius: 10px;
  padding: 6px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}
.nav-phone:hover { color: var(--primary); }
.nav-phone i { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. MOBILE NAV ────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 1100;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  transition: var(--trans);
}
.mobile-nav-close:hover { background: var(--primary-light); color: var(--primary); }

.mobile-nav-logo { display: flex; align-items: center; gap: 10px; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--trans);
}
.mobile-nav-links a:hover { background: var(--primary-light); color: var(--primary); }

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-actions .btn { justify-content: center; }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  backdrop-filter: blur(3px);
}
.mobile-overlay.show { display: block; }

/* ── 9. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,53,116,0.85) 0%,
    rgba(0,168,190,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.hero-title span { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-review {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: fit-content;
  max-width: 480px;
}
.hero-review img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.hero-review-text { color: rgba(255,255,255,0.9); }
.stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 4px; }
.hero-review-text p { font-size: 0.88rem; line-height: 1.5; font-style: italic; }
.hero-review-text span { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── 10. MARQUEE ──────────────────────────────────────────── */
.marquee-section {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  padding: 0 28px;
}
.marquee-track .dot {
  color: var(--accent);
  font-size: 1.2rem;
  padding: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 11. ABOUT ────────────────────────────────────────────── */
.about { background: var(--white); }

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

.about-desc {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

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

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.feature-text p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-stats-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mini-stat { text-align: center; }
.mini-num  { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--primary); }
.mini-label{ display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.mini-divider { width: 1px; height: 36px; background: var(--border); }

/* ── 12. SERVICES ─────────────────────────────────────────── */
.services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.svc-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  user-select: none;
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--trans);
}
.service-card:hover .svc-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-top: 6px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.svc-tags span {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 50px;
}

.svc-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
  border-top: 1px solid var(--border);
}
.svc-link:hover { color: var(--accent); gap: 10px; }

/* ── 13. WHY CHOOSE US ────────────────────────────────────── */
.why-us { background: var(--dark); color: var(--white); }
.why-us .section-badge { color: var(--accent); background: rgba(240,152,32,0.15); border-color: rgba(240,152,32,0.3); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.7); }

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

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary-mid);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--trans);
}
.why-card:hover .why-icon { background: var(--accent); }

.why-card h3 { font-size: 1.1rem; color: var(--white); }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }
.why-stat {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
}
.why-stat span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── 14. GALLERY ──────────────────────────────────────────── */
.gallery { background: var(--bg); }

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,123,139,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── 15. TEAM ─────────────────────────────────────────────── */
.team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.team-photo-wrap {
  position: relative;
}
.team-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.team-cred-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}
.cred-badge {
  flex: 1;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.cred-badge strong { display: block; font-size: 0.82rem; color: var(--primary); }
.cred-badge small  { font-size: 0.72rem; color: var(--text-light); }

.team-bio { display: flex; flex-direction: column; gap: 16px; }
.team-bio h3 { font-size: 1.5rem; }
.team-bio p  { font-size: 0.95rem; color: var(--text-light); margin: 0; }

.team-specs { padding-top: 8px; }
.team-specs h4, .team-members-section h4 { margin-bottom: 10px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }

.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tags span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
}

.membership-list { display: flex; gap: 10px; flex-wrap: wrap; }
.membership-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid rgba(10,123,139,0.2);
  padding: 6px 16px;
  border-radius: 8px;
}

.team-actions { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 8px; }

/* ── 16. TESTIMONIALS ─────────────────────────────────────── */
.testimonials { background: var(--bg); }

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.t-quote { color: var(--primary-light); font-size: 2.5rem; line-height: 1; }
.t-stars  { color: var(--accent); font-size: 1rem; display: flex; gap: 2px; }

.t-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  max-width: 700px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.t-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.t-author strong { display: block; font-size: 1rem; color: var(--dark); }
.t-author span   { font-size: 0.85rem; color: var(--text-light); }

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { border-color: var(--primary); color: var(--primary); }

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ── 17. CONTACT ──────────────────────────────────────────── */
.contact { background: var(--white); }

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

.contact-cta h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-cta > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 14px;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.contact-action-btn:hover { transform: translateX(6px); box-shadow: var(--shadow); }

.contact-action-btn.call:hover  { border-color: var(--primary); }
.contact-action-btn.whatsapp:hover { border-color: var(--green); }
.contact-action-btn.email:hover { border-color: var(--accent); }

.cab-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.call .cab-icon    { background: var(--primary); }
.whatsapp .cab-icon{ background: var(--green); }
.email .cab-icon   { background: var(--accent); }

.cab-text { flex: 1; }
.cab-text span  { display: block; font-size: 0.8rem; color: var(--text-light); }
.cab-text strong{ display: block; font-size: 1rem; color: var(--dark); }

.cab-arrow { color: var(--text-light); font-size: 0.85rem; }

.hours-card, .map-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.hours-card h3, .map-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}
.hours-card h3 i, .map-card h3 i { color: var(--primary); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .highlight-row td { color: var(--primary); }

.map-address { font-size: 0.92rem; color: var(--text-light); margin-bottom: 14px; }

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.map-placeholder i  { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.6; }
.map-placeholder p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.map-placeholder small { opacity: 0.7; }

/* ── 18. FOOTER ───────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-col li i { color: var(--primary-mid); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-col a { transition: var(--trans); }
.footer-col a:hover { color: var(--primary-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom i { color: #e74c3c; }

/* ── 19. FLOATING WHATSAPP ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--trans);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  background: var(--green-dark);
  transform: scale(1.12);
  animation: none;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ── 20. SCROLL TO TOP ────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── 21. REVEAL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delay for grid children */
.services-grid .service-card:nth-child(3n+2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3n+3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.3s; }

/* ── 22. MEDIA QUERIES ────────────────────────────────────── */

/* Tablet — max 1024px */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-phone { display: none; }
}

/* Tablet portrait — max 768px */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hide desktop nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 92vh; padding: 80px 0 50px; }
  .hero-stats {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 0;
    width: 100%;
  }
  .stat-item { flex: 1; min-width: 80px; padding: 8px 12px; }
  .stat-divider { display: none; }
  .hero-review { max-width: 100%; flex-wrap: wrap; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; }
  .about-stats-card { bottom: -16px; left: 16px; right: 16px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-photo-wrap { max-width: 400px; margin: 0 auto; }
  .team-cred-badges { bottom: 16px; left: 16px; right: 16px; }

  /* Testimonials */
  .testimonial-card { padding: 32px 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Mobile — max 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { justify-content: space-around; }
  .stat-number { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; justify-content: center; }

  .team-actions { flex-direction: column; }
  .team-actions .btn { width: 100%; justify-content: center; }

  .testimonial-card { padding: 28px 20px; }
  .t-text { font-size: 0.95rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .scroll-top { bottom: 82px; right: 20px; }
}
