/* ===== NovaCleann Theme ===== */
:root {
  --primary: #0B1C3A;
  --primary-light: #132d5e;
  --accent: #00BFA5;
  --accent-dark: #00a18b;
  --background: #F8FAFC;
  --text: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background-color: var(--background);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::selection { background-color: var(--accent); color: white; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,191,165,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,191,165,0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.animate-pulse-glow { animation: pulseGlow 2s infinite; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 40; width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 80rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; padding: 0 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: var(--accent); color: white;
}
.logo-text { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--text-light); text-decoration: none;
  transition: all 0.2s;
}
.nav a:hover, .nav a.active { background: rgba(0,191,165,0.1); color: var(--accent); }
.header-cta {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  background: var(--accent); color: white;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.header-cta:hover { background: var(--accent-dark); }
.mobile-toggle {
  display: none; padding: 0.5rem; border: none; background: none;
  color: var(--text); cursor: pointer; border-radius: 0.5rem;
}
.mobile-toggle:hover { background: #f1f5f9; }

/* Mobile Menu */
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 50;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu {
  position: absolute; inset: 0 auto 0 0; right: 0;
  width: 20rem; max-width: 85vw;
  background: white; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; padding: 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close { border: none; background: none; cursor: pointer; padding: 0.5rem; border-radius: 0.5rem; color: var(--text-light); }
.mobile-menu-close:hover { background: #f1f5f9; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem; }
.mobile-menu nav a {
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  font-size: 1rem; font-weight: 700;
  color: var(--text-light); text-decoration: none; transition: all 0.2s;
}
.mobile-menu nav a:hover { background: rgba(0,191,165,0.1); color: var(--accent); }
.mobile-menu-footer {
  padding: 1rem; border-top: 1px solid var(--border);
}
.mobile-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem; border-radius: 0.75rem;
  background: #22c55e; color: white;
  font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.2s;
}
.mobile-whatsapp:hover { background: #16a34a; }

@media (max-width: 1023px) {
  .nav, .header-cta-desktop { display: none !important; }
  .mobile-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,191,165,0.05); }
.btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-green { background: #22c55e; color: white; }
.btn-green:hover { background: #16a34a; }
.btn-outline-green { background: transparent; color: #4ade80; border: 1px solid #4ade80; }
.btn-outline-green:hover { background: #22c55e; color: white; border-color: #22c55e; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: var(--primary); padding: 5rem 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.05;
  background: radial-gradient(circle at 25% 25%, rgba(0,191,165,0.3) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(0,191,165,0.2) 0%, transparent 50%);
}
.hero .container { position: relative; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(0,191,165,0.2);
  font-size: 0.875rem; font-weight: 700; color: var(--accent);
}
.hero h1 {
  margin-top: 1rem; font-size: 2.5rem; font-weight: 800;
  line-height: 1.2; color: white;
}
.hero h1 span { color: var(--accent); }
.hero p {
  max-width: 42rem; margin: 1.5rem auto 0;
  font-size: 1.125rem; line-height: 1.7; color: #cbd5e1;
}
.hero-buttons {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
}
.hero-stats {
  margin-top: 4rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: 32rem; margin-left: auto; margin-right: auto;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: #cbd5e1; }

@media (min-width: 640px) {
  .hero { padding: 7rem 0 8rem; }
  .hero h1 { font-size: 3rem; }
  .hero-stat-number { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

/* ===== Container ===== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Section ===== */
.section { padding: 5rem 0; }
.section-gray { background: #f8fafc; }
.section-title { font-size: 1.875rem; font-weight: 800; color: var(--primary); text-align: center; }
.section-title span { color: var(--accent); }
.section-subtitle {
  max-width: 42rem; margin: 1rem auto 0;
  font-size: 1.125rem; color: var(--text-light); text-align: center;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

/* ===== Features ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  padding: 2rem; border-radius: 1rem; border: 1px solid var(--border);
  background: white; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(0,191,165,0.3); box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; margin: 0 auto 1.5rem;
  border-radius: 1rem; background: rgba(0,191,165,0.1); color: var(--accent);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon { background: var(--accent); color: white; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.875rem; line-height: 1.7; color: var(--text-light); }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Packages ===== */
.packages-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.package-card {
  overflow: hidden; border-radius: 1rem; border: 1px solid var(--border);
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.package-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.package-bar { height: 0.5rem; }
.package-bar.accent { background: var(--accent); }
.package-bar.primary { background: var(--primary); }
.package-bar.blue { background: #3b82f6; }
.package-bar.warning { background: var(--warning); }
.package-bar.purple { background: #a855f7; }
.package-bar.teal { background: #14b8a6; }
.package-body { padding: 2rem; }
.package-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; margin-bottom: 1.5rem;
  border-radius: 1rem; background: rgba(0,191,165,0.1); color: var(--accent);
}
.package-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.package-price {
  margin-bottom: 1rem; padding: 0.5rem 1rem; border-radius: 0.75rem;
  background: rgba(0,191,165,0.05); text-align: center;
}
.package-price span { font-size: 1.125rem; font-weight: 800; color: var(--accent); }
.package-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-light); margin-bottom: 1.5rem; }
.package-features { list-style: none; margin-bottom: 2rem; }
.package-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text); padding: 0.375rem 0;
}
.package-features li svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--accent); }
.package-card .btn { width: 100%; justify-content: center; }
.package-card:hover .btn-outline { background: var(--accent); color: white; border-color: var(--accent); }
@media (min-width: 640px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== How It Works ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.step-card { text-align: center; padding: 2rem; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--accent); color: white;
  font-size: 1.25rem; font-weight: 800; margin-bottom: 1.5rem;
}
.step-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; line-height: 1.7; color: var(--text-light); }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.testimonial-card {
  padding: 2rem; border-radius: 1rem; border: 1px solid var(--border);
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--warning); }
.testimonial-text { font-size: 0.875rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0,191,165,0.1); color: var(--accent);
  font-weight: 700; font-size: 0.875rem;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.testimonial-loc { font-size: 0.75rem; color: var(--text-light); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== CTA ===== */
.cta-box {
  padding: 3rem 2rem; border-radius: 1.5rem;
  background: var(--primary); text-align: center;
}
.cta-box h2 { font-size: 1.875rem; font-weight: 800; color: white; }
.cta-box h2 span { color: var(--accent); }
.cta-box p { max-width: 32rem; margin: 1rem auto 0; font-size: 1.125rem; color: #cbd5e1; }
.cta-buttons {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
}
@media (min-width: 640px) { .cta-box { padding: 4rem; } .cta-box h2 { font-size: 2.25rem; } }

/* ===== Footer ===== */
.footer { background: var(--primary); color: white; padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 3rem;
}
.footer h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.875rem; color: #cbd5e1; }
.footer a { text-decoration: none; transition: color 0.2s; display: block; padding: 0.25rem 0; }
.footer a:hover { color: var(--accent); }
.footer-desc { line-height: 1.7; }
.footer-coverage-tag { font-size: 0.75rem; color: var(--accent); margin-top: 0.5rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.1); color: white; transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social a.whatsapp:hover { background: #22c55e; }
.footer-bottom {
  margin-top: 3rem; padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: #94a3b8; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #22c55e; color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s; text-decoration: none;
}
.whatsapp-float:hover { background: #16a34a; transform: scale(1.1); }

/* ===== Page Hero ===== */
.page-hero {
  background: var(--primary); padding: 4rem 0 5rem; text-align: center;
}
.page-hero h1 { font-size: 1.875rem; font-weight: 800; color: white; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { max-width: 42rem; margin: 1rem auto 0; font-size: 1.125rem; color: #cbd5e1; }
@media (min-width: 640px) { .page-hero { padding: 5rem 0; } .page-hero h1 { font-size: 2.5rem; } }

/* ===== Services Detail ===== */
.service-detail {
  overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border);
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}
.service-detail-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
.service-price-badge {
  display: inline-block; padding: 0.5rem 1rem; border-radius: 0.75rem;
  background: rgba(0,191,165,0.1); margin-bottom: 1rem;
}
.service-price-badge span { font-size: 1.125rem; font-weight: 800; color: var(--accent); }
.service-ideal {
  padding: 1rem; border-radius: 0.75rem;
  background: rgba(0,191,165,0.05); font-size: 0.875rem; margin-bottom: 1.5rem;
}
.service-features { list-style: none; }
.service-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.5rem 0; color: var(--text);
}
.service-features li .check {
  display: flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(0,191,165,0.1); flex-shrink: 0; margin-top: 0.125rem;
}
@media (min-width: 768px) { .service-detail-inner { grid-template-columns: repeat(2, 1fr); padding: 3rem; } }

/* ===== Gallery ===== */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.5rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700;
  border: 1px solid var(--border); background: white;
  color: var(--text-light); cursor: pointer;
  font-family: 'Cairo', sans-serif; transition: all 0.2s;
}
.gallery-filter:hover { border-color: var(--accent); color: var(--accent); }
.gallery-filter.active { background: var(--accent); color: white; border-color: var(--accent); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 1rem;
}
.gallery-item {
  overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--border);
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  cursor: pointer; transition: all 0.3s;
}
.gallery-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.gallery-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-tag {
  padding: 0.75rem;
}
.gallery-item-tag span {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(0,191,165,0.1); font-size: 0.75rem; font-weight: 700; color: var(--accent);
}
.gallery-empty { padding: 5rem 0; text-align: center; color: var(--text-light); font-size: 1.125rem; }
.gallery-more { text-align: center; margin-top: 2.5rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 1rem; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  cursor: pointer; font-size: 1.25rem; backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ===== Contact ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem;
}
.contact-card {
  padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border);
  background: white; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s; text-decoration: none; display: block;
}
.contact-card:hover { border-color: rgba(0,191,165,0.3); box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.contact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
  border-radius: 1rem; background: rgba(0,191,165,0.1); color: var(--accent);
  transition: all 0.3s;
}
.contact-card:hover .contact-icon { background: var(--accent); color: white; }
.contact-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.contact-card .value { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.contact-card .desc { font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem; }
.whatsapp-cta {
  margin-top: 4rem; padding: 2.5rem; border-radius: 1.5rem;
  background: #f0fdf4; border: 1px solid #bbf7d0; text-align: center;
}
.whatsapp-cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%;
  background: #22c55e; color: white;
}
.whatsapp-cta h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.whatsapp-cta p { color: var(--text-light); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Booking Form ===== */
.booking-form-wrap {
  max-width: 42rem; margin: 0 auto;
  padding: 2rem; border-radius: 1.5rem;
  border: 1px solid var(--border); background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid var(--border); font-family: 'Cairo', sans-serif;
  font-size: 0.875rem; color: var(--text); background: white;
  transition: all 0.2s; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,191,165,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input[type="tel"], .form-group input[type="date"] { direction: ltr; text-align: left; }
.form-full { grid-column: 1 / -1; }
.booking-success {
  display: none; text-align: center; padding: 2.5rem;
}
.booking-success.show { display: block; }
.booking-success-icon {
  display: flex; align-items: center; justify-content: center;
  width: 5rem; height: 5rem; margin: 0 auto 1.5rem; border-radius: 50%;
  background: #dcfce7;
}
.booking-success h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.booking-success p { color: var(--text-light); margin-bottom: 2rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form-wrap { padding: 2.5rem; }
}

/* ===== SVG Icons ===== */
.icon { width: 1.5rem; height: 1.5rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 2rem; height: 2rem; }
