/* =============================================
   CMS LAUNDRY — PREMIUM WEBSITE STYLES
   Color Palette: White + Royal Blue (#1A6FBF)
   Typography: DM Serif Display + Outfit
============================================= */

:root {
  --blue: #1A6FBF;
  --blue-dark: #144F8A;
  --blue-light: #E8F3FD;
  --blue-mid: #2980D4;
  --accent: #F5A623;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --text: #1A2332;
  --text-mid: #4A5568;
  --text-light: #8898AA;
  --border: #E2EBF5;
  --shadow: 0 4px 24px rgba(26,111,191,0.10);
  --shadow-lg: 0 12px 48px rgba(26,111,191,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-family: 'Outfit', sans-serif; font-weight: 600; }
em { font-style: italic; color: var(--blue); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(26,111,191,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,191,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin: 0.5rem 0 1rem; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.section-label-light {
  background: rgba(255,255,255,0.15);
  color: white;
}

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

/* =============================================
   NAVIGATION
============================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--blue); }
.logo-sub { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-cta {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

/* =============================================
   HERO
============================================= */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 60%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #7ec8f7;
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--shadow);
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0.1); }
}
.hero-headline { color: var(--text); }
.hero-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.stat-number small { font-size: 1rem; font-family: 'Outfit', sans-serif; }
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.hero-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideIn 0.8s ease 0.2s both;
}
.card-icon-wrap { flex-shrink: 0; }
.card-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.card-sub { font-size: 0.82rem; color: var(--text-light); margin-top: 0.1rem; }
.hero-card-secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--blue-light);
  border-color: rgba(26,111,191,0.15);
  animation: slideIn 0.8s ease 0.4s both;
}
.delivery-emoji { font-size: 2rem; }
.hero-card-tertiary {
  animation: slideIn 0.8s ease 0.6s both;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.25rem; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   SERVICES
============================================= */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.service-card-featured h3, .service-card-featured p { color: white; }
.service-card-featured::before { background: white; }
.featured-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon-white { background: rgba(255,255,255,0.2); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.service-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.service-card-featured p { color: rgba(255,255,255,0.8); }
.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }
.service-link-white { color: white; }

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works { background: white; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon-wrap {
  width: 72px; height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step p { color: var(--text-mid); font-size: 0.9rem; }
.step-connector {
  font-size: 2rem;
  color: var(--blue);
  opacity: 0.3;
  margin-top: 4rem;
  flex-shrink: 0;
}

/* =============================================
   SUBSCRIPTION PLANS
============================================= */
.plans { background: var(--off-white); }
.discount-ribbon {
  background: linear-gradient(135deg, var(--accent), #E8941A);
  color: white;
  text-align: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.plan-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-top { display: flex; flex-direction: column; gap: 0.35rem; }
.plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text);
}
.plan-featured .plan-name { color: white; }
.plan-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.plan-label-white { color: rgba(255,255,255,0.7); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.price-sign { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.plan-featured .price-sign { color: rgba(255,255,255,0.8); }
.price-val { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--text); }
.plan-featured .price-val { color: white; }
.price-per { font-size: 0.85rem; color: var(--text-light); margin-left: 0.25rem; }
.plan-featured .price-per { color: rgba(255,255,255,0.65); }
.plan-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.plan-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.plan-perks-white li { color: rgba(255,255,255,0.85); }
.perk-check { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.plan-featured .perk-check { color: rgba(255,255,255,0.9); }
.plan-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.plan-btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
}
.plan-btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.plan-btn-white {
  background: white;
  color: var(--blue);
}
.plan-btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }

/* =============================================
   PRICE LIST
============================================= */
.pricing { background: white; }
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.price-col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-col-header {
  background: var(--blue);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.price-table tr:last-child { border-bottom: none; }
.price-table tr:hover { background: var(--blue-light); }
.price-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.price-cell {
  text-align: right;
  color: var(--blue) !important;
  font-weight: 600;
}
.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.pricing-cta p { color: var(--text-mid); }
.pricing-cta a[href^="tel"] { color: var(--blue); font-weight: 600; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials { background: var(--off-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.testi-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--blue-light);
  line-height: 0.8;
}
.testi-featured .testi-quote { color: rgba(255,255,255,0.25); }
.testi-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.testi-featured p { color: rgba(255,255,255,0.88); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar-white { background: rgba(255,255,255,0.2); color: white; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testi-featured .testi-author strong { color: white; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.testi-featured .testi-author span { color: rgba(255,255,255,0.65); }

/* =============================================
   BOOKING
============================================= */
.booking {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.booking-left { padding-top: 1rem; }
.booking-left h2 { color: white; margin: 1rem 0; }
.booking-left p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.b-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.b-contact:hover { background: rgba(255,255,255,0.2); transform: translateX(4px); }
.booking-right {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.b-form { display: flex; flex-direction: column; gap: 1.25rem; }
.b-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.b-group { display: flex; flex-direction: column; gap: 0.4rem; }
.b-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.b-group input, .b-group select, .b-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
}
.b-group input:focus, .b-group select:focus, .b-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,191,0.1);
}
.b-group textarea { resize: vertical; }
.b-submit { margin-top: 0.5rem; }
.b-disclaimer { text-align: center; font-size: 0.78rem; color: var(--text-light); }
.b-success {
  text-align: center;
  padding: 2rem;
}
.b-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.b-success h3 { color: var(--text); margin-bottom: 0.5rem; }
.b-success p { color: var(--text-mid); }

/* =============================================
   CONTACT
============================================= */
.contact { background: var(--off-white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1rem; }
.contact-left h2 { margin-top: 0.25rem; }
.contact-left > p { color: var(--text-mid); }
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.c-icon { font-size: 1.2rem; flex-shrink: 0; }
.c-item strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 0.15rem; }
.c-item span, .c-item a { font-size: 0.9rem; color: var(--text-mid); }
.c-item a:hover { color: var(--blue); }
.contact-map-box {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  text-align: center;
  padding: 2rem;
}
.map-pin-big { font-size: 3rem; margin-bottom: 1rem; }
.map-inner h3 { color: var(--text); margin-bottom: 0.5rem; }
.map-inner p { color: var(--text-mid); }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--text);
  color: white;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.f-name { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: white; }
.f-sub { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.f-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.f-social:hover { border-color: white; color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-label {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text);
  border-right: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; }
  .hero-card-main { flex: 1; min-width: 200px; }
  .hero-card-secondary, .hero-card-tertiary { flex: 1; min-width: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .step { max-width: 100%; width: 100%; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hero { padding: 8rem 0 4rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .b-row { grid-template-columns: 1fr; }
  .booking-right { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-visual { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}
