/* Elite Taste - Modern CSS Framework Based on Brand Book */

/* Import Google Fonts - Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sue+Ellen+Francisco&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@300;400;600;700&display=swap');

/* CSS Variables - Brand Colors Only */
:root {
    /* Primary Brand Color from Brand Book */
    --primary-color: #8c6f40;
    --primary-rgb: 140, 111, 64;
    --primary-light: #a68759;
    --primary-dark: #6b5530;
    --primary-darker: #4a3a20;
    
    /* Secondary Colors - Derived from Primary Brand Color */
    --secondary-color: #f4f1eb;
    --accent-color: #d4af37;
    --accent-light: #e6c55a;
    --accent-dark: #b8941f;
    
    /* Neutral Colors - Warm Tones */
    --white: #ffffff;
    --cream: #faf8f5;
    --beige: #f5f2ed;
    --light-brown: #e8ddd0;
    --medium-brown: #d4c4a8;
    --dark-brown: #8b7355;
    --charcoal: #2c2c2c;
    --black: #1a1a1a;
    
    /* Status Colors - Warm Palette */
    --success: #7d8471;
    --warning: #d4af37;
    --danger: #a0522d;
    --info: #8c6f40;
    
    /* Typography - Brand Fonts */
    --font-primary-en: 'Cinzel Decorative', serif;
    --font-secondary-en: 'Sue Ellen Francisco', cursive;
    --font-primary-ar: 'Almarai', sans-serif;
    --font-body-ar: 'Cairo', sans-serif;
    --font-body-en: 'Georgia', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1.5rem;
    
    /* Shadows - Warm Tones */
    --shadow-sm: 0 2px 4px rgba(140, 111, 64, 0.1);
    --shadow-md: 0 4px 12px rgba(140, 111, 64, 0.15);
    --shadow-lg: 0 8px 24px rgba(140, 111, 64, 0.2);
    --shadow-xl: 0 16px 48px rgba(140, 111, 64, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body-ar);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Language-specific Typography */
[dir="rtl"] {
    font-family: var(--font-primary-ar);
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: var(--font-primary-ar);
    font-weight: 700;
}

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

[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4, [dir="ltr"] h5, [dir="ltr"] h6 {
    font-family: var(--font-primary-en);
    font-weight: 700;
}

/* Preloader Styles - Modern Design */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-family: var(--font-primary-en);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: textPulse 2s ease-in-out infinite;
}

.preloader-subtext {
    font-size: 1rem;
    opacity: 0.8;
    animation: textPulse 2s ease-in-out infinite 0.5s;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Navigation Styles */
.navbar {
    background: rgba(250, 248, 245, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(140, 111, 64, 0.1);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand img {
    transition: all var(--transition-normal);
}

.navbar.scrolled .navbar-brand img {
    height: 40px !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--charcoal) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(140, 111, 64, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: var(--cream);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-fast);
    color: var(--charcoal);
}

.dropdown-item:hover {
    background-color: rgba(140, 111, 64, 0.1);
    color: var(--primary-color);
}

/* Language Switcher */
.language-switcher .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all var(--transition-normal);
    background: transparent;
}

.language-switcher .btn:hover,
.language-switcher .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section - Ultra Modern Design */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(140, 111, 64, 0.9) 0%, 
        rgba(107, 85, 48, 0.95) 50%, 
        rgba(74, 58, 32, 0.9) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(140, 111, 64, 0.3) 0%, transparent 50%);
    animation: heroShimmer 4s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-family: var(--font-primary-en);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    color: var(--white);
}

[dir="rtl"] .hero-section h1 {
    font-family: var(--font-primary-ar);
    font-weight: 800;
}

.hero-section .lead {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    color: var(--white);
}

.hero-section .badge {
    background: var(--accent-color) !important;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

/* Stats Cards - Enhanced Design */
.stats-cards {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.stats-cards .card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(140, 111, 64, 0.1);
}

.stats-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stats-cards .card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
}

.stats-cards h3 {
    color: var(--primary-color);
    font-weight: 800;
}

/* Buttons - Brand Colors */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-primary-en);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

[dir="rtl"] .section-title {
    font-family: var(--font-primary-ar);
}

.section-subtitle {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Badge Styles */
.badge {
    background: var(--accent-color) !important;
    color: var(--charcoal);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(140, 111, 64, 0.1);
}

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

.card-img-top {
    transition: all var(--transition-normal);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card.bg-primary {
    background: var(--accent-color) !important;
    color: var(--charcoal) !important;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all var(--transition-normal);
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Gallery */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: all var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer - Brand Colors */
.footer {
    background: linear-gradient(135deg, var(--charcoal), var(--black));
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-width: 150px;
}

.footer-col h4 {
    font-family: var(--font-primary-en);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

[dir="rtl"] .footer-col h4 {
    font-family: var(--font-primary-ar);
}

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

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

.footer-links a {
    color: var(--light-brown);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: var(--charcoal);
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--light-brown);
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--dark-brown);
    margin-top: 3rem;
    padding-top: 2rem;
    color: var(--medium-brown);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--medium-brown);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-cards {
        margin-top: -50px;
    }
    
    .stats-cards .card {
        margin-bottom: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
        padding-top: 80px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* RTL Support */
[dir="rtl"] .navbar-nav .nav-link {
    margin: 0 0.5rem 0 0;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 0.5rem;
}

[dir="rtl"] .contact-item i {
    margin-left: 0.75rem;
    margin-right: 0;
}

/* English Language Specific Styles */
[dir="ltr"] .hero-section {
    padding-top: 90px !important;
}

[dir="ltr"] .navbar {
    z-index: 1050;
}

[dir="ltr"] .hero-section {
    z-index: 1;
}

[dir="ltr"] .stats-cards {
    margin-top: -80px;
}

/* Additional responsive fixes for English version */
@media (max-width: 768px) {
    [dir="ltr"] .hero-section {
        padding-top: 80px !important;
    }
    
    [dir="ltr"] .stats-cards {
        margin-top: -40px;
    }
}

@media (max-width: 576px) {
    [dir="ltr"] .hero-section {
        padding-top: 70px !important;
    }
    
    [dir="ltr"] .stats-cards {
        margin-top: -30px;
    }
}

/* Enhanced language switcher for better UX */
.language-switcher {
    position: relative;
}

.language-switcher .btn {
    min-width: 80px;
    font-size: 0.9rem;
}

/* Improved navigation for both languages */
.navbar-nav {
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Better mobile navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(250, 248, 245, 0.98);
        border-radius: var(--radius-lg);
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .language-switcher {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-to-top,
    .preloader {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}


/* Hero Slider Styles - Ultra Modern */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(140, 111, 64, 0.8) 0%, 
        rgba(107, 85, 48, 0.9) 50%, 
        rgba(74, 58, 32, 0.8) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

/* Slider Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(140, 111, 64, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.hero-nav-btn.prev {
    left: 30px;
}

.hero-nav-btn.next {
    right: 30px;
}

/* Slider Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.indicator.active,
.indicator:hover {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-nav-btn.prev {
        left: 15px;
    }
    
    .hero-nav-btn.next {
        right: 15px;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .scroll-down {
        bottom: 60px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-slide .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide h1 {
        font-size: 2rem !important;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
    }
    
    .hero-slide .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Animation for slide content */
.hero-slide.active h1,
.hero-slide.active .lead,
.hero-slide.active .badge,
.hero-slide.active .hero-buttons {
    animation: slideInUp 1s ease-out;
}

.hero-slide.active .badge {
    animation-delay: 0.2s;
}

.hero-slide.active h1 {
    animation-delay: 0.4s;
}

.hero-slide.active .lead {
    animation-delay: 0.6s;
}

.hero-slide.active .hero-buttons {
    animation-delay: 0.8s;
}

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

/* Auto-play indicator */
.indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.indicator.active::after {
    opacity: 1;
    transform: scale(1);
    animation: indicatorPulse 5s linear;
}

@keyframes indicatorPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background: var(--accent-color) !important;
    color: var(--charcoal) !important;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}
.bg-info, .text-info {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}
.bg-success, .text-success {
    background: var(--success) !important;
    color: var(--white) !important;
}
.bg-danger, .text-danger {
    background: var(--danger) !important;
    color: var(--white) !important;
}
.bg-warning, .text-warning {
    background: var(--accent-color) !important;
    color: var(--charcoal) !important;
}
.bg-dark, .text-dark {
    background: var(--charcoal) !important;
    color: var(--white) !important;
}
.bg-light, .text-light {
    background: var(--cream) !important;
    color: var(--charcoal) !important;
}

/* === Modern Footer Styles === */
.modern-footer {
  background: linear-gradient(135deg, var(--black), var(--primary-darker));
  color: var(--white);
  font-family: var(--font-primary-ar);
  padding: 0;
  margin-top: 3rem;
  direction: rtl;
}
.modern-footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 2rem 2rem 2rem;
  max-width: 1300px;
  margin: auto;
}
.modern-footer .footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 2rem;
}
.modern-footer .footer-logo {
  width: 120px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(140,111,64,0.2));
}
.modern-footer .footer-desc {
  color: var(--beige);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.modern-footer .footer-col h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.modern-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.modern-footer .footer-col ul li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.modern-footer .footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.modern-footer .footer-col ul li a:hover {
  color: var(--accent-color);
}
.modern-footer .footer-social {
  margin-top: 1.2rem;
}
.modern-footer .footer-social a {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: var(--accent-color);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modern-footer .footer-social a:hover {
  background: var(--accent-color);
  color: var(--black);
  transform: translateY(-3px) scale(1.08);
}
.modern-footer .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--beige);
  font-size: 1rem;
}
.modern-footer .contact-list i {
  color: var(--accent-color);
  font-size: 1.1rem;
  min-width: 22px;
  text-align: center;
}
.modern-footer .footer-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
}
.modern-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.modern-footer .btn.whatsapp {
  background: #25d366;
  color: var(--black);
}
.modern-footer .btn.whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
}
.modern-footer .btn.call {
  background: var(--accent-color);
  color: var(--black);
}
.modern-footer .btn.call:hover {
  background: var(--primary-color);
  color: var(--white);
}
.modern-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(26,26,26,0.98);
  padding: 1.2rem 2rem 0.7rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}
.modern-footer .footer-policies a {
  color: var(--beige);
  margin-left: 1.2rem;
  margin-right: 0.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.modern-footer .footer-policies a:hover {
  color: var(--accent-color);
}
.modern-footer .footer-copyright {
  color: var(--beige);
  font-size: 0.98rem;
  text-align: left;
}
@media (max-width: 900px) {
  .modern-footer .footer-main {
    flex-direction: column;
    gap: 0;
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  }
  .modern-footer .footer-col {
    margin-bottom: 1.5rem;
  }
  .modern-footer .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
}

