/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #f8f6f2;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #faf8f5;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --text-primary: #1a1510;
  --text-secondary: #5c5347;
  --text-muted: #9a8e80;
  --accent: #d4940c;
  --accent-light: #e8a820;
  --accent-dark: #b87e08;
  --accent-glow: rgba(212, 148, 12, 0.2);
  --accent-glow-strong: rgba(212, 148, 12, 0.35);
  --gold: #d4940c;
  --gold-light: #e8a820;
  --cream: #f5e6c8;
  --foam: #eef4f0;
  --bubble: #d8eedf;
  --danger: #e04055;
  --border: rgba(26, 21, 16, 0.08);
  --border-accent: rgba(212, 148, 12, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.bg-glow {
  position: fixed; width: 600px; height: 600px; border-radius: 50%;
  filter: blur(150px); opacity: 0.15; pointer-events: none; z-index: 0;
}
.bg-glow-1 { top: -200px; right: -200px; background: var(--cream); }
.bg-glow-2 { bottom: -200px; left: -200px; background: var(--bubble); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}
.navbar.scrolled { padding: 10px 0; background: rgba(248, 246, 242, 0.97); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition-fast); position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: var(--transition-fast);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; background: var(--accent); color: #ffffff;
  font-weight: 700; font-size: 0.9rem; border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.nav-cta:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.nav-cta::after { display: none !important; }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.mobile-menu-btn span {
  width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: var(--transition-fast);
}
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(248, 246, 242, 0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
  color: var(--text-secondary); transition: var(--transition-fast);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; font-size: 2rem; color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; position: relative; overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(212, 148, 12, 0.08); border: 1px solid var(--border-accent);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  margin-bottom: 24px; animation: fadeInUp 0.6s ease-out;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-stat-value {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 800; color: var(--accent);
}
.hero-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.hero-image {
  position: relative; animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-image img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-image::before {
  content: ''; position: absolute; inset: -3px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent), transparent, var(--gold));
  z-index: -1; opacity: 0.5;
}
.hero-float-card {
  position: absolute; padding: 16px 20px; background: var(--bg-glass);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  backdrop-filter: blur(20px); animation: float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -20px; animation-delay: -3s; }
.hero-float-card .card-value {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 800; color: var(--accent);
}
.hero-float-card .card-label { font-size: 0.78rem; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 700;
  border-radius: var(--radius-md); transition: var(--transition-fast);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent); background: rgba(212, 148, 12, 0.05);
  transform: translateY(-3px);
}

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step-card {
  padding: 40px 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition-smooth);
  position: relative; overflow: hidden;
}
.step-card:hover {
  transform: translateY(-8px); border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0; transition: var(--transition-smooth);
}
.step-card:hover::before { opacity: 1; }
.step-number {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900;
  color: rgba(212, 148, 12, 0.15); line-height: 1; margin-bottom: 16px;
}
.step-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(212, 148, 12, 0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 12px;
}
.step-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
  padding: 36px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition-smooth);
  display: flex; gap: 24px; align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.service-icon {
  width: 64px; height: 64px; min-width: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 148, 12, 0.12), rgba(212, 148, 12, 0.04));
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.service-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 12px; padding: 4px 12px;
  background: rgba(212, 148, 12, 0.1); color: var(--accent);
  font-size: 0.78rem; font-weight: 600; border-radius: 50px;
}

/* ===== BEFORE/AFTER ===== */
.ba-showcase { margin-top: 60px; }
.ba-slider-container {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  max-width: 800px; margin: 0 auto; aspect-ratio: 16/10;
  border: 2px solid var(--border); cursor: ew-resize;
}
.ba-slider-container img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-slider-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--accent); z-index: 10; transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent-glow);
}
.ba-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--bg-primary); font-weight: 900;
  z-index: 11; box-shadow: 0 0 20px var(--accent-glow-strong);
}
.ba-label {
  position: absolute; top: 16px; padding: 6px 16px;
  background: rgba(255, 255, 255, 0.9); border-radius: 50px; color: var(--text-primary);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; z-index: 5;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; color: var(--accent); }

/* ===== PRICING ===== */
.pricing-card {
  max-width: 500px; margin: 60px auto 0; padding: 48px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 2px solid var(--border-accent); border-radius: var(--radius-xl);
  text-align: center; position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent-glow), transparent, transparent);
  animation: spin 8s linear infinite; opacity: 0.3;
}
.pricing-card > * { position: relative; z-index: 1; }
.pricing-popular {
  display: inline-block; padding: 6px 20px; background: var(--accent);
  color: #ffffff; font-size: 0.8rem; font-weight: 700;
  border-radius: 50px; margin-bottom: 24px; letter-spacing: 1px;
}
.pricing-amount {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 900; margin-bottom: 8px;
}
.pricing-amount span { font-size: 1.5rem; color: var(--text-muted); }
.pricing-period { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.pricing-features { text-align: left; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.review-card {
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition-smooth);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--border-accent); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); font-size: 1.1rem; }
.review-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #ffffff;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }

/* ===== BOOKING FORM ===== */
#booking { background: var(--bg-secondary); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.booking-form {
  padding: 40px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 14px 18px; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text-primary); font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 100px; }
.file-upload {
  width: 100%; padding: 32px; border: 2px dashed var(--border);
  border-radius: var(--radius-md); text-align: center;
  cursor: pointer; transition: var(--transition-fast);
  background: var(--bg-secondary);
}
.file-upload:hover { border-color: var(--accent); background: rgba(212, 148, 12, 0.03); }
.file-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.file-upload-text { font-size: 0.9rem; color: var(--text-secondary); }
.file-upload-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.file-upload.drag-over { border-color: var(--accent); background: rgba(212, 148, 12, 0.06); transform: scale(1.01); }

/* Photo Preview */
.photo-preview {
  position: relative; margin-top: 12px; border-radius: var(--radius-md);
  overflow: hidden; border: 2px solid var(--border-accent);
  background: var(--bg-card);
}
.photo-preview img {
  width: 100%; max-height: 250px; object-fit: cover; display: block;
}
.photo-remove {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.7); color: #fff;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast); border: none; cursor: pointer;
}
.photo-remove:hover { background: var(--danger); transform: scale(1.1); }
.photo-preview-name {
  padding: 8px 12px; font-size: 0.8rem; color: var(--text-secondary);
  background: var(--bg-primary); border-top: 1px solid var(--border);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.booking-info-card {
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 20px;
}
.booking-info-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.booking-info-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.booking-info-card ul li {
  padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px; border-top: 1px solid var(--border);
  background: var(--bg-primary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 350px; }
.footer-heading { font-family: var(--font-heading); font-weight: 700; margin-bottom: 20px; font-size: 1rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--text-muted);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  opacity: 0; transform: scale(0.5); pointer-events: none;
}
.whatsapp-float.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
.whatsapp-float::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { min-height: auto; padding-top: 90px; padding-bottom: 40px; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; padding: 16px 24px; font-size: 1rem; }
  .hero-stats { flex-direction: row; gap: 20px; justify-content: center; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .hero-image { margin-top: 24px; }

  /* Sections */
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 0.7rem; }

  /* Steps */
  .step-card { padding: 28px 20px; }
  .step-number { font-size: 2.5rem; }

  /* Services */
  .service-card { padding: 24px; flex-direction: column; }
  .service-icon { width: 52px; height: 52px; min-width: 52px; font-size: 1.5rem; }

  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-amount { font-size: 3rem; }

  /* Reviews */
  .review-card { padding: 24px; }
  .review-text { font-size: 0.9rem; }

  /* Booking */
  .booking-form { padding: 20px; }
  .form-input { padding: 14px 14px; font-size: 16px; }
  .file-upload { padding: 24px 16px; }
  .file-upload-icon { font-size: 2.5rem; }
  .file-upload-text { font-size: 0.95rem; }

  /* Navbar */
  .nav-logo img { height: 36px; }
  .nav-logo-text { font-size: 1.1rem; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 24px; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 12px; }
  .pricing-amount { font-size: 2.5rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}
