/* ═══════════════════════════════════════════════════════
   ANNAWASH — Water-Inspired Organic Design
   Pure CSS — No frameworks, no Tailwind
   Google Ads Compliant | Tamil Nadu Car Wash Service
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ocean: #0c2340;
  --ocean-light: #1a3a5c;
  --sky: #4da8da;
  --sky-hover: #3d98ca;
  --seafoam: #a8e6cf;
  --pearl: #fafbfc;
  --light-blue: #f0f7fc;
  --light-blue-border: #e0eef8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --green-500: #22c55e;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: #1a2a3a;
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(77,168,218,0.08);
}

.navbar-topbar {
  height: 40px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  overflow: hidden;
}
.navbar.scrolled .navbar-topbar {
  height: 0;
  opacity: 0;
}
.navbar-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 0.875rem;
}
.navbar-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.navbar-topbar-left a:hover { color: #fff; }
.navbar-topbar-right {
  display: none;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) {
  .navbar-topbar-right { display: block; }
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .navbar-main { height: 72px; }
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.navbar.scrolled .navbar-logo-icon {
  background: var(--ocean);
}
.navbar-logo-icon svg {
  width: 20px;
  height: 20px;
  transition: color 0.3s ease;
  color: #fff;
}
.navbar.scrolled .navbar-logo-icon svg { color: var(--sky); }

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s ease;
}
.navbar.scrolled .navbar-logo-text { color: var(--ocean); }

.navbar-logo-sub {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: -3px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.navbar.scrolled .navbar-logo-sub { color: var(--sky); }

/* Desktop nav links */
.navbar-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}
.navbar-links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.8);
}
.navbar-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.navbar-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.navbar.scrolled .navbar-links a {
  color: rgba(12,35,64,0.7);
}
.navbar.scrolled .navbar-links a:hover {
  color: var(--ocean);
  background: rgba(12,35,64,0.05);
}
.navbar.scrolled .navbar-links a.active {
  color: var(--ocean);
  background: rgba(12,35,64,0.1);
}

.navbar-cta {
  margin-left: 12px;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--ocean);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.navbar-cta:hover { background: rgba(255,255,255,0.9); }
.navbar.scrolled .navbar-cta {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 4px 12px rgba(12,35,64,0.2);
}
.navbar.scrolled .navbar-cta:hover { background: rgba(12,35,64,0.9); }

/* Mobile toggle */
.navbar-toggle {
  display: block;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.navbar.scrolled .navbar-toggle { color: var(--ocean); }
@media (min-width: 1024px) {
  .navbar-toggle { display: none; }
}
.navbar-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s ease;
  margin-bottom: 4px;
}
.mobile-menu a:hover {
  background: var(--gray-50);
  color: var(--ocean);
}
.mobile-menu a.active {
  background: rgba(12,35,64,0.1);
  color: var(--ocean);
}
.mobile-menu-cta {
  display: block;
  margin-top: 8px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--ocean);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,35,64,0.9), rgba(12,35,64,0.7), rgba(12,35,64,0.4));
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 8rem;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--sky); }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--sky); }
.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
.hero-stats .stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
}
.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
.page-hero .container { position: relative; z-index: 10; }
.page-hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 640px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 4px 16px rgba(77,168,218,0.25);
}
.btn-primary:hover { background: var(--sky-hover); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-dark {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 4px 16px rgba(12,35,64,0.15);
}
.btn-dark:hover { background: rgba(12,35,64,0.9); }
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-lg { padding: 5rem 0 7rem; }
@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
  .section-lg { padding: 7rem 0; }
}
.section-blue { background: linear-gradient(to bottom, var(--light-blue), #fff); }
.section-dark {
  background: var(--ocean);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════
   SERVICE CARDS (Home)
   ═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.5s ease;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.service-card-img {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.service-card-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
}
.service-card-body { padding: 1.25rem; }
.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(77,168,218,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--sky);
}
.service-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ocean);
}
.service-card-desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   WHY US / FEATURES
   ═══════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-item svg {
  width: 20px;
  height: 20px;
  color: var(--sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.check-item span { color: var(--gray-600); }

.img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,35,64,0.1);
}
.img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 1.25rem;
  max-width: 240px;
}
.floating-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.floating-card-header svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
}
.floating-card-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ocean);
}
.floating-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
  padding: 5rem 0;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(77,168,218,0.05);
  transform: translate(50%, -50%);
}
.cta-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(77,168,218,0.05);
  transform: translate(-50%, 50%);
}
.cta-section .container { position: relative; z-index: 10; }
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--ocean);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  transform: translateY(-59px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.footer-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(77,168,218,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-icon svg { width: 20px; height: 20px; color: var(--sky); }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-brand-sub {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: -3px;
  color: var(--sky);
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--sky); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact span,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.footer-contact a:hover { color: var(--sky); }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE — DETAIL BLOCKS
   ═══════════════════════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail.reverse .service-detail-img { order: 2; }
  .service-detail.reverse .service-detail-content { order: 1; }
}
.service-detail-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(77,168,218,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-icon svg { width: 20px; height: 20px; color: var(--sky); }
.service-detail-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ocean);
}
.service-detail-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--gray-400);
}
.service-detail-duration svg { width: 14px; height: 14px; }
.service-detail-desc {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .service-features { grid-template-columns: 1fr 1fr; }
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-feature svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.service-feature span {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.pricing-box {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 1rem;
}
.pricing-box h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.pricing-row:last-child { margin-bottom: 0; }
.pricing-type { font-size: 0.875rem; color: var(--gray-600); }
.pricing-amount { font-size: 0.875rem; font-weight: 700; color: var(--ocean); }

/* Disclaimer */
.disclaimer {
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: 12px;
  padding: 1.5rem;
}
.disclaimer h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--amber-800);
  margin-bottom: 0.5rem;
}
.disclaimer p {
  font-size: 0.875rem;
  color: var(--amber-700);
  line-height: 1.7;
}
.disclaimer a {
  text-decoration: underline;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.info-box {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 1.5rem;
}
.info-box h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}
.info-box-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.info-box-row svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.info-box-row span,
.info-box-row a {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.info-box-row a:hover { color: var(--sky); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(77,168,218,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card-icon svg { width: 24px; height: 24px; color: var(--sky); }
.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
}
.city-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--light-blue);
  border: 1px solid var(--light-blue-border);
}
.city-tag svg {
  width: 14px;
  height: 14px;
  color: var(--sky);
  flex-shrink: 0;
}
.city-tag span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ocean);
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--light-blue);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(77,168,218,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--sky); }
.contact-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.contact-card a:hover { color: var(--sky); }

.contact-form-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  padding: 2rem;
}
.contact-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  outline: none;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(77,168,218,0.15);
}
.form-group textarea { resize: none; }
.form-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 1rem;
}
.form-note a { color: var(--sky); }
.form-note a:hover { text-decoration: underline; }

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--green-500);
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ═══════════════════════════════════════════════════════ */
.legal-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 4rem 0;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.legal-content strong { font-weight: 600; }
.legal-contact-box {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 0.75rem;
}
.legal-contact-box p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.legal-contact-box a { color: var(--sky); }
.legal-contact-box a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   SVG ICONS (inline)
   ═══════════════════════════════════════════════════════ */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-sky { color: var(--sky); }
