/* ============================================
   DELTA ZOOM - Stylesheet
   Colors: Orange, Charcoal Gray, Off-White
   Font: Tajawal, Montserrat
   ============================================ */

:root {
    /* Primary Colors - Orange Palette */
    --primary-orange: #E88F00;      /* Vivid Orange - Buttons, icons, active states */
    --accent-amber: #B87100;        /* Deep Amber - Hover states, emphasis */
    --light-orange: #FFA500;        /* Lighter orange for gradients */
    
    /* Secondary Colors - Charcoal Gray */
    --charcoal-gray: #5A5A5B;       /* Charcoal Gray - Headers, subtext, borders */
    --dark-charcoal: #3A3A3B;        /* Darker charcoal for nav/footer */
    --light-charcoal: #7A7A7B;      /* Lighter charcoal for secondary text */
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #F9F9F9;           /* Off-White - Main page background */
    --text-dark: #333333;           /* Dark Slate - Primary body text */
    --gray: #6b7280;
    --dark-gray: #374151;
    --black: #111827;
}

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Tajawal', 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
    text-align: right;
}

body.ltr {
    direction: ltr;
    text-align: left;
}

/* RTL/LTR specific adjustments */
body.rtl .nav-wrapper {
    flex-direction: row;
}

body.ltr .nav-wrapper {
    flex-direction: row-reverse;
}

body.rtl .language-switcher {
    margin-left: 2rem;
    margin-right: 0;
}

body.ltr .language-switcher {
    margin-left: 0;
    margin-right: 2rem;
}

body.rtl .about-content,
body.rtl .service-detail-wrapper,
body.rtl .contact-wrapper {
    direction: rtl;
}

body.ltr .about-content,
body.ltr .service-detail-wrapper,
body.ltr .contact-wrapper {
    direction: ltr;
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: var(--white); /* White background for logo visibility */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(90, 90, 91, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.tagline {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--charcoal-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange); /* 10% Primary - Active states */
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange); /* 10% Primary - Hover/Active states */
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-switcher {
    color: var(--charcoal-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-switcher:hover,
.lang-switcher.active {
    background: rgba(232, 143, 0, 0.1);
    color: var(--primary-orange); /* 10% Primary - Active language */
}

.lang-separator {
    color: rgba(90, 90, 91, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal-gray);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-gray) 0%, var(--dark-charcoal) 50%, var(--charcoal-gray) 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(90, 90, 91, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-orange); /* 10% Primary - Hero subtitle */
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
    opacity: 0.1;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-orange);
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}

.btn-primary {
    background: var(--primary-orange); /* 10% Primary - CTA buttons */
    color: var(--white);
    border-color: var(--primary-orange);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-amber); /* Deep Amber - Hover state */
    border-color: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 143, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal-gray);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-gray);
    border-color: var(--charcoal-gray);
}

.btn-outline:hover {
    background: var(--charcoal-gray);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Section headers */
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-amber)); /* 10% Primary - Underline accent */
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    background: var(--off-white); /* 60% Neutral - Background */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange); /* 10% Primary - Stat numbers */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ============================================
   Services Preview Section
   ============================================ */

.services-preview {
    background: var(--white); /* 60% Neutral - Background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(232, 143, 0, 0.2);
    border-color: var(--primary-orange); /* 10% Primary - Hover border */
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.service-icon i {
    display: block;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Service titles */
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   Vision Mission Section
   ============================================ */

.vision-mission {
    background: var(--charcoal-gray); /* 30% Secondary - Section background */
    color: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.vm-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.vm-icon i {
    display: block;
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange); /* 10% Primary - Vision/Mission titles */
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   Target Audience Section
   ============================================ */

.target-audience {
    background: var(--off-white); /* 60% Neutral - Background */
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.audience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    border-right: 4px solid var(--primary-orange); /* 10% Primary - Border accent */
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-orange); /* 10% Primary - Number badge */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(232, 143, 0, 0.4);
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Audience titles */
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.audience-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-amber) 100%); /* 10% Primary - CTA section */
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--charcoal-gray);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: var(--charcoal-gray); /* 30% Secondary - Page header */
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-orange); /* 10% Primary - Page subtitle */
}

/* ============================================
   About Company Page
   ============================================ */

.about-company {
    padding: 5rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--charcoal-gray), var(--light-charcoal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-content {
    text-align: center;
    color: var(--white);
}

.placeholder-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.placeholder-icon i {
    display: block;
}

.about-text-content {
    padding: 2rem 0;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.vision-mission-detailed {
    background: var(--off-white); /* 60% Neutral - Background */
    padding: 5rem 0;
}

/* ============================================
   Strategic Goals
   ============================================ */

.strategic-goals {
    padding: 5rem 0;
    background: var(--white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.goal-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-orange); /* 10% Primary - Goal card border */
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(232, 143, 0, 0.2);
}

.goal-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange); /* 10% Primary - Goal number */
    margin-bottom: 1rem;
    opacity: 0.3;
}

.goal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Goal titles */
    margin-bottom: 1rem;
}

.goal-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Why Choose Us
   ============================================ */

.why-choose-us {
    background: var(--off-white); /* 60% Neutral - Background */
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.feature-icon i {
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Feature titles */
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Service Detail Page
   ============================================ */

.service-detail {
    padding: 5rem 0;
    background: var(--white);
}

.service-detail.service-alt {
    background: var(--off-white);
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content {
    padding: 2rem 0;
}

.service-badge {
    display: inline-block;
    background: var(--primary-orange); /* 10% Primary - Service badge */
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Service detail titles */
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.service-features {
    margin-top: 2rem;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.features-list .feature-icon {
    color: var(--primary-orange); /* 10% Primary - Feature icons */
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.features-list .feature-icon i {
    display: block;
}

.service-detail-image {
    position: sticky;
    top: 100px;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--charcoal-gray), var(--light-charcoal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.service-image-icon {
    font-size: 6rem;
    color: var(--white);
    opacity: 0.8;
}

.service-image-icon i {
    display: block;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: var(--off-white); /* 60% Neutral - Background */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Contact titles */
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--primary-orange); /* 10% Primary - Contact icons */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    display: block;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Contact text headers */
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--gray);
    font-size: 1rem;
}

.contact-hours {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Hours title */
    margin-bottom: 1.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--off-white);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-gray);
}

.time {
    color: var(--gray);
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-gray); /* 30% Secondary - Form title */
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange); /* 10% Primary - Form focus */
    box-shadow: 0 0 0 3px rgba(232, 143, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Map Section
   ============================================ */

.map-section {
    padding: 3rem 0;
    background: var(--white);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--off-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray);
}

.map-content {
    text-align: center;
    color: var(--gray);
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--charcoal-gray);
    opacity: 0.5;
}

.map-icon i {
    display: block;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--white); /* White background for logo visibility */
    color: var(--charcoal-gray);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(90, 90, 91, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary-orange); /* 10% Primary - Footer tagline */
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange); /* 10% Primary - Footer titles */
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--charcoal-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-orange); /* 10% Primary - Footer link hover */
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: var(--charcoal-gray);
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact li i {
    margin-left: 0.5rem;
    color: var(--primary-orange);
    width: 20px;
}

body.rtl .footer-contact li i {
    margin-left: 0;
    margin-right: 0.5rem;
}

body.ltr .footer-contact li i {
    margin-left: 0.5rem;
    margin-right: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 90, 91, 0.1);
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(90, 90, 91, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--charcoal-gray);
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
        order: -1;
    }

    body.ltr .language-switcher {
        margin-right: 0;
        margin-left: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .about-content,
    .about-wrapper,
    .service-detail-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .footer-logo-image {
        height: 30px;
        max-width: 120px;
    }

    section {
        padding: 3rem 0;
    }
}

