/* Updated: v2 - forced styles hardened */
/* style.css — Madakkum Chulivum | Laundry & Ironing Service, Perinthalmanna, Kerala */

/* ========== CSS VARIABLES ========== */
:root {
  --sky: #2a8fc4;
  --sky-light: #e0f4fd;
  --sky-pale: #f0faff;
  --sky-deep: #1a6fa8;
  --steam: #c8e8f4;
  --steam-light: #e8f6fc;
  --rose: #f4a0b5;
  --rose-light: #fce4ec;
  --rose-pale: #fff0f5;
  --rose-deep: #e8789b;
  --gold: #d4a050;
  --gold-light: #f7e9d0;
  --charcoal: #1e3a4a;
  --charcoal-light: #3a5a70;
  --white: #ffffff;
  --off-white: #f8fcff;
  --gray-light: #eef6fb;
  --gray: #8aaabb;
  --green: #4caf91;
  --wa-green: #25d366;
  --shadow-sm: 0 2px 8px rgba(42,143,196,0.10);
  --shadow-md: 0 8px 24px rgba(42,143,196,0.15);
  --shadow-lg: 0 16px 48px rgba(42,143,196,0.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --nav-h: 72px;
  --transition: all 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
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: var(--font-body); font-size: 1rem; width: 100%; }

/* ========== STEAM BACKGROUND WISPS ========== */
.steam-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.steam-wisp {
  position: absolute;
  border-radius: 50% 40% 60% 50%;
  opacity: 0;
  background: radial-gradient(ellipse, rgba(200,232,244,0.22) 0%, transparent 70%);
  animation: steamRise 14s ease-in-out infinite;
}
.sw1 { width: 180px; height: 300px; left: 5%;  bottom: -80px; animation-delay: 0s;   animation-duration: 16s; }
.sw2 { width: 140px; height: 240px; left: 22%; bottom: -60px; animation-delay: 4s;   animation-duration: 14s; }
.sw3 { width: 200px; height: 360px; left: 50%; bottom: -100px;animation-delay: 7s;   animation-duration: 18s; }
.sw4 { width: 120px; height: 200px; left: 72%; bottom: -50px; animation-delay: 2s;   animation-duration: 13s; }
.sw5 { width: 160px; height: 280px; left: 88%; bottom: -70px; animation-delay: 9s;   animation-duration: 15s; }

@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  15%  { opacity: 0.7; }
  70%  { opacity: 0.3; transform: translateY(-60vh) scaleX(1.4); }
  100% { opacity: 0; transform: translateY(-90vh) scaleX(1.6); }
}

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

/* ========== SECTION BASE ========== */
.section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: var(--sky-pale);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(42,143,196,0.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.accent { color: var(--sky); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(42,143,196,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--sky-deep), #0f5080);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,143,196,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff !important;
  color: #0a2540 !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid #0a2540 !important;
  transition: var(--transition);
}
.btn-secondary:hover { background: #f0f7ff !important; color: #0a2540 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a2540;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-xl);
  border: 2px solid #0a2540;
  transition: var(--transition);
}
.btn-outline:hover { background: #f0f7ff; box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ========== NAVBAR — FLUID GLASS ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(235, 248, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(42,143,196,0.25);
  box-shadow: 0 2px 12px rgba(42,143,196,0.12);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(42,143,196,0.06) 0%,
    rgba(200,232,244,0.10) 50%,
    rgba(42,143,196,0.06) 100%
  );
  pointer-events: none;
}
.navbar.scrolled {
  background: rgba(235, 248, 255, 0.90);
  box-shadow: 0 4px 24px rgba(42,143,196,0.18);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.logo-tagline-nav {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky-deep);
  font-style: italic;
  max-width: 160px;
  line-height: 1.3;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a2540;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--sky); background: rgba(42,143,196,0.08); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Express Delivery button */
.btn-express-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1a6fa8, #38b2e0);
  color: var(--white);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(56,178,224,0.35);
}
.btn-express-delivery:hover {
  background: linear-gradient(135deg, #155f90, #2a9fd4);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(56,178,224,0.45);
}

/* Mobile nav CTA hidden on desktop */
.nav-mobile-cta { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active 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; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 55, 90, 0.62) 0%,
    rgba(30, 100, 150, 0.38) 50%,
    rgba(200, 235, 250, 0.18) 100%
  );
}

/* Hero steam wisps */
.hero-steam { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hs-wisp {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,232,244,0.30) 0%, transparent 65%);
  animation: heroSteam 10s ease-in-out infinite;
}
.hs1 { width: 200px; height: 350px; left: 10%; bottom: 0; animation-delay: 0s; }
.hs2 { width: 150px; height: 280px; left: 40%; bottom: 0; animation-delay: 3.5s; }
.hs3 { width: 180px; height: 320px; left: 75%; bottom: 0; animation-delay: 6.5s; }
@keyframes heroSteam {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.2; transform: translateY(-55vh) scaleX(1.5); }
  100% { opacity: 0; transform: translateY(-80vh) scaleX(1.7); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 32px;
}
.hero-right-note { display: none; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 22px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  max-width: 680px;
}
.hero-title-accent {
  color: #87d8f7;
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-body {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 520px;
  animation: fadeUp 0.8s ease 0.5s both;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: #0a2540 !important;
  line-height: 1;
  text-shadow: none !important;
}
.stat-label { font-size: 0.68rem; color: #1a3a5c !important; font-weight: 700; text-align: center; margin-top: 3px; letter-spacing: 0.02em; }
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

/* ========== ABOUT SECTION ========== */
.about { background: var(--white); }
.about-header { margin-bottom: 36px; }
.about-intro {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 780px;
  margin-bottom: 12px;
}
.about-target {
  font-size: 1rem;
  color: var(--sky);
  font-weight: 600;
  max-width: 700px;
  margin-bottom: 24px;
}
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.badge-pill {
  background: var(--sky-pale);
  border: 1px solid rgba(42,143,196,0.2);
  color: var(--sky-deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
}

/* About happy layout */
.about-happy {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.happy-img-wrap { position: relative; }
.happy-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.happy-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.happy-badge-left { bottom: 24px; left: -16px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--sky-pale);
  border: 1px solid rgba(42,143,196,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,143,196,0.35);
}
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; color: var(--charcoal); }
.feature-card p { font-size: 0.85rem; color: var(--charcoal-light); }

/* ========== HOW IT WORKS ========== */
.how-it-works { background: linear-gradient(160deg, var(--sky-pale) 0%, var(--white) 100%); }
.steps-wrap { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(42,143,196,0.12);
}
.step-card:last-child { border-bottom: none; }
.step-card-reverse { direction: rtl; }
.step-card-reverse .step-content { direction: ltr; }
.step-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.step-img { width: 100%; height: 320px; object-fit: cover; }
.step-content { direction: ltr; }
.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(42,143,196,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.step-content h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--charcoal); margin-bottom: 14px; }
.step-content p { font-size: 1rem; color: var(--charcoal-light); margin-bottom: 20px; }
.step-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--sky);
  border-bottom: 2px solid var(--sky);
  padding-bottom: 2px;
  transition: var(--transition);
}
.step-cta:hover { color: var(--sky-deep); border-color: var(--sky-deep); }
.step-connector { text-align: center; padding: 8px 0; }
.step-connector span { font-size: 1.5rem; color: rgba(42,143,196,0.3); }

/* ========== SERVICES SECTION ========== */
.services { background: var(--white); }
.services-intro { font-size: 1.05rem; color: var(--charcoal-light); margin-bottom: 40px; max-width: 600px; }
.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.service-tile {
  background: var(--sky-pale);
  border: 1.5px solid rgba(42,143,196,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-tile::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(42,143,196,0.07);
  transition: var(--transition);
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,143,196,0.4);
  background: white;
}
.service-tile:hover::before { transform: scale(2.5); }
.st-highlight {
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  border-color: transparent;
  color: white;
}
.st-highlight h3, .st-highlight p { color: white; }
.st-highlight::before { background: rgba(255,255,255,0.1); }
.st-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-tile h3 { font-size: 1rem; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.service-tile p { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.6; }
.st-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-weight: 800;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 1px;
  transition: var(--transition);
}
.st-cta:hover { color: white; border-color: white; }
.pricing-cta {
  text-align: center;
  padding: 40px;
  background: var(--sky-pale);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42,143,196,0.15);
}
.pricing-cta p { font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.pricing-cta p span { color: var(--sky); }
.pricing-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== RATE CARD SECTION ========== */
.ratecard {
  background: linear-gradient(160deg, #0a2a40 0%, #0f3d5c 50%, #1a5570 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.ratecard .section-label { background: rgba(255,255,255,0.12); color: #87d8f7; border-color: rgba(135,216,247,0.3); }
.ratecard .section-title { color: white; }
.ratecard .accent { color: #87d8f7; }
.ratecard-note { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }

/* Steam wisps in rate card */
.ratecard-steam { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.rc-wisp {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(135,216,247,0.12) 0%, transparent 70%);
  animation: steamRise 16s ease-in-out infinite;
}
.rc1 { width: 300px; height: 500px; left: -5%;  bottom: 0; animation-delay: 0s; }
.rc2 { width: 250px; height: 420px; left: 50%;  bottom: 0; animation-delay: 5s; }
.rc3 { width: 280px; height: 460px; left: 90%;  bottom: 0; animation-delay: 9s; }
.ratecard .container { position: relative; z-index: 1; }

.rc-block { margin-bottom: 40px; }
.rc-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid #87d8f7;
}
.rc-block-icon { font-size: 1.4rem; }
.rc-block-header h3 { font-size: 1.1rem; font-weight: 800; color: white; }
.rc-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.rc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 700px;
}
.rc-table thead tr { background: rgba(135,216,247,0.18); }
.rc-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 800;
  color: #87d8f7;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rc-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.07); transition: background 0.2s; }
.rc-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.rc-table td { padding: 11px 14px; color: rgba(255,255,255,0.88); }
.rc-item { font-weight: 700; color: white; }
.rc-price { color: #a8e6c8; font-weight: 700; }
.rc-na { color: rgba(255,255,255,0.25); text-align: center; }
.rc-table-sm { min-width: 300px; }

.rc-small-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.rc-small-block { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 20px; border: 1px solid rgba(255,255,255,0.08); }

.rc-footer-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.rc-badge {
  background: rgba(135,216,247,0.15);
  border: 1px solid rgba(135,216,247,0.3);
  color: #87d8f7;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
}

/* ========== REVIEWS ========== */
.reviews { background: var(--white); }
/* Happy banner */
.happy-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--sky-pale), var(--steam-light));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 48px;
  border: 1px solid rgba(42,143,196,0.15);
  text-align: center;
}
.hb-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--sky);
  flex-shrink: 0;
}
.hb-content { flex: 1; text-align: center; }
.hb-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: 6px;
}
.hb-sub { font-size: 0.9rem; color: var(--charcoal-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--sky-pale);
  border: 1px solid rgba(42,143,196,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--charcoal);
  flex-shrink: 0;
}
.reviewer-info { flex: 1; line-height: 1.3; }
.reviewer-info strong { font-size: 0.95rem; display: block; color: var(--charcoal); }
.reviewer-info span { font-size: 0.78rem; color: var(--gray); }
.review-stars { color: #f0a500; font-size: 0.9rem; flex-shrink: 0; }
.review-card p { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 16px; font-family: 'Noto Sans Malayalam', var(--font-body); }
.review-tag {
  display: inline-block;
  background: rgba(42,143,196,0.1);
  color: var(--sky-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.stat-b { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-b:last-child { border-right: none; }
.sb-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: white; }
.sb-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.social-row { text-align: center; }
.social-row p { color: var(--charcoal-light); font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; }
.social-links { display: flex; gap: 12px; justify-content: center; }
.social-link {
  width: 44px; height: 44px;
  background: var(--sky-pale);
  border: 1px solid rgba(42,143,196,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  transition: var(--transition);
}
.social-link:hover { background: var(--sky); color: white; transform: translateY(-2px); }

/* ========== GALLERY ========== */
.gallery { background: var(--sky-pale); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,42,64,0.85));
  color: white;
  padding: 24px 16px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-caption { transform: translateY(0); }

/* ========== FAQ ========== */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto 48px; }
.faq-item { border-bottom: 1px solid rgba(42,143,196,0.12); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--sky); flex-shrink: 0; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] { color: var(--sky); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-a.open { display: block; }
.faq-a p { color: var(--charcoal-light); font-size: 0.95rem; }
.faq-cta { text-align: center; }
.faq-cta p { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.faq-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { background: var(--sky-pale); }
.contact-complaint {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  margin-bottom: 40px;
}
.contact-complaint a { color: var(--sky); font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }
.req { color: #e53e3e; }
.optional { font-weight: 400; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(42,143,196,0.2);
  border-radius: var(--radius-sm);
  background: var(--sky-pale);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  background: white;
  box-shadow: 0 0 0 3px rgba(42,143,196,0.12);
}
.form-group textarea { resize: vertical; }
.btn-wa-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1db954, #128c3e);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa-submit:hover {
  background: linear-gradient(135deg, #1aac4e, #0f7a35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.form-wa-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; }
.form-msg.success { background: #e8f8f0; color: #276749; border: 1px solid #9ae6b4; }
.form-msg.error { background: #fff5f5; color: #c53030; border: 1px solid #feb2b2; }
/* ========== FETCH LOCATION ========== */
.location-input-wrap { display: flex; flex-direction: column; gap: 6px; }
.location-input-wrap input { width: 100%; }
.btn-fetch-location {
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
  background: #0a2540; color: #ffffff;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  padding: 5px 10px; height: auto; border-radius: var(--radius-sm);
  border: 2px solid #0a2540; cursor: pointer; white-space: nowrap;
  transition: var(--transition); flex-shrink: 0;
}
.btn-fetch-location:hover { background: #1a3a5c; border-color: #1a3a5c; transform: translateY(-1px); }
.btn-fetch-location:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-fetch-location svg { flex-shrink: 0; }
.location-status { font-size: 0.8rem; font-weight: 600; margin-top: 4px; }
.location-status.fetching { color: var(--sky-deep); }
.location-status.success { color: #276749; }
.location-status.error { color: #c53030; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42,143,196,0.1);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.cc-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
.contact-card > div { display: flex; flex-direction: column; gap: 6px; }
.contact-number-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-number-label { font-size: 0.95rem; color: var(--charcoal-light); font-weight: 600; flex-shrink: 0; width: 100%; }
.cc-action-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; border: 2px solid; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.cc-call-btn { color: #0a2540 !important; border-color: #0a2540 !important; background: transparent !important; }
.cc-call-btn:hover { background: #0a2540 !important; color: #ffffff !important; }
.cc-wa-btn { color: #128c3e !important; border-color: #128c3e !important; background: transparent !important; }
.cc-wa-btn:hover { background: #128c3e !important; color: #ffffff !important; }
.cc-wa-inline { display: inline-flex; align-items: center; color: #25d366; flex-shrink: 0; }
.cc-wa-inline:hover { color: #1aab52; }
.cc-escalation-note { font-size: 0.75rem; color: #c53030; font-weight: 600; margin-top: 2px; }
.contact-card-escalation { border-color: rgba(197,48,48,0.2); background: #fff8f8; }
.contact-card strong { font-size: 0.85rem; color: var(--sky-deep); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-card a, .contact-card span { font-size: 0.95rem; color: var(--charcoal-light); }
.contact-card a:hover { color: var(--sky); }

/* ========== FOOTER ========== */
.footer { background: #061a28; color: rgba(255,255,255,0.75); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 24px 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; }
.footer-brand-m { display: block; font-family: 'Noto Sans Malayalam', sans-serif; font-size: 1.05rem; font-weight: 700; color: white; }
.footer-brand-e { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.footer-tagline { font-size: 0.92rem; font-style: italic; color: #87d8f7; margin-bottom: 12px; font-weight: 600; }
.footer-about-blurb { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 0.85rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #87d8f7; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: #87d8f7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--sky); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-dev { color: rgba(135,216,247,0.6) !important; }

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1db954; transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
.mobile-float-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--sky-light);
}
.float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}
.float-call { background: #ffffff; color: #0a2540; border: 2px solid #0a2540; }
.float-call:hover { background: #f0f7ff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.float-wa { background: #ffffff; color: #0a2540; border: 2px solid #0a2540; }
.float-wa:hover { background: #f0f7ff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.float-icon { font-size: 1.1rem; }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.7); opacity: 0; } }

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-happy { grid-template-columns: 1fr; }
  .happy-img { height: 300px; }
  .step-card { grid-template-columns: 1fr 1fr; gap: 36px; }
  .rc-small-wrap { grid-template-columns: 1fr; }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }

  /* NAVBAR MOBILE */
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(235, 248, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    z-index: 999;
    align-items: flex-start;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link {
    padding: 13px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(42,143,196,0.12);
    border-radius: 0;
  }
  .nav-links .nav-link::after { display: none; }
  .nav-mobile-cta {
    display: block;
    width: 100%;
    padding: 16px 0 8px;
  }
  .nav-mobile-cta .btn-express-delivery {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .hamburger { display: flex; }
  .logo-img { height: 48px; }

  /* HERO */
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-content { grid-template-columns: 1fr; gap: 28px; padding-bottom: 80px; }
  .hero-right { padding: 24px 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .stat-item { padding: 10px 12px; }
  .stat-num { font-size: 1.35rem; }

  /* ABOUT */
  .about-happy { grid-template-columns: 1fr; gap: 32px; }
  .happy-img { height: 260px; }
  .feature-grid { grid-template-columns: 1fr; }
  .happy-badge-left { left: 8px; }

  /* STEPS */
  .step-card { grid-template-columns: 1fr; gap: 24px; }
  .step-card-reverse { direction: ltr; }
  .step-number { font-size: 3.5rem; }
  .step-img { height: 220px; }

  /* SERVICES */
  .service-tiles { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* RATE CARD */
  .rc-small-wrap { grid-template-columns: 1fr; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }
  .happy-banner { flex-direction: column; text-align: center; padding: 20px; }
  .hb-img { width: 80px; height: 80px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  /* GALLERY */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* FLOAT */
  .mobile-float-bar { display: flex; }
  .whatsapp-float { bottom: 76px; right: 16px; width: 52px; height: 52px; }
  body { padding-bottom: 60px; }

  /* PRICING CTA */
  .pricing-cta-btns { flex-direction: column; align-items: center; }
  .faq-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .service-tiles { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .rc-footer-badges { flex-direction: column; }
}

/* ========== ACTIVE NAV LINK ========== */
.nav-link.active-nav {
  color: var(--sky);
  background: rgba(42,143,196,0.10);
}
.nav-link.active-nav::after {
  transform: translateX(-50%) scaleX(1);
}
