/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure no unwanted borders or outlines on page elements */
html, body {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Prevent any focus outlines that might cause visual issues */
html:focus, body:focus {
    outline: none !important;
}

/* Lyon Font Face Declarations */
@font-face {
    font-family: 'Lyon Display';
    src: url('fonts/lyon-display/Lyon Display Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Display';
    src: url('fonts/lyon-display/Lyon Display Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Display';
    src: url('fonts/lyon-display/Lyon Display Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Display';
    src: url('fonts/lyon-display/Lyon Display Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Text';
    src: url('fonts/lyon-text/Lyon Text Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Text';
    src: url('fonts/lyon-text/Lyon Text Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Text';
    src: url('fonts/lyon-text/Lyon Text Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Lyon Arabic Font Face Declarations */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/Lyon Arabic Display Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/Lyon Arabic Display Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/Lyon Arabic Display Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/Lyon Arabic Display Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Text';
    src: url('fonts/lyon-arabic-text/Lyon Arabic Text Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Text';
    src: url('fonts/lyon-arabic-text/Lyon Arabic Text Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lyon Arabic Text';
    src: url('fonts/lyon-arabic-text/Lyon Arabic Text Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Wazen Brand Color Variables */
:root {
    /* Wazen Brand Primary Colors from Guidebook */
    --wazen-black: #000000;
    --wazen-light-cream: #EFEBCB;
    --wazen-gold-primary: #C0A35B; /* Gold/Bronze */
    --wazen-gold-dark: #93752B;   /* Darker Gold/Brown */
    --wazen-very-light-cream: #FDF9F0;

    /* Functional Colors derived from Wazen palette */
    --text-primary: var(--wazen-black);
    --text-secondary: #4A4A4A; /* Keeping a medium gray for readability, as no specific gray is given */
    --text-muted: #6B6B6B;     /* Keeping a light gray */

    --background-white: #FFFFFF;
    --background-cream: var(--wazen-very-light-cream);
    --background-light: var(--wazen-light-cream);

    /* Interactive Colors - derived from brand golds, adjusted to be within the palette feel */
    --hover-gold: #D4AF37; /* Slightly brighter gold for hover, close to C0A35B but more vibrant */
    --focus-gold: #FFD700; /* Bright gold for focus, for accessibility */

    /* Gradients - using primary brand golds from guidebook */
    --gradient-primary: linear-gradient(135deg, var(--wazen-gold-primary), var(--wazen-gold-dark));
    --gradient-accent: linear-gradient(135deg, var(--wazen-gold-dark), var(--wazen-gold-primary)); /* Can be used for secondary gradients */
}

body {
    font-family: 'Lyon Text', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lyon Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Arabic Typography Support */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: 'Lyon Arabic Display', 'Lyon Display', serif !important;
}

[dir="rtl"] body {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] p, [dir="rtl"] span, [dir="rtl"] div {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] button, [dir="rtl"] .btn {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

/* Force Lyon fonts for all Arabic text elements */
[dir="rtl"] * {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: 'Lyon Arabic Display', 'Lyon Display', serif !important;
}

h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

h2 {
    font-weight: 600;
    font-size: 2.8rem;
}

h3 {
    font-weight: 500;
    font-size: 2.2rem;
}

.section-title {
    font-family: 'Lyon Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Lyon Text', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 163, 91, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    background: var(--gradient-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--wazen-gold-primary);
    border: 2px solid var(--wazen-gold-primary);
}

.btn-secondary:hover {
    background: var(--wazen-gold-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 163, 91, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* WhatsApp button special styling */
.btn-primary[data-i18n="contact.form.submit"] {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary[data-i18n="contact.form.submit"]:hover {
    background: linear-gradient(135deg, #128c7e, #0d6b5f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary[data-i18n="contact.form.submit"] i {
    font-size: 1.2rem;
}

/* Disabled button state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

/* Arabic font for any text in navigation logo area */
[dir="rtl"] .nav-logo {
    font-family: 'Lyon Arabic Display', serif;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Lyon Text', serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

/* Arabic font for navigation links */
[dir="rtl"] .nav-link {
    font-family: 'Lyon Arabic Text', serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--wazen-gold-primary);
}

.nav-cta .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Arabic font for navigation CTA button */
[dir="rtl"] .nav-cta .btn-primary {
    font-family: 'Lyon Arabic Text', serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(139, 0, 0, 0.6));
    z-index: -1;
}

/* Hero Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: #fff;
    border-color: #8b0000;
    transform: scale(1.2);
}

/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.hero-nav:hover {
    background: rgba(139, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Hero navigation icon fixes */
.hero-nav i.fas {
    color: white !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.hero-nav i.fa-chevron-left::before {
    content: "\f053" !important;
}

.hero-nav i.fa-chevron-right::before {
    content: "\f054" !important;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: none;
}

.hero-title {
    font-family: 'Lyon Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

/* Arabic font for hero title */
[dir="rtl"] .hero-title {
    font-family: 'Lyon Arabic Display', serif;
}

.hero-subtitle {
    font-family: 'Lyon Text', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
    pointer-events: auto;
}

/* Arabic font for hero subtitle */
[dir="rtl"] .hero-subtitle {
    font-family: 'Lyon Arabic Text', serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    pointer-events: auto;
}

/* Sections */
section {
    padding: 5rem 0;
}

.services-overview {
    background: var(--background-cream);
}

.why-choose-us {
    background: white;
}

.featured-dishes {
    background: var(--background-light);
}

.testimonials {
    background: var(--background-cream);
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 550px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--wazen-gold-primary);
}

/* Service cards on index page - only for index page, not services page */
.index-page .services-overview .service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    display: block;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
}

/* Video loading and fallback handling */
.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.service-image video.loaded {
    opacity: 1;
}

.service-image video:not(.loaded) {
    opacity: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.service-image img.loaded {
    opacity: 1;
}

.service-image img:not(.loaded) {
    opacity: 0;
}

.services-overview .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Ensure videos show completely without cropping */
.services-overview .service-image video {
    object-fit: cover !important;
    background-color: transparent;
}

/* Video styling for service cards to maintain same dimensions as images */
.services-overview .service-image video,
.services-overview .service-image video.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

/* Ensure video container is exactly the same size as image container - only for index page */
.index-page .services-overview .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    display: block;
    box-sizing: border-box;
}

.services-overview .service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(192, 163, 91, 0.3);
}

.service-card h3 {
    font-family: 'Lyon Display', serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.service-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    position: relative;
    z-index: 10;
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white !important;
    font-size: 1.8rem;
    position: relative;
    z-index: 10;
}

.feature h3 {
    font-family: 'Lyon Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-info {
    padding: 1.5rem;
}

.dish-info h3 {
    font-family: 'Lyon Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.dish-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--wazen-gold-primary);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    width: 100% !important;
    display: block !important;
}

.cta-section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    text-align: center !important;
}

.cta-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

.cta-content h2 {
    font-family: 'Lyon Display', serif !important;
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    color: white !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* Arabic font for CTA title */
[dir="rtl"] .cta-content h2 {
    font-family: 'Lyon Arabic Display', serif;
}

.cta-content p {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.95 !important;
    line-height: 1.5 !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    color: white !important;
    display: block !important;
    width: 100% !important;
}

/* Arabic font for CTA description */
[dir="rtl"] .cta-content p {
    font-family: 'Lyon Arabic Text', serif;
}

.cta-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.cta-buttons .btn-large {
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
}

/* Medium screens responsive */
@media (max-width: 1024px) {
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.15rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-buttons .btn-large {
        padding: 0.9rem 1.8rem;
        font-size: 1.05rem;
    }
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--wazen-gold-dark);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Lyon Display', serif;
    margin-bottom: 1rem;
    color: var(--wazen-gold-primary);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    white-space: normal;
    word-spacing: normal;
    letter-spacing: normal;
}

/* Address list items - reduce margin for better spacing */
.footer-section ul li:nth-child(3),
.footer-section ul li:nth-child(4) {
    margin-bottom: 0.3rem;
}

/* Ensure address text is properly visible */
.footer-section ul li span {
    color: rgba(255, 255, 255, 0.8) !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
}

/* Ensure address line breaks work properly */
.footer-section ul li br {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.5 !important;
}

/* Fix address text spacing issues */
.footer-section ul li[data-i18n*="location"] {
    white-space: normal !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
}

.footer-section ul li span[data-i18n*="addresses"] {
    white-space: normal !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-rendering: optimizeLegibility !important;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--wazen-gold-primary);
}

.footer-section ul li i {
    color: var(--wazen-gold-primary);
    margin-right: 0.5rem;
    width: 16px;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific FontAwesome rules for footer contact icons */
.footer-section ul li i.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--wazen-gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Ensure circular background is visible */
.social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wazen-gold-primary);
    border-radius: 50%;
    z-index: 1;
}

.social-links a i {
    color: white !important;
    font-size: 1.2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

/* Specific FontAwesome rules for social icons */
.social-links a i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    color: white !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Force icon display with multiple fallbacks */
.social-links a i.fab:before {
    content: attr(data-icon) !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    color: white !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific icon content for each social media */
.social-links a i.fa-instagram:before {
    content: "\f16d" !important;
}

.social-links a i.fa-facebook:before {
    content: "\f09a" !important;
}

.social-links a i.fa-linkedin:before {
    content: "\f08c" !important;
}

.social-links a i.fa-whatsapp:before {
    content: "\f232" !important;
}

/* Fix floating button icons */
.back-to-top i,
.whatsapp-btn i {
    color: white !important;
    font-size: 1.2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

/* Specific FontAwesome rules for floating buttons */
.back-to-top i.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: white !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.whatsapp-btn i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    color: white !important;
    font-size: 1.5rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Force icon content for floating buttons */
.back-to-top i.fa-chevron-up:before {
    content: "\f077" !important;
}

.whatsapp-btn i.fa-whatsapp:before {
    content: "\f232" !important;
}

/* WhatsApp notice icon fixes */
.whatsapp-notice i.fab.fa-whatsapp {
    color: #e1eee6 !important;
    font-size: 24px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-right: 8px !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.whatsapp-notice i.fab.fa-whatsapp::before {
    content: "\f232" !important;
}

/* Service Areas section location icons */
.details-card ul li i.fa-map-marker-alt {
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-right: 0.5rem !important;
    width: 16px !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Force location icon content */
.details-card ul li i.fa-map-marker-alt:before {
    content: "\f3c5" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Service Areas list styling */
.details-card ul li {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
}

.details-card ul li span {
    color: var(--text-secondary) !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Why Choose Our Catering section icons */
.details-card ul li i.fa-comments,
.details-card ul li i.fa-dollar-sign,
.details-card ul li i.fa-user-tie,
.details-card ul li i.fa-award,
.details-card ul li i.fa-clock,
.details-card ul li i.fa-headset {
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-right: 0.5rem !important;
    width: 16px !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Force icon content for Why Choose icons */
.details-card ul li i.fa-comments:before {
    content: "\f086" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-card ul li i.fa-dollar-sign:before {
    content: "\f155" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-card ul li i.fa-user-tie:before {
    content: "\f508" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-card ul li i.fa-award:before {
    content: "\f559" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-card ul li i.fa-clock:before {
    content: "\f017" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-card ul li i.fa-headset:before {
    content: "\f590" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--wazen-gold-primary) !important;
    font-size: 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure floating buttons are properly styled */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, rgb(212, 175, 55), rgb(139, 0, 0)) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: 0.3s !important;
    z-index: 1000 !important;
    box-shadow: rgba(212, 175, 55, 0.3) 0px 4px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.whatsapp-btn {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: rgb(37, 211, 102) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 24px !important;
    box-shadow: rgba(37, 211, 102, 0.3) 0px 4px 15px !important;
    transition: 0.3s !important;
    z-index: 1000 !important;
    transform: scale(1) !important;
}

.social-links a:hover {
    background: var(--hover-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Language Switch Button */
.language-switch {
    margin-left: 1rem;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Lyon Display', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: var(--wazen-gold-primary);
    color: var(--background-white);
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* RTL navigation - only apply row-reverse on desktop */
[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-item.reverse {
    flex-direction: row;
}

[dir="rtl"] .story-section {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .divisions-grid {
    direction: rtl;
}

[dir="rtl"] .clients-grid {
    direction: rtl;
}

[dir="rtl"] .quality-stats {
    direction: rtl;
}

[dir="rtl"] .mission-vision-values {
    direction: rtl;
}

[dir="rtl"] .gallery-grid {
    direction: rtl;
}

[dir="rtl"] .contact-form {
    direction: rtl;
}

[dir="rtl"] .whatsapp-notice {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .language-btn {
    font-family: 'Lyon Arabic Display', serif;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ensure no unwanted borders during mobile transitions */
    html, body, .container, .navbar, .hero, .hero-slideshow {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Fix service card mobile responsiveness */
    .service-card {
        height: 650px;
        margin-bottom: 1.5rem;
    }
    
    .service-card p {
        padding: 0 1.2rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Process section mobile responsiveness */
    .process-section {
        padding: 4rem 0;
    }
    
    .process-section .section-title {
        text-align: center !important;
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .process-section .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60px;
        height: 2px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .step {
        padding: 1.8rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    /* RTL mobile navigation support */
    [dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
        /* Override RTL flex-direction on mobile to show vertical menu */
        flex-direction: column !important;
    }

    [dir="rtl"] .nav-menu.active {
        right: 0;
        left: auto;
        /* Override RTL flex-direction on mobile to show vertical menu */
        flex-direction: column !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Hero slideshow responsive */
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        z-index: 100;
        pointer-events: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero-nav i.fas {
        color: white !important;
        font-size: 1rem !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        text-rendering: auto !important;
        -webkit-font-smoothing: antialiased !important;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile centering for service features section */
    .service-features-section .section-title {
        text-align: center !important;
        font-size: 1.8rem !important;
        margin: 0 auto 2.5rem !important;
    }
    
    .service-features-section .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60px !important;
        height: 2px !important;
    }
    
    .feature-card {
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .feature-card h3 {
        text-align: center !important;
        font-size: 1rem !important;
        margin: 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 0.8rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .feature-card p {
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .services-grid,
    .features-grid,
    .dishes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    /* CTA Section mobile responsiveness */
    .cta-section {
        padding: 3rem 0 !important;
        text-align: center !important;
    }
    
    .cta-section .container {
        padding: 0 1rem !important;
        text-align: center !important;
    }
    
    .cta-content {
        padding: 0 1rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .cta-content h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: white !important;
    }
    
    .cta-content p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        color: white !important;
    }
    
    .cta-buttons {
        gap: 0.8rem !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .cta-buttons .btn-large {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Page header small mobile responsiveness */
    .page-header {
        padding: 4rem 0 2rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .page-header .container {
        padding: 0 0.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
        text-align: center !important;
        color: white !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .page-header p {
        font-size: 1rem !important;
        text-align: center !important;
        color: white !important;
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.4 !important;
        width: 100% !important;
    }
    
    /* Hero navigation small mobile responsiveness */
    .hero-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-nav i.fas {
        color: white !important;
        font-size: 0.9rem !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        text-rendering: auto !important;
        -webkit-font-smoothing: antialiased !important;
    }

    /* CTA Section small mobile responsiveness */
    .cta-section {
        padding: 2.5rem 0 !important;
        text-align: center !important;
    }
    
    .cta-section .container {
        padding: 0 0.5rem !important;
        text-align: center !important;
    }
    
    .cta-content {
        padding: 0 0.5rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        color: white !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        color: white !important;
    }
    
    .cta-buttons {
        gap: 0.6rem !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .cta-buttons .btn-large {
        width: 100% !important;
        max-width: 260px !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        display: block !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    /* Small mobile centering for service features section */
    .service-features-section .section-title {
        text-align: center !important;
        font-size: 1.6rem !important;
        margin: 0 auto 2rem !important;
    }
    
    .service-features-section .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 2px !important;
    }
    
    .feature-card {
        text-align: center !important;
        padding: 1.2rem !important;
    }
    
    .feature-card h3 {
        text-align: center !important;
        font-size: 0.9rem !important;
        margin: 0.8rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 0.6rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .feature-card p {
        text-align: center !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .service-card,
    .feature,
    .dish-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .services-overview .service-image {
        height: 180px;
    }
    
    .service-icon {
        margin: -35px auto 1rem;
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .service-card p {
        padding: 0 1rem 1.2rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-card {
        height: 620px;
        margin-bottom: 1rem;
    }
}

/* Extra small devices - ensure description is visible */
@media (max-width: 360px) {
    .service-card {
        height: 680px;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        padding: 0 1rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 8rem 0 4rem !important;
    text-align: center !important;
    margin-top: 80px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.page-header .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.page-header h1 {
    font-family: 'Lyon Display', serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    color: white !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
}

/* Arabic font for page header title */
[dir="rtl"] .page-header h1 {
    font-family: 'Lyon Arabic Display', serif;
}

.page-header p {
    font-family: 'Lyon Text', serif !important;
    font-size: 1.2rem !important;
    opacity: 0.9 !important;
    font-weight: 400 !important;
    text-align: center !important;
    color: white !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Arabic font for page header subtitle */
[dir="rtl"] .page-header p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Services Overview */
.services-overview {
    padding: 8rem 0;
    background: var(--background-white);
    position: relative;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
    padding: 3rem 0;
    position: relative;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 163, 91, 0.1), rgba(147, 117, 43, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover::before {
    opacity: 1;
}

.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.service-image:hover img {
    transform: scale(1.08);
}

.service-content {
    flex: 1;
    padding: 2rem 0;
}

.service-content h2 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    position: relative;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}



.service-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Lyon Text', serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
    direction: rtl;
}



.service-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}



.service-content ul {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-content ul li {
    padding: 1rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 3rem;
    font-family: 'Lyon Text', serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(192, 163, 91, 0.1);
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-content ul li:hover {
    color: var(--wazen-gold-primary);
    transform: translateX(5px);
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(192, 163, 91, 0.3);
}

.service-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Lyon Text', serif;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-features .feature:hover {
    background: var(--wazen-gold-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 163, 91, 0.4);
    border-color: var(--wazen-gold-primary);
}

.service-features .feature i {
    color: var(--wazen-gold-primary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.service-features .feature:hover i {
    color: white;
}

/* Service Features Section */
.service-features-section {
    padding: 5rem 0;
    background: var(--background-light);
}

/* Ensure service features section title is perfectly centered */
.service-features-section .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto 3rem !important;
}

.service-features-section .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-card h3 {
    text-align: center !important;
    margin: 1rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 1.1rem !important;
}

.feature-card p {
    text-align: center !important;
    margin: 0 !important;
    width: 100% !important;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

/* Ensure process section title is perfectly centered on large devices */
.process-section .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.process-section .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
}

/* Additional centering for process section title container */
.process-section .container {
    text-align: center !important;
}

.process-section .container h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: 'Lyon Display', serif;
}

.step h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: var(--background-white);
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

/* Wazen Divisions */
.wazen-divisions {
    padding: 6rem 0;
    background: var(--background-white);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.division-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.division-card h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.division-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: 'Lyon Text', serif;
}

/* Our Clients */
.our-clients {
    padding: 6rem 0;
    background: var(--background-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Client Logos Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



@keyframes borderGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}



.client-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}



/* Responsive adjustments for client logos */
@media (max-width: 768px) {
    .clients-container {
        padding: 0 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .client-logo {
        height: 100px;
        padding: 15px;
    }
    
    .client-logo-img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .client-logo {
        height: 80px;
        padding: 10px;
    }
    
    .client-logo-img {
        max-height: 50px;
    }
}

/* Legacy client grid styles (keeping for compatibility) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-item {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-family: 'Lyon Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: var(--wazen-gold-primary);
}

/* Quality Commitment */
.quality-commitment {
    padding: 6rem 0;
    background: var(--background-white);
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quality-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
    margin-bottom: 3rem;
}

.quality-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-item .number {
    display: block;
    font-family: 'Lyon Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--wazen-gold-primary);
    margin-bottom: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Animated Statistics - Modern Neon Effect */
.stat-item .number.animating {
    background: linear-gradient(45deg, var(--wazen-gold-primary), #ffd700, var(--wazen-gold-primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonGlow 2s ease-in-out, gradientShift 2s ease-in-out;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-item .label {
    font-family: 'Lyon Text', serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive adjustments for services page */
@media (max-width: 1024px) {
    .service-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .service-image img {
        height: 400px;
    }
    
    .page-header {
        padding: 6rem 0 3rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .page-header .container {
        padding: 0 1rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
        text-align: center !important;
        color: white !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .page-header p {
        font-size: 1.1rem !important;
        text-align: center !important;
        color: white !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    .services-overview {
        padding: 4rem 0;
    }
    
    .service-item {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
        padding: 2rem 0;
    }
    
    .service-item.reverse {
        flex-direction: column;
    }
    
    .service-item .service-image {
        width: 100%;
    }
    
    .service-item .service-image {
        width: 100%;
        border-radius: 15px;
    }
    
    .service-item .service-image img {
        height: 350px;
        border-radius: 15px;
        width: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    
    
    .service-content {
        width: 100%;
        text-align: center;
    }
    
    .service-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .service-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-content p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .service-content ul {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 3rem;
    }
    
    .service-content ul li {
        padding-left: 3rem;
        text-align: left;
    }
    
    .service-content ul li::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .service-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .service-features .feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .process-section {
        padding: 3rem 0;
    }
    
    .process-section .section-title {
        text-align: center !important;
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .process-section .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px;
        height: 2px;
    }
    
    .step {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .step p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .services-overview {
        padding: 3rem 0;
    }
    
    /* Enhanced mobile styles for process section */
    .process-section {
        padding: 2rem 0;
    }
    
    .process-section .section-title {
        text-align: center !important;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .process-section .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px;
        height: 2px;
    }
    
    .process-steps {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .step {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .step p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-item {
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 1rem 0;
    }
    
    .service-item .service-image {
        width: 100%;
        border-radius: 12px;
    }
    
    .service-item .service-image img {
        height: 280px;
        border-radius: 12px;
        width: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    

    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .service-content ul li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }
    
    .service-content ul li::before {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .service-features {
        gap: 0.8rem;
    }
    
    .service-features .feature {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .service-features .feature i {
        font-size: 1rem;
    }
}

/* Gallery Styles */
.gallery-filters {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--wazen-gold-primary);
    background: transparent;
    color: var(--wazen-gold-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Lyon Text', serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--wazen-gold-primary);
    color: white;
}

.gallery-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Featured Events */
.featured-events {
    padding: 5rem 0;
    background: white;
}

.events-showcase {
    margin-top: 3rem;
}

.event-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.event-showcase.reverse {
    direction: rtl;
}

.event-showcase.reverse .event-details {
    direction: ltr;
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-details h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.event-details p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Lyon Text', serif;
}

.event-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--wazen-gold-primary);
    font-family: 'Lyon Display', serif;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .event-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-showcase.reverse {
        direction: ltr;
    }
    
    .event-image img {
        height: 300px;
    }
    
    .event-stats {
        gap: 1rem;
    }
    
    .stat .number {
        font-size: 1.5rem;
    }
}

/* About Us Styles */
.company-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'Lyon Text', serif;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--wazen-gold-primary);
    font-family: 'Lyon Display', serif;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--background-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white !important;
    font-size: 2rem;
    position: relative;
    z-index: 10;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'Lyon Text', serif;
}

.values-card ul {
    list-style: none;
    text-align: left;
}

.values-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Lyon Text', serif;
}

.values-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wazen-gold-primary);
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.position {
    color: var(--wazen-gold-primary);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Lyon Text', serif;
}

.member-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Lyon Text', serif;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential {
    background: var(--background-light);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Lyon Text', serif;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white !important;
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
}

.certification-card h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.certification-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'Lyon Text', serif;
}

/* Why Choose About */
.why-choose-about {
    padding: 5rem 0;
    background: white;
}

/* About Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .stat-item .number {
        font-size: 2rem;
    }
    
    .quality-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--wazen-gold-primary);
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--wazen-gold-primary);
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white !important;
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
}

.contact-icon i {
    color: white !important;
    font-size: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11;
    position: relative;
}

.contact-card h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Lyon Text', serif;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: var(--wazen-gold-primary);
    font-style: italic;
    margin-top: 1rem;
    font-family: 'Lyon Text', serif;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Lyon Text', serif;
}

.whatsapp-notice {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Lyon Text', serif;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-notice i {
    font-size: 1.5rem;
    color: white;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.whatsapp-notice i::before {
    content: "\f232" !important;
}

.whatsapp-notice span {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Arabic font for whatsapp notice */
[dir="rtl"] .whatsapp-notice {
    font-family: 'Lyon Arabic Text', serif;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Lyon Text', serif;
}

/* Arabic font for form labels */
[dir="rtl"] .form-group label {
    font-family: 'Lyon Arabic Text', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

/* Arabic font for form inputs */
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
    font-family: 'Lyon Arabic Text', serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wazen-gold-primary);
    box-shadow: 0 0 0 3px rgba(192, 163, 91, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

/* Arabic font for checkbox labels */
[dir="rtl"] .checkbox-label {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for testimonials */
[dir="rtl"] .testimonial-content p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .testimonial-author h4 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .testimonial-author span {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for footer */
[dir="rtl"] .footer-section h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .footer-section p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .footer-section ul li {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .footer-section ul li a {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .footer-section ul li span {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .footer-bottom p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for service cards */
[dir="rtl"] .service-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .service-card p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for service content headings */
[dir="rtl"] .service-content h2 {
    font-family: 'Lyon Arabic Display', serif;
}

/* Arabic font for service content paragraphs */
[dir="rtl"] .service-content p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for service content lists */
[dir="rtl"] .service-content ul li {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for service features */
[dir="rtl"] .service-features .feature {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for story text */
[dir="rtl"] .story-text h2 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .story-text p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for service images */
[dir="rtl"] .services-overview .service-image {
    direction: ltr;
}

/* RTL support for service features section */
[dir="rtl"] .service-features-section .section-title {
    text-align: center !important;
    font-family: 'Lyon Arabic Display', serif !important;
}

[dir="rtl"] .feature-card h3 {
    text-align: center !important;
    font-family: 'Lyon Arabic Display', serif !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 1.1rem !important;
}

[dir="rtl"] .feature-card p {
    text-align: center !important;
    font-family: 'Lyon Arabic Text', serif !important;
}

/* Arabic font for feature cards */
[dir="rtl"] .feature h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .feature p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for division cards */
[dir="rtl"] .division-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .division-card p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for quality stats */
[dir="rtl"] .stat-item .number {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .stat-item .label {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for welcome content */
[dir="rtl"] .welcome-content p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for section titles */
[dir="rtl"] .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

/* Arabic font for process section */
[dir="rtl"] .process-section .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .step h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .step p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .step-number {
    font-family: 'Lyon Arabic Display', serif;
}

/* Arabic font for mission & vision section */
[dir="rtl"] .mission-vision .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .mission-card h3,
[dir="rtl"] .vision-card h3,
[dir="rtl"] .values-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .mission-card p,
[dir="rtl"] .vision-card p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .values-card ul li {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for team section */
[dir="rtl"] .team-section .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .team-member h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .team-member .position {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .team-member p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .team-member .credential {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for certifications & awards section */
[dir="rtl"] .certifications-section .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .certification-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .certification-card p {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for gallery section */
[dir="rtl"] .gallery-filters .filter-btn {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .gallery-overlay h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .gallery-overlay p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .featured-events .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .event-details h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .event-details p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .stat .label {
    font-family: 'Lyon Arabic Text', serif;
}

/* Arabic font for contact page specific elements */
[dir="rtl"] .contact-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .contact-card p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .contact-card .contact-note {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .contact-form h2 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .contact-form > p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .details-card h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .details-card p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .details-card ul li {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .details-card ul li span {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .faq-section .section-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .faq-question h3 {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .faq-answer p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .business_hours .day {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .business_hours .time {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .emergency-note {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .service_areas p {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .service_areas ul li span {
    font-family: 'Lyon Arabic Text', serif;
}

[dir="rtl"] .why_choose ul li span {
    font-family: 'Lyon Arabic Text', serif;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--wazen-gold-primary);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.details-card h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.details-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: 'Lyon Text', serif;
}

.details-card ul {
    list-style: none;
}

.details-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lyon Text', serif;
}

.details-card ul li i {
    color: var(--wazen-gold-primary);
    font-size: 0.9rem;
}

/* Business Hours */
.hours {
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Lyon Text', serif;
}

.time {
    color: var(--text-secondary);
    font-family: 'Lyon Text', serif;
}

.emergency-note {
    color: var(--wazen-gold-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-family: 'Lyon Text', serif;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--wazen-gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-family: 'Lyon Text', serif;
}

/* New Image Styles */
.division-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.division-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
    padding: 15px;
}

.division-img:hover {
    transform: scale(1.05);
}

.clients-image {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clients-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quality-text {
    order: 1;
}

.quality-image {
    order: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quality-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.testimonial-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

.card-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-img:hover {
    transform: scale(1.05);
}

.contact-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-img:hover {
    transform: scale(1.05);
}

/* RTL Support for New Images */
[dir="rtl"] .quality-content {
    grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .quality-text {
    order: 2;
}

[dir="rtl"] .quality-image {
    order: 1;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-form > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-notice {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .whatsapp-notice i {
        font-size: 1.5rem;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Font Awesome 6 Brands" !important;
        font-weight: 400 !important;
        text-rendering: auto !important;
        -webkit-font-smoothing: antialiased !important;
    }
    
    .whatsapp-notice i::before {
        content: "\f232" !important;
    }
    
    .whatsapp-notice span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Mobile RTL support for whatsapp notice */
    [dir="rtl"] .whatsapp-notice {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        min-height: 48px; /* Better touch targets */
        width: 100%;
    }
    
    .btn-primary.btn-large {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        margin-top: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Additional mobile responsive styles for smaller screens */
@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.3rem;
    }
    
    .contact-form > p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .whatsapp-notice {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .whatsapp-notice span {
        font-size: 0.85rem;
    }
    
    .btn-primary.btn-large {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .contact-form {
        padding: 0.75rem;
        margin: 0 0.25rem;
    }
    
    .contact-form h2 {
        font-size: 1.2rem;
    }
    
    .contact-form > p {
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .whatsapp-notice {
        padding: 0.75rem;
    }
    
    .whatsapp-notice span {
        font-size: 0.8rem;
    }
}

/* Prevent floating elements from interfering with form on mobile */
@media (max-width: 768px) {
    /* Hide any potential floating buttons or overlays on contact form */
    .contact-form-section {
        position: relative;
        z-index: 1;
    }
    
    .contact-form {
        position: relative;
        z-index: 2;
        overflow: visible;
    }
    
    /* Ensure form inputs are not covered by any floating elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        position: relative;
        z-index: 3;
    }
    
    /* Prevent any external floating widgets from interfering */
    body[data-page="contact"] {
        overflow-x: hidden;
    }
    
    /* Ensure proper spacing around form to avoid overlap */
    .contact-form-section .container {
        padding: 0 1rem;
    }
    
    /* Improve dietary requirements section for mobile */
    .dietary-checkboxes {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .dietary-checkboxes .checkbox-label {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Ensure textarea is properly sized on mobile */
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Mobile responsive for new images */
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-text {
        order: 1;
    }
    
    .quality-image {
        order: 2;
    }
    
    .division-img {
        height: 250px;
        object-fit: contain;
        background-color: #f8f9fa;
        padding: 10px;
    }
    
    .quality-img {
        height: 250px;
    }
    
    .testimonial-img {
        height: 150px;
    }
    
    .card-img {
        height: 150px;
    }
    
    .contact-img {
        height: 120px;
    }
}

/* Page Counter Styles - Modern Neon Design */
.page-counter-container {
    position: relative;
    margin: 2rem auto;
    max-width: 400px;
    z-index: 10;
}

.page-counter {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(139, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: counterGlow 3s ease-in-out infinite alternate;
}

.page-counter::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, #8B0000, #D4AF37, #8B0000);
    border-radius: 20px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

.counter-title {
    font-family: 'Lyon Display', serif;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.counter-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.counter-number {
    font-family: 'Lyon Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4);
    animation: numberPulse 2s ease-in-out infinite;
    min-width: 80px;
    display: inline-block;
}

.counter-label {
    font-family: 'Lyon Text', serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(139, 0, 0, 0.3);
}

/* Animations */
@keyframes counterGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.3),
            0 0 40px rgba(139, 0, 0, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.5),
            0 0 60px rgba(139, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.15);
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            0 0 20px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 
            0 0 15px rgba(212, 175, 55, 1),
            0 0 25px rgba(212, 175, 55, 0.8),
            0 0 35px rgba(212, 175, 55, 0.6);
    }
}

/* Spinner animation for form submission */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* RTL Support for Arabic */
[dir="rtl"] .counter-title {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .counter-number {
    font-family: 'Lyon Arabic Display', serif;
}

[dir="rtl"] .counter-label {
    font-family: 'Lyon Arabic Text', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-counter-container {
        margin: 1rem auto;
        max-width: 300px;
    }
    
    .page-counter {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .counter-title {
        font-size: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .counter-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-counter-container {
        max-width: 280px;
    }
    
    .page-counter {
        padding: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .counter-display {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Services page specific image fixes - consolidated and simplified */
.services-overview .service-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #f5f5f5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 400px;
    flex: 1;
}

.services-overview .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease;
}

.services-overview .service-image:hover img {
    transform: scale(1.08);
}

.services-overview .service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Ensure all service content is visible */
.services-overview {
    visibility: visible !important;
    opacity: 1 !important;
}

.services-overview .service-content {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force all images on services page to be visible */
body[data-page="services"] img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Specific styling for services page service images */
body[data-page="services"] .services-overview .service-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #f5f5f5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 400px;
    flex: 1;
}

body[data-page="services"] .services-overview .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease;
}



/* Force override any conflicting styles with maximum specificity */
body[data-page="services"] .services-overview .service-item .service-image {
    width: 100% !important;
    height: 500px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    background-color: #f5f5f5 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s ease !important;
    min-height: 400px !important;
    flex: 1 !important;
}

body[data-page="services"] .services-overview .service-item .service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease !important;
}

body[data-page="services"] .services-overview .service-item .service-image video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease !important;
    border-radius: 25px !important;
}

/* Logo visibility fixes */
.navbar .nav-logo img,
.footer .footer-logo {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Ensure all service images are visible with maximum specificity */
.services-overview .service-item .service-image img,
.services-overview .service-item.reverse .service-image img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Video styling for service images - maintain same size as images */
.services-overview .service-item .service-image video,
.services-overview .service-item.reverse .service-image video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease !important;
    border-radius: 25px !important;
}

/* Specific fix for social events image */
.services-overview .service-item:nth-child(2) .service-image img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Specific fix for social events video */
.services-overview .service-item:nth-child(2) .service-image video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.4s ease !important;
    border-radius: 25px !important;
}

/* Ensure no unwanted borders during screen size transitions */
@media (min-width: 769px) {
    html, body, .container, .navbar, .hero, .hero-slideshow {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

/* Force Lyon fonts for Arabic content - Override any Arial fallbacks */
[dir="rtl"] {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] * {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: 'Lyon Arabic Display', 'Lyon Display', serif !important;
}

/* Override any potential Arial usage */
* {
    font-family: 'Lyon Text', serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lyon Display', serif !important;
}

/* Ensure Arabic text uses Lyon Arabic fonts */
[dir="rtl"] * {
    font-family: 'Lyon Arabic Text', 'Lyon Text', serif !important;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: 'Lyon Arabic Display', 'Lyon Display', serif !important;
}

/* Ensure FontAwesome icons are visible in contact cards */
.contact-icon i.fas,
.contact-icon i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    color: white !important;
    font-size: 1.5rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Ensure FontAwesome icons are visible in feature cards */
.feature-icon i.fas,
.feature-icon i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    color: white !important;
    font-size: 1.8rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Service overview feature icons - fix for Arabic mode */
.services-overview .feature i.fas,
.services-overview .feature i.fab {
    color: var(--wazen-gold-primary) !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-right: 8px !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Force specific icon content for service overview features */
.services-overview .feature i.fa-utensils::before {
    content: "\f2e7" !important;
}

.services-overview .feature i.fa-concierge-bell::before {
    content: "\f562" !important;
}

.services-overview .feature i.fa-palette::before {
    content: "\f53f" !important;
}

.services-overview .feature i.fa-clock::before {
    content: "\f017" !important;
}

.services-overview .feature i.fa-users::before {
    content: "\f0c0" !important;
}

.services-overview .feature i.fa-certificate::before {
    content: "\f0a3" !important;
}

.services-overview .feature i.fa-clipboard-list::before {
    content: "\f46d" !important;
}

.services-overview .feature i.fa-leaf::before {
    content: "\f06c" !important;
}

.services-overview .feature i.fa-coins::before {
    content: "\f51e" !important;
}

.services-overview .feature i.fa-tools::before {
    content: "\f7d9" !important;
}

.services-overview .feature i.fa-user-tie::before {
    content: "\f508" !important;
}

.services-overview .feature i.fa-broom::before {
    content: "\f51a" !important;
}

/* RTL support for service overview feature icons */
[dir="rtl"] .services-overview .feature i.fas,
[dir="rtl"] .services-overview .feature i.fab {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* Ensure FontAwesome icons are visible in certification cards */
.cert-icon i.fas,
.cert-icon i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    color: white !important;
    font-size: 1.5rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Ensure FontAwesome icons are visible in mission/vision cards */
.card-icon i.fas,
.card-icon i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    color: white !important;
    font-size: 2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}




