/* ============ Aisha Khalil Al-Anzi — Static Site Styles ============ */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800;9..144,900&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --background: #fbf9f5;
  --foreground: #1a2730;
  --card: #ffffff;
  --muted: #f3efe9;
  --muted-foreground: #6b7680;
  --border: #e6e0d6;
  --secondary: #efe9df;
  --gold: #d9a441;
  --gold-foreground: #1a2730;
  --teal-deep: #154651;
  --cream: #faf6ee;
  --whatsapp: #25D366;
  --shadow-lg: 0 20px 50px -20px rgba(21, 70, 81, 0.25);
  --shadow-xl: 0 30px 80px -30px rgba(21, 70, 81, 0.4);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02";
  padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 767px) {
  body { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, .font-display { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 600; }

.container-x { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1024px) { .container-x { padding: 0 2.5rem; } }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid rgba(230, 224, 214, 0.6);
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner { display: flex; height: 4rem; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.logo-mark { display: grid; place-items: center; height: 2.25rem; width: 2.25rem; border-radius: 9999px; background: var(--teal-deep); color: var(--cream); }
.logo-mark svg { width: 1rem; height: 1rem; }
.logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.1; }
.logo-text small { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); margin-top: 2px; }
@media (min-width: 768px) { .logo-text { font-size: 1.125rem; } }

.main-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(26, 39, 48, 0.8); border-radius: 0.375rem; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--teal-deep); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-btn { display: inline-flex; align-items: center; gap: 0.375rem; border: 1px solid var(--border); background: var(--card); padding: 0.5rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; transition: background 0.2s; }
.lang-btn:hover { background: var(--secondary); }
.lang-btn svg { width: 14px; height: 14px; }
.call-btn-header { display: none; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--gold-foreground); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; transition: filter 0.2s; }
.call-btn-header:hover { filter: brightness(0.95); }
@media (min-width: 640px) { .call-btn-header { display: inline-flex; } }
.call-btn-header svg { width: 1rem; height: 1rem; }

.menu-toggle { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 0.375rem; border: 1px solid var(--border); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); }
.mobile-nav.open { display: block; }
.mobile-nav nav { padding: 0.75rem 0; display: flex; flex-direction: column; }
.mobile-nav a { padding: 0.625rem 0; font-size: 0.875rem; font-weight: 500; color: rgba(26,39,48,0.8); }
.mobile-nav a.active { font-weight: 600; color: var(--teal-deep); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 80% 10%, rgba(217, 164, 65, 0.18), transparent 60%), radial-gradient(50% 50% at 10% 90%, rgba(21, 70, 81, 0.10), transparent 60%); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; padding: 2.5rem 0; }
@media (min-width: 768px) { .hero-grid { padding: 5rem 0; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-text { order: 2; }
.hero-image-wrap { order: 1; position: relative; }
@media (min-width: 1024px) { .hero-text { order: 1; } .hero-image-wrap { order: 2; } }

.badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); background: rgba(255,255,255,0.6); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }
.badge .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--gold); }
.hero h1 { margin-top: 1.25rem; font-size: 1.875rem; line-height: 1.08; color: var(--teal-deep); }
@media (min-width: 640px) { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc { margin-top: 1rem; max-width: 36rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }

.cta-row { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.btn svg { width: 1rem; height: 1rem; }
.btn-primary { background: var(--teal-deep); color: var(--cream); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid var(--border); background: var(--card); }
.btn-outline:hover { background: var(--secondary); }
.btn-gold { background: var(--gold); color: var(--gold-foreground); }
.btn-whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.4); }
.btn-whatsapp:hover { filter: brightness(0.95); }

.chips { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { display: inline-flex; align-items: center; gap: 0.375rem; background: rgba(217, 164, 65, 0.15); color: var(--teal-deep); padding: 0.375rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.chip svg { width: 12px; height: 12px; }

.stats { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 28rem; }
.stats dt { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--teal-deep); }
@media (min-width: 640px) { .stats dt { font-size: 1.5rem; } }
@media (min-width: 768px) { .stats dt { font-size: 1.875rem; } }
.stats dd { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-top: 4px; }
@media (min-width: 640px) { .stats dd { font-size: 0.75rem; } }

.slider-frame { position: relative; aspect-ratio: 4 / 3; border-radius: 2rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-xl); }
@media (min-width: 640px) { .slider-frame { aspect-ratio: 16 / 10; } }
@media (min-width: 768px) { .slider-frame { aspect-ratio: 5 / 6; } }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease-out; }
.slide.active { opacity: 1; }
.slider-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top right, rgba(21,70,81,0.4), transparent 50%, rgba(217,164,65,0.15)); }
.slider-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.375rem; z-index: 2; }
.slider-dots button { height: 6px; width: 8px; border-radius: 9999px; background: rgba(255,255,255,0.5); transition: all 0.3s; }
.slider-dots button.active { width: 32px; background: white; }

.float-card { position: absolute; bottom: -1.5rem; left: -1.5rem; display: none; align-items: center; gap: 0.75rem; background: var(--card); border: 1px solid var(--border); padding: 1rem; border-radius: 1rem; box-shadow: var(--shadow-lg); }
[dir="rtl"] .float-card { left: auto; right: -1.5rem; }
@media (min-width: 768px) { .float-card { display: flex; } }
.float-card .ic { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 9999px; background: rgba(217,164,65,0.2); color: var(--teal-deep); }
.float-card .ic svg { width: 1.25rem; height: 1.25rem; }
.float-card .t1 { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }
.float-card .t2 { font-size: 0.75rem; color: var(--muted-foreground); }

section.padded { padding: 5rem 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; }
.section-title { margin-top: 0.5rem; font-size: 1.875rem; line-height: 1.1; color: var(--teal-deep); max-width: 36rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-desc { color: var(--muted-foreground); max-width: 24rem; }
.text-center { text-align: center; }
.center-stack { max-width: 42rem; margin: 0 auto; }

.grid-3 { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.service-card { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; transition: all 0.3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card .img-wrap { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-card:hover .img-wrap img { transform: scale(1.05); }
.service-card .body { padding: 1.5rem; }
.service-card .head { display: flex; align-items: center; gap: 0.75rem; }
.service-card .head .ic { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 9999px; background: var(--teal-deep); color: var(--cream); }
.service-card .head .ic svg { width: 1.25rem; height: 1.25rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 600; }
.service-card .desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.service-card ul { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.service-card li svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }
.service-card .more { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--teal-deep); transition: gap 0.2s; }
.service-card .more:hover { gap: 0.5rem; }
.service-card .more svg { width: 1rem; height: 1rem; }
[dir="rtl"] .service-card .more svg { transform: rotate(180deg); }

.why-section { background: var(--cream); }
.why-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 5fr 7fr; } }
.why-img-wrap { position: relative; }
.why-img { aspect-ratio: 4 / 5; border-radius: 2rem; overflow: hidden; border: 1px solid var(--border); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.guarantee-badge { position: absolute; right: -1rem; bottom: -1rem; background: var(--teal-deep); color: var(--cream); padding: 1.25rem; border-radius: 1rem; box-shadow: var(--shadow-lg); max-width: 220px; }
[dir="rtl"] .guarantee-badge { right: auto; left: -1rem; }
.guarantee-badge .num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; line-height: 1; }
.guarantee-badge .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; opacity: 0.8; }
.why-cards { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .why-cards { grid-template-columns: 1fr 1fr; } }
.why-card { border: 1px solid var(--border); background: var(--card); border-radius: 1rem; padding: 1.25rem; }
.why-card .ic { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 0.75rem; background: rgba(217,164,65,0.2); color: var(--teal-deep); }
.why-card .ic svg { width: 1.25rem; height: 1.25rem; }
.why-card h3 { margin-top: 0.75rem; font-size: 1.125rem; font-weight: 600; }
.why-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.process-card { position: relative; border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 1.5rem; }
.process-card .num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: rgba(217, 164, 65, 0.4); line-height: 1; }
.process-card h3 { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; }
.process-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.brands-section { background: var(--teal-deep); color: var(--cream); }
.brands-section .kicker { color: var(--gold); }
.brands-section .section-title { color: var(--cream); }
.brands-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-tile { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); padding: 1rem 0.75rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 600; text-align: center; }

.testi-card { border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 1.5rem; display: flex; flex-direction: column; }
.stars { display: flex; gap: 4px; color: var(--gold); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testi-card blockquote { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: rgba(26,39,48,0.9); flex: 1; }
.testi-card figcaption { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-card figcaption .name { font-family: var(--font-display); font-weight: 600; }
.testi-card figcaption .role { font-size: 0.75rem; color: var(--muted-foreground); }

.coverage-section { background: var(--cream); }
.coverage-grid { display: grid; gap: 2.5rem; align-items: flex-start; }
@media (min-width: 1024px) { .coverage-grid { grid-template-columns: 1fr 1fr; } }
.districts { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.district { border: 1px solid var(--border); background: var(--card); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; }
.map-frame { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.faq-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 4fr 8fr; } }
.faq-list { border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; }
.faq-item { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .toggle { display: grid; place-items: center; height: 2rem; width: 2rem; border-radius: 9999px; background: var(--secondary); color: var(--teal-deep); transition: transform 0.2s; flex-shrink: 0; }
.faq-item .toggle svg { width: 1rem; height: 1rem; transform: rotate(90deg); }
.faq-item[open] .toggle { transform: rotate(45deg); }
.faq-item p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }

.cta-band { position: relative; overflow: hidden; border-radius: 2rem; background: var(--teal-deep); color: var(--cream); padding: 2.5rem; }
@media (min-width: 768px) { .cta-band { padding: 4rem; } }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(50% 60% at 80% 20%, rgba(217,164,65,0.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-content { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .cta-content { grid-template-columns: 1fr 1fr; } }
.cta-band .kicker { color: var(--gold); }
.cta-band h2 { margin-top: 0.5rem; font-size: 1.875rem; line-height: 1.1; }
@media (min-width: 768px) { .cta-band h2 { font-size: 3rem; } }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 1024px) { .cta-band .cta-actions { justify-content: flex-end; } }
.btn-light { border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: var(--cream); padding: 0.875rem 1.5rem; }
.address-line { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

.site-footer { background: var(--teal-deep); color: var(--cream); margin-top: 6rem; }
.footer-grid { padding: 3.5rem 0; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col h3 { font-size: 1.5rem; font-weight: 600; }
.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-col p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(250, 246, 238, 0.7); max-width: 28rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgba(250,246,238,0.8); }
.footer-col li a, .footer-col li span { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold); }
.footer-col li svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { padding: 1.25rem 0; font-size: 0.75rem; color: rgba(250,246,238,0.6); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }

.float-actions a, .float-actions button { position: fixed; z-index: 50; }
.fab { display: grid; place-items: center; height: 3.5rem; width: 3.5rem; border-radius: 9999px; transition: all 0.3s; }
.fab:hover { transform: scale(1.1); }
.fab-wa { bottom: 1.25rem; left: 1.25rem; background: var(--whatsapp); color: white; box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.55); animation: pulseWa 2.5s ease-in-out infinite; }
.fab-wa svg { width: 1.75rem; height: 1.75rem; }
.fab-call { bottom: 1.25rem; right: 1.25rem; background: var(--gold); color: var(--gold-foreground); box-shadow: 0 10px 30px -5px rgba(217, 164, 65, 0.55); }
.fab-call svg { width: 1.5rem; height: 1.5rem; }
.fab-top { bottom: 6rem; right: 1.25rem; background: var(--teal-deep); color: var(--cream); height: 2.75rem; width: 2.75rem; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(0.75rem); pointer-events: none; }
.fab-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-top svg { width: 1.25rem; height: 1.25rem; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 10px 30px -5px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0); }
}

.service-hero { padding: 3.5rem 0; }
@media (min-width: 768px) { .service-hero { padding: 5rem 0; } }
.service-hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: 1fr 1fr; } }
.service-hero h1 { margin-top: 0.5rem; font-size: 2.25rem; line-height: 1.1; color: var(--teal-deep); }
@media (min-width: 768px) { .service-hero h1 { font-size: 3rem; } }
.service-hero .lead { margin-top: 1rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 768px) { .service-hero .lead { font-size: 1.125rem; } }
.service-hero-img { aspect-ratio: 5 / 4; border-radius: 2rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-xl); }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding-bottom: 4rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .service-body { grid-template-columns: 7fr 5fr; } }
.service-body .copy p { margin-bottom: 1rem; color: rgba(26,39,48,0.85); line-height: 1.7; }
.service-aside { border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 1.5rem; }
.service-aside h3 { font-size: 1.25rem; font-weight: 600; }
.service-aside ul { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.service-aside li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.service-aside li svg { width: 1.25rem; height: 1.25rem; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.page-band { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 80% 10%, rgba(217,164,65,0.18), transparent 60%), radial-gradient(50% 50% at 10% 90%, rgba(21,70,81,0.10), transparent 60%); }
.page-band-inner { padding: 3.5rem 0; text-align: center; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .page-band-inner { padding: 5rem 0; } }
.page-band h1 { margin-top: 0.75rem; font-size: 2.25rem; line-height: 1.05; color: var(--teal-deep); }
@media (min-width: 768px) { .page-band h1 { font-size: 3.75rem; } }
.page-band p { margin-top: 1rem; color: var(--muted-foreground); }
.page-band .chips { justify-content: center; }

.contact-grid { padding: 3.5rem 0; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .contact-grid { padding: 5rem 0; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.25rem; border-radius: 1rem; transition: all 0.2s; }
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.contact-card .ic { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: 9999px; flex-shrink: 0; }
.contact-card .ic svg { width: 1.25rem; height: 1.25rem; }
.contact-card .ic.gold { background: var(--gold); color: var(--gold-foreground); }
.contact-card .ic.wa { background: var(--whatsapp); color: white; }
.contact-card .ic.teal { background: var(--teal-deep); color: var(--cream); }
.contact-card .ic.muted { background: var(--secondary); color: var(--teal-deep); }
.contact-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.contact-card .val { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.contact-card .val.lg { font-size: 1.25rem; }
.contact-card .val.sm { font-size: 0.875rem; font-family: var(--font-sans); font-weight: 500; line-height: 1.5; }

.form-card { border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
@media (min-width: 768px) { .form-card { padding: 2rem; } }
.form-card h2 { font-size: 1.5rem; font-weight: 600; color: var(--teal-deep); }
@media (min-width: 768px) { .form-card h2 { font-size: 1.875rem; } }
.form-card .form-desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.field-grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.field input, .field textarea, .field-block input, .field-block textarea { margin-top: 0.375rem; width: 100%; border: 1px solid var(--border); background: var(--background); padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-family: inherit; transition: box-shadow 0.2s; }
.field input:focus, .field textarea:focus, .field-block input:focus, .field-block textarea:focus { outline: none; box-shadow: 0 0 0 2px var(--gold); }
.field textarea, .field-block textarea { resize: none; }
.field-block { margin-top: 1rem; display: block; }
.service-pills { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-pill { border: 1px solid var(--border); background: var(--card); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.service-pill:hover { background: var(--secondary); }
.service-pill.active { background: var(--teal-deep); color: var(--cream); border-color: var(--teal-deep); }
.form-submit { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--whatsapp); color: white; padding: 0.875rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; box-shadow: 0 10px 25px -8px rgba(37,211,102,0.4); transition: filter 0.2s; }
.form-submit:hover { filter: brightness(0.95); }
.form-submit svg { width: 1rem; height: 1rem; }

.contact-map { padding-bottom: 5rem; }
.contact-map .map-frame { aspect-ratio: 16 / 9; }

.about-grid { padding: 3.5rem 0; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { padding: 5rem 0; } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; } }
.about-img { aspect-ratio: 4 / 5; border-radius: 2rem; overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

[dir="rtl"] .slider-dots { direction: ltr; }
[dir="rtl"] .fab-wa { left: auto; right: 1.25rem; }
[dir="rtl"] .fab-call { right: auto; left: 1.25rem; }
[dir="rtl"] .fab-top { right: auto; left: 1.25rem; }
