/* ============================================
   Variables & Reset
   ============================================ */

:root {
    /* Blue & Yellow Color Scheme */
    --primary-blue: #1E40AF;        /* Deep Blue */
    --secondary-blue: #3B82F6;      /* Bright Blue */
    --light-blue: #60A5FA;          /* Light Blue */
    --dark-blue: #1E3A8A;           /* Dark Blue */
    
    --primary-yellow: #FCD34D;      /* Bright Yellow */
    --secondary-yellow: #F59E0B;    /* Golden Yellow */
    --light-yellow: #FEF3C7;        /* Pale Yellow */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --gray: #9CA3AF;
    --dark-gray: #4B5563;
    --black: #1F2937;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-yellow: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
    
    /* Typography */
    --font-arabic: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-english: 'Poppins', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-english);
    color: var(--black);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

[dir="rtl"] body {
    font-family: var(--font-arabic);
}

body.ltr {
    direction: ltr;
}

body.rtl {
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: transparent;
    border-radius: var(--radius-sm);
}

.header-logo-img {
    height: clamp(35px, 8vw, 50px);
    width: auto;
    transition: transform var(--transition-base);
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header-logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: inline-block;
    transition: transform var(--transition-base);
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-lang-toggle {
    display: none;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-yellow);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 80%;
}

.lang-toggle {
    display: flex;
    position: relative;
    border: 2px solid var(--primary-yellow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
    padding: 0;
    transition: all var(--transition-base);
}

.lang-toggle .lang-ar {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    cursor: pointer;
}

.lang-toggle .lang-en {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    cursor: pointer;
}

.lang-toggle .lang-ar.active,
.lang-toggle .lang-en.active {
    background: var(--primary-yellow);
    color: var(--dark-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('pexels-imshafeek-32839113.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    margin-top: -4rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--primary-yellow);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-main {
    display: block;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    font-size: 0.6em;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 211, 77, 0.4);
}

.hero-btn {
    margin-top: 1.5rem;
}

.hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0.5;
    }
    100% {
        top: 10px;
        opacity: 1;
    }
}

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

/* ============================================
   Sections Common Styles
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-yellow);
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Landmarks Section
   ============================================ */

.landmarks-section {
    background: var(--white);
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.landmarks-grid-three {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.landmark-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    animation: fadeInUp 0.6s ease backwards;
}

.landmark-card:nth-child(1) { animation-delay: 0.1s; }
.landmark-card:nth-child(2) { animation-delay: 0.2s; }
.landmark-card:nth-child(3) { animation-delay: 0.3s; }
.landmark-card:nth-child(4) { animation-delay: 0.4s; }

.landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    padding: var(--spacing-md) 0 var(--spacing-sm);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.landmark-card:hover .card-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.landmark-card:hover .placeholder-image {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--black);
    line-height: 1.7;
}

/* ============================================
   Cultural Section
   ============================================ */

.cultural-section {
    background: var(--light-gray);
}

/* ============================================
   Museums Section
   ============================================ */

.museums-section {
    background: var(--white);
}

/* ============================================
   Pilgrimage Section
   ============================================ */

.pilgrimage-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.pilgrimage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pilgrimage-section .section-title {
    color: var(--white);
}

.pilgrimage-section .section-title::after {
    background: var(--gradient-yellow);
}

.pilgrimage-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--spacing-md);
}

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

.map-section {
    background: var(--off-white);
}

.map-container {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    width: 100%;
    max-width: 900px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem !important;
    line-height: 1 !important;
    display: block !important;
    margin-bottom: 0.5rem;
}

.whatsapp-icon {
    color: #25D366 !important;
}

.call-icon {
    color: var(--primary-blue) !important;
}

.email-icon {
    color: #4A5568 !important;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 0;
}

.card-description {
    font-size: 0.85rem;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    background: var(--off-white);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    color: var(--gray);
    pointer-events: none;
    transition: all var(--transition-base);
    background: var(--off-white);
    padding: 0 0.5rem;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-submit {
    align-self: flex-start;
    margin-top: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 2px solid rgba(252, 211, 77, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(252, 211, 77, 0.3);
}

[dir="rtl"] .contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    transition: color var(--transition-base);
    direction: ltr;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-blue);
}

.contact-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    color: var(--white);
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

[dir="rtl"] .whatsapp-float {
    left: 20px;
    right: auto;
}

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

.footer {
    background: #213999;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
    }
    
    .footer .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        padding: 0;
    }
}

/* Footer Direction Support */
html[dir="rtl"] .footer,
body[dir="rtl"] .footer {
    direction: rtl;
}

html[dir="ltr"] .footer,
body[dir="ltr"] .footer {
    direction: ltr;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-xs);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #FFD700 !important;
    padding-right: 8px;
    transform: translateX(-3px);
    font-weight: 500;
}

[dir="ltr"] .footer-list a:hover {
    padding-right: 0;
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.social-link:hover {
    transform: scale(1.2) translateY(-3px);
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-sm);
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.footer .contact-item:hover {
    color: #FFD700;
    transform: translateX(-5px);
    background: none;
    border: none;
    box-shadow: none;
}

[dir="ltr"] .footer .contact-item:hover {
    transform: translateX(5px);
}

.footer .contact-item i.contact-icon,
.footer .contact-icon {
    color: #FFD700;
    font-size: 1.25rem;
    width: 24px;
    min-width: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: none;
}

.footer .contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: #FFD700;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: #ffffff;
}

.copyright-link {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright-link:hover {
    color: #FFD700;
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg);
        transition: left var(--transition-base);
        z-index: 999;
    }

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

    [dir="rtl"] .nav-menu {
        left: 100%;
    }

    [dir="rtl"] .nav-menu.active {
        left: 0;
    }

    .lang-toggle-desktop {
        display: none;
    }

    .nav-lang-toggle {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-lang-toggle .lang-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
        margin-top: -2rem !important;
        gap: 0.3rem;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-direction: row !important;
        gap: 0.5rem;
        padding: 0.5rem;
        bottom: 1rem;
        width: 95%;
        max-width: none;
    }

    .stat-item {
        flex: 1;
        padding: 0;
    }

    .stat-number {
        font-size: 1.1rem !important;
        margin-bottom: 0.1rem;
    }

    .stat-label {
        font-size: 0.65rem !important;
        white-space: nowrap;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    @media (max-width: 640px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
        }
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .landmarks-grid-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

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

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   RTL Specific Adjustments
   ============================================ */

[dir="rtl"] .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
}

[dir="rtl"] .form-label {
    right: 1rem;
    left: auto;
}

[dir="rtl"] .form-input:focus + .form-label {
    right: 0.75rem;
    left: auto;
}

/* ============================================
   Utility Classes
   ============================================ */

.fade-in {
    animation: fadeInUp 0.6s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

