/* ============================================================
   STYLE.CSS — Component Styles for RB Care Service Pune
   Imports: variables.css, utilities.css, grid.css
   ============================================================ */
@import url('variables.css');
@import url('utilities.css');
@import url('grid.css');

/* Google Fonts loaded in HTML */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  height: 100%;
  background-color: #0f172a;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Headings ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}
h1 { font-size: var(--text-3xl); margin-bottom: var(--spacing-lg); }
h2 { font-size: var(--text-2xl); margin-bottom: var(--spacing-md); }
h3 { font-size: var(--text-xl);  margin-bottom: var(--spacing-sm); }
h4 { font-size: var(--text-lg);  margin-bottom: var(--spacing-sm); }
p  { margin-bottom: var(--spacing-md); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242,153,74,0.35);
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-lg { padding: 1rem 2rem; font-size: var(--text-md); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-sm); }
.btn-block { width: 100%; }

/* ── Section Header ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-2xl);
}
.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}
.section-header h2 { color: var(--color-text); }
.section-header p  { color: var(--color-muted); font-size: var(--text-md); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  text-decoration: none;
}
.logo img { height: 40px; width: auto; }
.logo span { color: var(--color-primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .nav-menu { gap: 1.5rem; }
}
.nav-menu a {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-fast);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--color-primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-cta { margin-left: var(--spacing-md); }
.nav-cta .btn {
  padding: 0.55rem 1.25rem;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-sticky) + 10);
}
.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-normal);
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #fff; }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #fff; }

@media (max-width: 767px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 7, 15, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    gap: var(--spacing-xl);
    border-left: none;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: var(--z-sticky);
  }
  .nav-menu.active { opacity: 1; pointer-events: auto; }
  .nav-menu a {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.85);
    font-weight: var(--font-weight-semibold);
    padding: 0.6rem 0;
    letter-spacing: 0.02em;
  }
  .nav-menu a:hover, .nav-menu a.active { color: #fff; }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: var(--spacing-lg); }
  .nav-cta .btn { padding: 0.85rem 2.5rem; font-size: var(--text-base); border-radius: var(--radius-full); }
  .nav-overlay { display: none; }
  .nav-overlay.active { display: none; }
}

/* ============================================================
   MOBILE BOTTOM CTA BAR
   ============================================================ */
.mobile-bottom-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-floating);
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    background: rgba(5, 7, 15, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
  }
  .mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
  }
  .mobile-bottom-bar .mb-call {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-bottom-bar .mb-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-bottom-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
  .floating-actions { display: none; }
}

/* ============================================================
   HERO SECTION — Lovable Style with Chromium Shine Layer
   ============================================================ */
.hero {
  padding: var(--spacing-3xl) 0 var(--spacing-4xl);
  background: linear-gradient(135deg, #f2f7fc 0%, #eef5f8 40%, #fdf6ee 100%);
  position: relative;
  overflow: hidden;
}

/* Chromium Gloss Specular Layer */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(220, 235, 250, 0.35) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(220, 235, 250, 0.35) 55%,
    rgba(255, 255, 255, 0.15) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: chromeShimmer 10s ease-in-out infinite;
}

/* Metallic Orb Background Accents */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(111, 207, 151, 0.12) 0%, rgba(10, 101, 149, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes chromeShimmer {
  0% { transform: translateX(-30%) translateY(-10%) rotate(0deg); opacity: 0.7; }
  50% { transform: translateX(20%) translateY(5%) rotate(3deg); opacity: 1; }
  100% { transform: translateX(-30%) translateY(-10%) rotate(0deg); opacity: 0.7; }
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1.1;
}

.hero-visual {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

/* Chromium Metallic Badge */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, rgba(235, 246, 240, 0.9), rgba(220, 240, 230, 0.95));
  border: 1px solid rgba(111, 207, 151, 0.4);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.9), 0 2px 8px rgba(111,207,151,0.15);
  border-radius: var(--radius-full);
  color: #27ae60;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(10px);
}

.hero-badge-pill .dot {
  width: 8px;
  height: 8px;
  background-color: #27ae60;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(39, 174, 96, 0.6);
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a2530;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero h1 .highlight-orange {
  color: #f2994a;
  position: relative;
  display: inline-block;
}

.hero .lead {
  font-size: 1.05rem;
  color: #55606e;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: var(--spacing-xl);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-call {
  background: linear-gradient(135deg, #f2994a 0%, #e07e2a 100%);
  color: #ffffff;
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(242, 153, 74, 0.35);
  transition: all var(--transition-normal);
}

.btn-hero-call:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 12px 30px rgba(242, 153, 74, 0.45);
  color: #ffffff;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.7);
  color: #0a6595;
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #0a6595;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.btn-hero-outline:hover {
  background: #0a6595;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 101, 149, 0.25);
}

/* Chromium Polished Photo Frame */
.hero-image-wrap {
  width: 100%;
  max-width: 540px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 220, 240, 0.5));
  padding: 8px;
  box-shadow: 
    0 20px 40px -10px rgba(10, 40, 80, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(180,210,240,0.6), rgba(255,255,255,0.9), rgba(111,207,151,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Sheen Overlay on Image */
.hero-image-wrap .chrome-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: shineSweep 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shineSweep {
  0% { left: -100%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 768px) {
  .hero { padding: var(--spacing-4xl) 0; }
  .hero h1 { font-size: var(--text-4xl); }
}
@media (max-width: 767px) {
  .hero-inner { flex-direction: column; text-align: center; gap: var(--spacing-xl); }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { justify-content: center; width: 100%; }
  .hero-image-wrap img { height: 260px; }
  .hero h1 { font-size: 2.1rem; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: var(--spacing-xl) var(--spacing-lg);
  margin-top: calc(var(--spacing-2xl) * -1);
  position: relative;
  z-index: 10;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label { font-size: var(--text-sm); color: var(--color-muted); margin-top: var(--spacing-xs); }
.stat-divider { width: 1px; height: 48px; background: var(--color-border); }
@media (max-width: 576px) {
  .stats-bar-inner { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
}

/* ============================================================
   SERVICE CARDS — High Contrast & 3D Appliance Models
   ============================================================ */
.bg-surface {
  background-color: #f1f6fa !important;
}

.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(10, 101, 149, 0.14);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(10, 50, 90, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(10, 101, 149, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(10, 101, 149, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-body {
  padding: 1.75rem var(--spacing-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fafc 0%, #eef5fb 100%);
  border: 1px solid rgba(10, 101, 149, 0.12);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  padding: 10px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(10, 101, 149, 0.06);
  transition: all 0.35s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
  border-color: rgba(10, 101, 149, 0.25);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 1), 0 8px 20px rgba(10, 101, 149, 0.12);
}

.service-3d-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-3d-img {
  transform: scale(1.15) translateY(-2px);
}

.service-card h3 {
  font-size: 1.25rem;
  color: #1a2530;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #55606e;
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-top: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card .btn-text:hover { color: var(--color-accent); }
.service-card .btn-text .arrow { transition: transform var(--transition-fast); }
.service-card:hover .btn-text .arrow { transform: translateX(6px); }

/* ============================================================
   BRAND GRID
   ============================================================ */
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: var(--color-text);
}
.brand-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--color-primary);
}
.brand-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.brand-card:hover .brand-card-icon { background: var(--color-primary); color: var(--color-white); }
.brand-card h4 { font-size: var(--text-sm); font-weight: var(--font-weight-semibold); margin-bottom: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}
.about-text { flex: 1.2; }
.about-image { flex: 1; }
.about-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-badge {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.about-badge-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.about-badge-text { font-size: var(--text-sm); font-weight: var(--font-weight-semibold); color: var(--color-text); line-height: 1.3; }
.about-features { margin-top: var(--spacing-xl); }
.about-feature {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,101,149,0.06);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about-feature h4 { font-size: var(--text-base); margin-bottom: 4px; }
.about-feature p  { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }
@media (max-width: 767px) { .about-content { flex-direction: column; } }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.review-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  transition: all var(--transition-normal);
}
.review-card:hover {
  border-color: rgba(10, 101, 149, 0.3);
  box-shadow: 0 8px 32px rgba(10, 101, 149, 0.12);
  background: rgba(255, 255, 255, 0.75);
}
.review-stars { color: #f59e0b; font-size: var(--text-lg); letter-spacing: 2px; }
.review-text {
  color: var(--color-text);
  font-size: var(--text-base);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}
.review-author { display: flex; align-items: center; gap: var(--spacing-md); }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
}
.review-author h4 { font-size: var(--text-base); margin-bottom: 2px; }
.review-author p  { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }

/* ============================================================
   BOOKING PROCESS & WHY CHOOSE US
   ============================================================ */
.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.section-title-left {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a2530;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.process-intro {
  font-size: 1.05rem;
  color: #55606e;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.process-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.process-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1rem;
  color: #333d47;
  line-height: 1.5;
}

.check-icon {
  color: #27ae60;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reasons-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.reasons-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #333d47;
  line-height: 1.55;
}

.reasons-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: #f2994a;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .grid-2-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section-title-left {
    font-size: 1.75rem;
  }
}

/* ============================================================
   FAQ SECTION — Lovable Card Style
   ============================================================ */
.faq-cards-wrap {
  max-width: 820px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card-item {
  background: #ffffff;
  border: 1px solid rgba(10, 101, 149, 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card-item:hover {
  border-color: rgba(10, 101, 149, 0.25);
  box-shadow: 0 8px 24px rgba(10, 101, 149, 0.08);
}

.faq-card-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a2530;
  transition: color 0.25s ease;
  user-select: none;
  gap: 1rem;
}

.faq-card-item .faq-question:hover {
  color: #0a6595;
}

.faq-icon-plus {
  color: #f2994a;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card-item .faq-question.open .faq-icon-plus {
  transform: rotate(45deg);
}

.faq-card-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-card-item .faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: #55606e;
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Classic FAQ fallback */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: color var(--transition-fast);
  user-select: none;
  gap: var(--spacing-md);
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(10,101,149,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  color: var(--color-primary);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 var(--spacing-lg);
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table { width: 100%; border-collapse: collapse; margin: var(--spacing-xl) 0; }
.pricing-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
}
.pricing-table td {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.pricing-table tr:hover td { background: var(--color-surface); }
.pricing-table tr:last-child td { border-bottom: none; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout { display: flex; gap: var(--spacing-2xl); align-items: flex-start; }
.contact-info { flex: 1; }
.contact-form-wrap { flex: 1.2; }
.contact-detail { display: flex; gap: var(--spacing-md); margin-bottom: var(--spacing-xl); }
.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,101,149,0.06);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: var(--text-base); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }
.contact-detail a:hover { color: var(--color-primary); }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { text-align: center; margin-bottom: var(--spacing-xl); }
.form-group { margin-bottom: var(--spacing-md); }
.form-row { display: flex; gap: var(--spacing-md); }
.form-row .form-group { flex: 1; }
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-muted);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10,101,149,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}
@media (max-width: 576px) {
  .form-row { flex-direction: column; gap: 0; }
  .contact-layout { flex-direction: column; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(10, 101, 149, 0.92), rgba(6, 70, 104, 0.95));
  color: var(--color-white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: var(--text-md); max-width: 600px; margin: 0 auto var(--spacing-lg); }
.cta-banner .btn-accent:hover { background: #fff; color: var(--color-accent); border-color: #fff; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  background: linear-gradient(135deg, #f0f7fc 0%, #e8f5f0 100%);
  text-align: center;
}
.page-hero .hero-badge { margin-bottom: var(--spacing-md); }
.page-hero h1 { max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero p {
  color: var(--color-muted);
  font-size: var(--text-md);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero-actions { display: flex; gap: var(--spacing-md); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTENT SECTION (inner pages)
   ============================================================ */
.content-section { max-width: 820px; margin: 0 auto; }
.content-section h2 {
  margin-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(10,101,149,0.1);
}
.content-section p { color: var(--color-muted); line-height: var(--line-height-relaxed); }
.content-section ul {
  padding-left: var(--spacing-lg);
  list-style: disc;
  color: var(--color-muted);
  margin-bottom: var(--spacing-md);
}
.content-section ul li { margin-bottom: var(--spacing-sm); line-height: var(--line-height-relaxed); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-sm);
  color: var(--color-muted);
  padding: var(--spacing-md) 0;
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb-sep { color: var(--color-light); }

/* ============================================================
   FOOTER — Lovable Modern Slate Style
   ============================================================ */
.site-footer {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1200px) {
  .site-footer .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand .logo span {
  color: #6FCF97;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-badge-msme {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #cbd5e1;
  font-weight: 500;
}

.site-footer h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #f2994a;
  border-radius: 2px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.65rem;
}

.site-footer ul a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.site-footer ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-contact-item a {
  color: #94a3b8;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-hours-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 6px;
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.825rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-disclaimer-text {
  font-size: 0.75rem;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    text-align: center;
    padding: 3rem 0 calc(1.5rem + 70px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand .logo {
    justify-content: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact-item {
    justify-content: center;
  }
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  z-index: var(--z-floating);
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: all var(--transition-normal);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fab:hover { transform: scale(1.1); color: var(--color-white); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.fab-phone   { background: rgba(10, 101, 149, 0.85); border: 1px solid rgba(255,255,255,0.2); }
.fab-whatsapp{ background: rgba(37, 211, 102, 0.85); border: 1px solid rgba(255,255,255,0.2); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { transition: none; }
  .hero-card { animation: none; }
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.dropdown-toggle .arrow { font-size: 0.6rem; transition: transform var(--transition-fast); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: var(--z-sticky);
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem !important;
  font-size: var(--text-sm) !important;
  font-weight: var(--font-weight-medium) !important;
  color: var(--color-text) !important;
  text-align: left;
  transition: all var(--transition-fast);
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--color-primary); color: var(--color-white) !important; }
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .dropdown-toggle .arrow { transform: rotate(180deg); }

@media (max-width: 767px) {
  .dropdown { width: 100%; text-align: center; }
  .dropdown-toggle { justify-content: center; }
  .dropdown-menu {
    position: static;
    transform: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none;
    box-shadow: none;
    border-radius: var(--radius-md);
    padding: 0;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-width: unset;
    transition: all 0.35s ease;
  }
  .dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 0.75rem 0.5rem;
  }
  .dropdown-menu a {
    padding: 0.4rem 0.8rem !important;
    font-size: var(--text-sm) !important;
    color: rgba(255,255,255,0.75) !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: var(--radius-full) !important;
    display: inline-block !important;
  }
  .dropdown-menu a:hover { background: var(--color-accent) !important; color: #fff !important; }
}
