/* ═══ SparkleWash — Clean & Modern Design ═══ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0f0f1a;
  --bg2: #1a1a2e;
  --bg3: #16213e;
  --accent: #f77f00;
  --accent-glow: #ff9f1c;
  --text: #e8e8e8;
  --text-dim: #a0a0b8;
  --white: #ffffff;
  --card-bg: #1c1c32;
  --border: #2a2a45;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══ Cookie Bar ═══ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg2); border-top: 2px solid var(--accent);
  padding: 14px 24px; z-index: 9999;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  font-size: 0.9rem; color: var(--text-dim);
}
.cookie-bar button {
  background: var(--accent); color: var(--white); border: none;
  padding: 8px 24px; border-radius: 6px; cursor: pointer; font-weight: 600;
}
.cookie-bar button:hover { background: var(--accent-glow); }

/* ═══ Header ═══ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15,15,26,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--white); font-size: 1.5rem; font-weight: 800;
}
.logo-icon { font-size: 1.6rem; }
.accent { color: var(--accent); }
.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--text-dim); text-decoration: none;
  font-weight: 500; font-size: 0.95rem; transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }

/* Lang Switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-dim); padding: 4px 10px; border-radius: 6px;
  cursor: pointer; font-size: 0.8rem; font-weight: 600;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: var(--white);
}
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ═══ Hero ═══ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg3) 0%, #1f1f3a 40%, var(--bg) 80%);
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(247,127,0,0.08) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f77f00' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white), var(--accent-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.1rem; color: var(--text-dim); max-width: 650px;
  margin: 0 auto 32px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 40%, 50% 0, 25% 40%, 0 0);
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-block; padding: 14px 32px;
  border-radius: 8px; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
  border: none;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 20px rgba(247,127,0,0.3);
}
.btn-primary:hover {
  background: var(--accent-glow);
  box-shadow: 0 6px 28px rgba(247,127,0,0.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ═══ Sections ═══ */
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.section-title {
  font-size: 2rem; font-weight: 800; text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center; color: var(--text-dim);
  max-width: 600px; margin: 0 auto 48px;
}

/* ═══ Cards (Services) ═══ */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(247,127,0,0.12);
}
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--white); }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* ═══ Pricing ═══ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.price-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: all 0.3s;
  position: relative;
}
.price-card:hover { border-color: var(--accent); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(247,127,0,0.15);
  transform: scale(1.03);
}
.featured-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  padding: 4px 20px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
}
.price-card h3 { font-size: 1rem; color: var(--text-dim); margin-bottom: 8px; }
.price {
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  margin: 8px 0;
}
.price-card p { color: var(--text-dim); font-size: 0.85rem; }
.pricing-note {
  text-align: center; margin-top: 32px;
  color: var(--text-dim); font-size: 0.9rem;
}
.pricing-note strong { color: var(--accent); }

/* ═══ Area ═══ */
.area-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.area-grid h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }
.area-grid p { color: var(--text-dim); line-height: 1.8; }

/* ═══ Before & After Gallery ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ba-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(247,127,0,0.1);
}
.ba-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.ba-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ── Slider Container ── */
.ba-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ba-img-after {
  clip-path: inset(0 50% 0 0);
  z-index: 1;
}
.ba-img-before {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}
.ba-img-before::after {
  content: attr(data-label-before);
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.ba-img-after::after {
  content: attr(data-label-after);
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(247,127,0,0.75);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Placeholder Gradients ── */
.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-placeholder span {
  font-size: 3.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.ba-placeholder-before {
  background: linear-gradient(135deg, #555 0%, #333 100%);
}
.ba-placeholder-after {
  background: linear-gradient(135deg, #f77f00 0%, #ff9f1c 100%);
}

/* ── Handle ── */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
}
.ba-handle-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.ba-handle-circle {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 1;
  transition: transform 0.15s;
}
.ba-handle-circle:hover {
  transform: scale(1.1);
}
.ba-handle:focus-visible .ba-handle-circle {
  outline: 2px solid var(--accent-glow);
  outline-offset: 3px;
}
.ba-handle.dragging .ba-handle-circle {
  transform: scale(1.15);
  background: var(--accent-glow);
}

/* ═══ About ═══ */
.about-content { max-width: 750px; margin: 0 auto; }
.about-content p {
  margin-bottom: 16px; color: var(--text-dim);
  font-size: 1.05rem;
}

/* ═══ Contact ═══ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px;
  align-items: start;
}
.contact-info {
  font-size: 1.1rem; line-height: 2.4;
}
.contact-info a { color: var(--accent); text-decoration: none; }
.social-links { margin-top: 16px; }
.social-links a {
  display: inline-block; padding: 8px 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); text-decoration: none;
  transition: border-color 0.2s;
}
.social-links a:hover { border-color: var(--accent); }

.contact-form {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  color: var(--white); font-size: 1rem; font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-form select option { background: var(--bg2); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note { color: var(--text-dim); font-size: 0.85rem; text-align: center; }

/* ═══ Scroll Reveal Animations ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for cards */
.stagger-delay-1 { transition-delay: 0.05s; }
.stagger-delay-2 { transition-delay: 0.12s; }
.stagger-delay-3 { transition-delay: 0.19s; }
.stagger-delay-4 { transition-delay: 0.26s; }
.stagger-delay-5 { transition-delay: 0.33s; }
.stagger-delay-6 { transition-delay: 0.40s; }

/* ═══ How It Works ═══ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.step-icon { font-size: 2.4rem; margin: 8px 0 12px; }
.step h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--text-dim); }

/* ═══ Testimonials ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(247,127,0,0.1);
}
.testimonial-stars { font-size: 1.3rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 1rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}
.testimonial-author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ═══ Calculator & Booking Section ═══ */
.calc-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.calc-box, .booking-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.calc-box:hover, .booking-box:hover {
  border-color: var(--accent);
}
.calc-box h3, .booking-box h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.calc-grid {
  display: grid;
  gap: 12px;
}
.calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.calc-item:hover {
  border-color: var(--accent);
}
.calc-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
}
.calc-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.calc-item .calc-price-label {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  white-space: nowrap;
}
.calc-qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px;
  background: var(--bg2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.calc-qty-row label {
  font-size: 0.95rem;
  color: var(--text-dim);
}
.calc-qty-row input[type="number"] {
  width: 70px;
  padding: 8px 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
}
.calc-qty-row input[type="number"]:focus {
  outline: none;
  border-color: var(--accent);
}
.calc-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 2px solid var(--accent);
  border-radius: 10px;
}
.calc-total-row span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dim);
}
.calc-total-row .calc-total-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.calc-clear-btn {
  display: block;
  margin: 12px auto 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.calc-clear-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══ Booking Form ═══ */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-form input,
.booking-form select {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.booking-form select option {
  background: var(--bg2);
  color: var(--white);
}
.booking-form .btn {
  margin-top: 4px;
  width: 100%;
}
.booking-success-msg {
  background: rgba(247,127,0,0.12);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--accent-glow);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
  display: none;
}
.booking-success-msg.show {
  display: block;
}

/* ═══ Stats / Counter Section ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(247,127,0,0.12);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}
.stat-label {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ═══ FAQ Accordion ═══ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-question-active::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-question:hover {
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 22px;
}
.faq-answer-open {
  max-height: 600px;
  padding: 0 22px 18px;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-answer-open {
    padding: 0 16px 14px;
  }
}

/* ═══ Scroll to Top Button ═══ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(247,127,0,0.3);
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(247,127,0,0.45);
}

/* ═══ Footer ═══ */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-col { text-align: left; }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--white); font-size: 1.3rem; font-weight: 800;
  margin-bottom: 10px;
}
.footer p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); text-decoration: none;
  font-size: 0.85rem; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(247,127,0,0.08); }
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-dim); font-size: 0.83rem; }

/* ═══ Share Buttons ═══ */
.share-buttons,
.share-buttons-hero {
  display: flex;
  gap: 8px;
  align-items: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.share-btn:hover {
  border-color: var(--accent);
  background: rgba(247,127,0,0.1);
  transform: scale(1.1);
}

/* ═══ WhatsApp Floating Button ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(247,127,0,0.4);
  transition: all 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: var(--accent-glow);
  box-shadow: 0 6px 28px rgba(247,127,0,0.55);
  transform: scale(1.08);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(247,127,0,0.4); }
  50% { box-shadow: 0 4px 28px rgba(247,127,0,0.65); }
}

/* ═══ Mobile ═══ */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); padding: 20px; gap: 16px; border-bottom: 2px solid var(--accent); }
  .hamburger { display: block; }
  .hero { padding: 60px 0 50px; }
  .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .ba-slider { height: 200px; }
  .calc-booking-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.2rem; }
  .scroll-top-btn { bottom: 20px; left: 20px; width: 42px; height: 42px; font-size: 1.2rem; }
  .footer .container { grid-template-columns: 1fr; text-align: center; }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .lang-switcher { gap: 2px; }
  .lang-btn { padding: 4px 8px; font-size: 0.7rem; }
}
