﻿/* ط´ط±ظƒط© ط§ظ„ط¹ط§ط¨ ط§ظ„ظ†ط§ط±ظٹط© â€” Dark Theme RTL */
:root {
    --gold: #FFD700;
    --orange: #FF6B35;
    --red: #FF4757;
    --bg: #07070d;
    --bg2: #0d0d1a;
    --bg-card: #18182b;
    --text: #e8e8f0;
    --text-muted: #a0a0b8;
    --border: rgba(255, 107, 53, 0.15);
    --whatsapp: #25d366;
    --font: 'Tajawal', sans-serif;
    --header-h: 80px;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0,0,0,0.5);
    --gradient: linear-gradient(135deg, var(--orange), var(--gold));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
}
.skip-link {
    position: absolute;
    top: -100%;
    right: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--bg);
    border-radius: var(--radius);
    font-weight: 700;
}
.skip-link:focus {
    top: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc { color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* Top bar */
.top-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar a { color: var(--gold); font-weight: 600; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 7, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
}
.logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo span { color: var(--gold); }
.logo-accent { font-weight: 800; }
.text-emphasis { font-weight: 700; }
.reviewer-name { font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { background: rgba(255, 107, 53, 0.15); color: var(--gold); }
.nav-cta { margin-right: 0.5rem; }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--gradient);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-red { background: var(--red); color: #fff; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 2rem);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(7,7,13,0.93) 0%, rgba(7,7,13,0.75) 50%, rgba(26,5,0,0.85) 100%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.hero-feature i { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}
.hero-trust i { color: var(--gold); margin-left: 0.35rem; }

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform 0.3s, border-color 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.25);
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; }
.card-status {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(7,7,13,0.9));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-overlay span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Map section */
.areas-section { background: var(--bg2); }
.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 420px;
    margin-bottom: 2rem;
}
#riyadhMap { width: 100%; height: 100%; z-index: 1; }
.map-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    z-index: 2;
    color: var(--text-muted);
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.areas-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.area-region {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}
.area-region:hover { border-color: var(--gold); transform: translateY(-2px); }
.area-region-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
}
.area-region p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.area-item {
    padding: 0.4rem 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.area-item:hover { border-color: var(--gold); color: var(--gold); }
.areas-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.info-box {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}
.info-box h4 { color: var(--gold); margin-bottom: 0.5rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg);
}
.review-stars { color: var(--gold); font-size: 0.875rem; }
.review-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.review-meta { font-size: 0.8rem; color: var(--text-muted); }
.rating-summary { text-align: center; margin-bottom: 2rem; }
.rating-summary .score { font-size: 3rem; font-weight: 900; color: var(--gold); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
}
.faq-question i { color: var(--orange); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 215, 0, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
}
.cta-banner h2,
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; font-weight: 800; color: var(--text); }
.modal-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; color: var(--gold); }
.modal-subtitle { font-size: 1.05rem; font-weight: 700; margin: 1rem 0 0.5rem; color: var(--text); }
.leaflet-control-attribution { display: none !important; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.contact-info-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

/* Footer */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer h4,
.footer-heading { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; font-weight: 700; }
.map-info-title { color: var(--gold); margin-bottom: 0.5rem; font-size: 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.social-share { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.social-share-label { color: var(--text-muted); font-size: 0.9rem; }
.social-share-link { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--bg-card); color: var(--gold); border: 1px solid var(--border); transition: background 0.2s, color 0.2s; }
.social-share-link:hover { background: var(--orange); color: #fff; }
.footer-brand { pointer-events: none; }

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.modal h2 { margin-bottom: 1rem; font-size: 1.35rem; }
.modal-body { color: var(--text-muted); font-size: 0.95rem; }
.modal-body h3 { color: var(--text); margin: 1.25rem 0 0.5rem; font-size: 1rem; }
.modal-body ul { padding-right: 1.25rem; list-style: disc; }
.modal-body li { margin-bottom: 0.35rem; }

/* Float buttons */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.quick-order-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}
.quick-order-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: var(--bg);
    font-family: var(--font);
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow);
}

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: var(--bg2);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold); }

/* Services page */
.service-card ul {
    margin-top: 1rem;
    padding-right: 1.25rem;
    list-style: disc;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.service-card li { margin-bottom: 0.35rem; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    background: var(--gradient);
    color: var(--bg);
    border-radius: 50%;
    font-weight: 800;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.blog-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 0;
}
.article-content h2 { margin: 2rem 0 1rem; color: var(--gold); font-size: 1.35rem; }
.article-content p { margin-bottom: 1rem; color: var(--text-muted); }
.article-content ul { padding-right: 1.5rem; list-style: disc; margin-bottom: 1rem; color: var(--text-muted); }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.team-member {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.team-member i { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; }

/* 404 */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.error-page h1 { font-size: 6rem; color: var(--gold); }
.error-page p { color: var(--text-muted); margin: 1rem 0 2rem; }

/* Map markers */
.map-marker-wrapper { background: transparent !important; border: none !important; }
.map-marker {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.center-marker { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.area-north { background: #2979ff; }
.area-south { background: #ff6d00; }
.area-east { background: #00c853; }
.area-west { background: #aa00ff; }
.area-central { background: var(--red); }
.map-legend {
    background: rgba(7,7,13,0.92) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 10px !important;
    color: var(--text) !important;
    font-size: 11px !important;
    direction: rtl;
}
.legend-title { font-weight: 700; margin-bottom: 6px; color: var(--gold); }
.legend-row { display: flex; align-items: center; gap: 6px; margin: 3px 0; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-footer { margin-top: 6px; color: var(--orange); font-size: 10px; }
.service-circle { stroke-dasharray: 8 6; }

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.w-full { width: 100%; }
.text-muted { color: var(--text-muted); }
.text-muted-sm { color: var(--text-muted); font-size: 0.9rem; }
.cta-banner--spaced { margin: 2rem 0; }
.cta-banner--mt { margin-top: 3rem; }
.map-areas-title { text-align: center; margin-bottom: 1rem; color: var(--gold); }
.about-story-title { text-align: right; margin-bottom: 1rem; }
.about-story-img { border-radius: var(--radius); border: 1px solid var(--border); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; }
.modal-intro { color: var(--text-muted); margin-bottom: 1rem; }
.error-subtitle { margin-bottom: 0.5rem; }
.error-wa-btn { margin-right: 1rem; }
.service-card .btn-outline { margin-top: 1rem; }
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: var(--header-h);
        right: 0;
        left: 0;
        background: rgba(7, 7, 13, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu a { width: 100%; padding: 0.85rem 1rem; }
    .nav-cta { width: 100%; margin: 0.5rem 0 0; }
    .mobile-toggle { display: flex; }
    body.has-topbar { padding-top: 0; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }
    .section { padding: 3.5rem 0; }
    .hero { min-height: auto; padding-bottom: 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .map-wrapper { height: 320px; }
    .whatsapp-float { bottom: 80px; left: 16px; width: 50px; height: 50px; font-size: 1.5rem; }
    .quick-order-float { bottom: 16px; left: 16px; }
    .quick-order-btn span { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-features { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    background: rgba(255,255,255,0.05);
}
.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    transition: width 0.1s;
}
.back-to-top {
    position: fixed;
    bottom: 160px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
    font-size: 1rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); color: #fff; }
.ripple-container { position: relative; overflow: hidden; }
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}
@media (max-width: 768px) {
    .back-to-top { bottom: 140px; }
}
