/* ========================================
   SITE STYLES - Arabic RTL Landing Page
   ======================================== */

/* =========================
   Tajawal Font (Production-safe)
   ========================= */

@font-face {
    font-family: "Tajawal";
    src: url("../fonts/tajawal-v12-arabic_latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Tajawal";
    src: url("../fonts/tajawal-v12-arabic_latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Tajawal";
    src: url("../fonts/tajawal-v12-arabic_latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --color-primary: #0b6e4f;
    --color-primary-dark: #065a40;
    --color-secondary: #1a1a2e;
    --color-accent: #25d366;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #e5e5e5;
    --color-success: #25d366;
    --color-error: #dc3545;

    --font-family:
        "Tajawal", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --max-width: 1200px;
    --header-height: 72px;
}

html,
body {
    font-family:
        "Tajawal",
        system-ui,
        -apple-system,
        "Segoe UI",
        Arial,
        sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تأكيد على العناوين والأزرار */
h1,
h2,
h3,
h4,
h5,
h6,
button,
.btn,
.nav,
.header,
.footer {
    font-family:
        "Tajawal",
        system-ui,
        -apple-system,
        "Segoe UI",
        Arial,
        sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: var(--color-bg);
    direction: rtl;
    text-align: right;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-primary);
    color: white;
    z-index: 9999;
}
.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
}

p {
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.section-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--color-primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
}

.btn-whatsapp {
    background: var(--color-accent);
    color: white;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: white;
}

.btn-call {
    background: var(--color-primary);
    color: white;
}
.btn-call:hover {
    background: var(--color-primary-dark);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-ghost:hover {
    background: var(--color-primary);
    color: white;
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
}

/* Navbar CTA Pulse Animation - Performance Optimized */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.navbar-cta-pulse {
    animation: pulse-shadow 2s infinite;
    will-change: box-shadow;
}

.navbar-cta-pulse:hover {
    transform: scale(1.05); /* Safe transform */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Lite YouTube Embed */
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

lite-youtube::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQrAMAgFj0pH7W09j9639y/x1s3250K11IeQED6+g4hYQ0R0i4h4h4g4u4i4uom4u4m4vIm4vYu4v4u4wIm4wYm4w4m4xIm4xYm4x4m4yIm4yYm4y4m4zIm4zYm4z4m40Im40Ym404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404m404n4AN9r0t0c7h7mAAAAAElFTkSuQmCC");
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

lite-youtube > .lty-playbtn {
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    filter: grayscale(100%);
    transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

lite-youtube.lyt-activated {
    cursor: unset;
}
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}
.logo:hover {
    color: var(--color-primary-dark);
}

.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: block;
    }
    .nav-toggle {
        display: none;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-sm) 0;
}
.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    list-style: none;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
}
.dropdown-menu li a:hover {
    background: var(--color-bg-alt);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.2s;
}

.nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: var(--spacing-xl);
    overflow-y: auto;
}
.nav-mobile .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}
.nav-mobile .nav-list a {
    font-size: 1.25rem;
}

/* Hero */
.hero {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, white 100%);
}

.hero-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(11, 110, 79, 0.1);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero .lead {
    margin-bottom: var(--spacing-xl);
}

.micro-copy {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.micro-copy span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.micro-copy span::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
}

.hero-panel {
    display: none;
}

@media (min-width: 768px) {
    .hero-panel {
        display: block;
    }
}

.panel-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.panel-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}
.panel-list li {
    padding: var(--spacing-sm) 0;
    padding-right: var(--spacing-lg);
    position: relative;
}
.panel-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Sections */
section {
    padding: var(--spacing-3xl) 0;
}

section.alt {
    background: var(--color-bg-alt);
}

.section-actions {
    margin-top: var(--spacing-xl);
    text-align: center;
}

/* Video Section */
.video-section {
    text-align: center;
    padding-bottom: var(--spacing-xl);
}

.video-card {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-embed lite-youtube,
.video-embed iframe {
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
}

.video-thumbnail svg {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    opacity: 0.5;
}

.video-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.video-cta {
    display: flex;
    justify-content: center;
}

/* Service Grid */
.service-grid,
.services-grid {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .service-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .service-grid,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card,
.area-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover,
.area-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: inherit;
}

.service-card h2,
.service-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Highlights */
.highlights {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .highlights {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.highlight-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Check List */
.check-list {
    list-style: none;
}
.check-list li {
    padding: var(--spacing-sm) 0;
    padding-right: var(--spacing-xl);
    position: relative;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Steps */
.steps {
    counter-reset: step;
    list-style: none;
}
.steps li {
    counter-increment: step;
    padding: var(--spacing-md);
    padding-right: 3rem;
    position: relative;
    margin-bottom: var(--spacing-md);
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.steps li::before {
    content: counter(step);
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Callout */
.callout {
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
}

.callout-title,
.callout h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.callout-text,
.callout p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.callout .cta-buttons {
    justify-content: center;
}

.callout .btn-whatsapp {
    background: white;
    color: var(--color-accent);
}
.callout .btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.9);
}

.callout .btn-call {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.chip {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s;
}

a.chip:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    color: var(--color-text);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: var(--spacing-lg);
    color: var(--color-text-muted);
}

/* Related Services */
.related-services {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .related-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-card h3 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.related-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Mini */
.services-mini {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .services-mini {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-mini-card {
    display: block;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.service-mini-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-actions {
    margin-top: var(--spacing-xl);
}

/* Form */
.form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-md);
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        /* Adjusted grid to give map column (last one) more space */
        grid-template-columns: 2fr 0.8fr 0.8fr 0.8fr 1.6fr;
    }
}

.footer-map-small {
    margin-top: var(--spacing-lg);
    width: 100%;
    height: 200px; /* Fixed height for small clean look */
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.footer-map-small iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-brand .logo {
    font-size: 1.5rem;
    color: white;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact .contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.footer-contact .contact-item svg {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

@media (min-width: 992px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
}

.sticky-btn:hover {
    transform: scale(1.1);
    color: white;
}

.sticky-whatsapp {
    background: var(--color-accent);
}

.sticky-call {
    background: var(--color-primary);
}

/* About */
.about-content {
    max-width: 800px;
}

.about-content h2 {
    margin-top: var(--spacing-2xl);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h3 {
    margin-top: var(--spacing-xl);
}

/* Hero Page */
.hero-page {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, white 100%);
    text-align: center;
}

.hero-page h1 {
    margin-bottom: var(--spacing-md);
}

.hero-page .lead {
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Service */
.hero-service {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: white;
}

.hero-service .eyebrow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-service h1 {
    color: white;
}

.hero-service .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   RESPONSIVE FIXES & NEW STYLES
   ========================================= */

/* Map Responsiveness */
.map-container {
    width: 100%;
    position: relative;
    /* Desktop: 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        /* Mobile: fixed height or taller aspect ratio */
        aspect-ratio: auto;
        height: 400px;
    }
}

/* Mobile Header & Nav Improvements */
@media (max-width: 991px) {
    .header-inner {
        gap: var(--spacing-sm);
    }

    .nav-toggle {
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .logo {
        font-size: 1.25rem;
        z-index: 1001; /* Ensure logo is clickable if menu is open? No, menu covers it usually */
    }

    .header-actions {
        z-index: 1001;
    }

    /* Ensure no overlap between CTA and Logo on very small screens */
    .btn-sm {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
    }

    .btn-whatsapp span,
    .btn-call span {
        display: none; /* Hide text on very small screens if needed, or keeping it */
    }

    /* Only hide text on very small screens < 380px */
    @media (max-width: 380px) {
        .btn-whatsapp span,
        .btn-call span {
            display: none;
        }
        .header-actions {
            gap: 4px;
        }
    }
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%; /* Ensure no overflow */
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        max-width: var(--max-width);
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
}

/* Fix Typography on Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .hero {
        padding: var(--spacing-xl) 0;
    }
    .btn {
        width: 100%;
        justify-content: center;
    } /* Full width buttons on mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .header-actions .btn {
        width: auto;
    } /* Keep header buttons auto width */
}

/* Mobile Nav Stacking */
.nav-mobile {
    z-index: 999; /* Below toggle */
    padding-top: var(--spacing-xl);
}

/* =========================================
   NEW ADDS: Top Bar & Visual Services
   ========================================= */

/* Top Bar */
.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-logo img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .top-bar-inner {
        justify-content: flex-start;
    }
}

/* Service Visual Grid */
.services-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1rem;
}

@media (min-width: 600px) {
    .services-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-visual-card {
    display: block;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.service-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.service-img-wrapper {
    position: relative;
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.service-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-visual-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.25rem;
    text-align: right;
}

.service-content h3 {
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}
/* Header Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 40px;
    }
}

/* Service Hero with Image side-by-side */
.hero-service .container {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-service .container {
        grid-template-columns: 1fr 1fr;
        text-align: right;
    }
}

.service-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Mobile: Image below text or above? Usually visual first on mobile is nice, but text is important for SEO/Context.
   User asked for responsive. Default grid is fine (Content 1st in HTML).
   If we want image first on mobile:
*/
@media (max-width: 991px) {
    .mobile-reverse-grid {
        display: flex;
        flex-direction: column-reverse; /* Image on top? No, usually Title first is better for SEO/Reading. 
                                           Let's keep standard block stacking: Content then Image? 
                                           Actually, let's just keep grid auto flow. */
    }
    .service-hero-img {
        margin-top: 1rem;
    }
}
