/* ============================================
   Al-Andalus Al-Mowahd Co. - Luxury Corporate Website
   Premium Design System
   ============================================ */

/* ===== CSS Variables - Brand Colors ===== */
:root {
    --dark-blue: #183243;
    --blue-gray: #294458;
    --soft-gold: #F9E4AB;
    --gold-accent: #F6BE64;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --text-muted: #9ca3af;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 8px rgba(24, 50, 67, 0.08);
    --shadow-md: 0 4px 16px rgba(24, 50, 67, 0.12);
    --shadow-lg: 0 8px 32px rgba(24, 50, 67, 0.16);
    --shadow-xl: 0 16px 48px rgba(24, 50, 67, 0.2);
    --gold-glow: 0 0 20px rgba(246, 190, 100, 0.3);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Noto Sans Arabic', 'Cairo', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[dir="ltr"] {
    font-family: 'Inter', 'Playfair Display', 'Georgia', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--gold-glow);
    color: var(--dark-blue);
}

.hero-btn {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    opacity: 0.9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--soft-gold));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-accent);
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.lang-toggle:hover {
    background: var(--soft-gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--dark-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
    overflow: hidden;
    padding: 0;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--dark-blue);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 2s;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: var(--dark-blue);
    transform: scale(1);
    transition: transform 10s linear;
}

.hero-slide.active img {
    animation: kenBurns 15s linear infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(24, 50, 67, 0.75) 0%,
            rgba(24, 50, 67, 0.35) 50%,
            rgba(24, 50, 67, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: 2rem 0;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(24, 50, 67, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.2), rgba(249, 228, 171, 0.15));
    border: 1.5px solid var(--gold-accent);
    border-radius: 50px;
    color: var(--soft-gold);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(246, 190, 100, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.1s both;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--soft-gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: 1px;
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(246, 190, 100, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid var(--soft-gold);
    border-radius: 20px;
    position: relative;
    opacity: 0.8;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--soft-gold);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

/* ===== Section Styles ===== */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), var(--soft-gold), var(--gold-accent), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== About Section ===== */
.about {
    background: var(--light-gray);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 190, 100, 0.3), transparent);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    margin-bottom: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(246, 190, 100, 0.1);
}

.about-story h3,
.vm-item h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 1.5rem;
    font-weight: 600;
}

.about-story h3::before,
.vm-item h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(180deg, var(--gold-accent), var(--soft-gold));
    border-radius: 3px;
}

.about-story p,
.vm-item p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vm-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(246, 190, 100, 0.1);
    transition: var(--transition);
}

.vm-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-accent);
}

/* ===== Brands Section ===== */
.brands {
    background: var(--white);
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 190, 100, 0.3), transparent);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.brand-item {
    background: var(--white);
    border: 2px solid rgba(24, 50, 67, 0.1);
    border-radius: 16px;
    padding: 4rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.05), rgba(249, 228, 171, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 228, 171, 0.02));
}

.brand-item:hover::before {
    opacity: 1;
}

.brand-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--soft-gold));
    transition: var(--transition);
    border-radius: 0 0 16px 16px;
}

.brand-item:hover::after {
    width: 100%;
}

.brand-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: var(--transition);
    z-index: 1;
    position: relative;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

.brand-grid-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-item:hover .brand-grid-logo {
    transform: scale(1.1);
}

.brand-logo-placeholder {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 500;
    z-index: 1;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.brand-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(246, 190, 100, 0.3);
    transition: var(--transition);
}

.brand-item:hover .brand-logo-placeholder {
    color: var(--dark-blue);
    transform: scale(1.05);
}

.brand-item:hover .brand-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(246, 190, 100, 0.4);
}

.brands-notice {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.08), rgba(249, 228, 171, 0.04));
    border-radius: 16px;
    border: 2px solid rgba(246, 190, 100, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(246, 190, 100, 0.3));
}

.notice-content h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.notice-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== Services Section ===== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 4.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(24, 50, 67, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-accent), var(--soft-gold));
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: grayscale(0.3);
    transition: var(--transition);
    display: block;
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--blue-gray);
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-card ul {
    text-align: right;
    margin-top: 2rem;
    padding: 0;
    color: var(--blue-gray);
    list-style: none;
    width: 100%;
    max-width: 300px;
}

.service-card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 2rem;
    font-weight: 500;
    font-size: 1rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold-accent);
    font-weight: 900;
}

[dir="ltr"] .service-card ul {
    text-align: left;
}

[dir="ltr"] .service-card ul li {
    padding-right: 0;
    padding-left: 2rem;
}

[dir="ltr"] .service-card ul li::before {
    right: auto;
    left: 0;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    border: 1px solid rgba(246, 190, 100, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-accent);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(246, 190, 100, 0.3));
}

.contact-details h3 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-details p,
.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 300;
}

.contact-link:hover {
    color: var(--gold-accent);
    transform: translateX(3px);
}

.contact-link.whatsapp {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--gold-accent);
    font-weight: 500;
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-blue);
    display: block;
    margin-bottom: 0.75rem;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(246, 190, 100, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 190, 100, 0.4);
    background: linear-gradient(135deg, var(--soft-gold), var(--gold-accent));
}

.contact-location-main {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-location-english {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-social {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-item-highlight {
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.1), rgba(249, 228, 171, 0.05));
    border-color: var(--gold-accent);
}

.business-hours-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.business-hours-content {
    text-align: center;
}

.business-hours-item {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.business-hours-item:last-child {
    margin-bottom: 0;
}

.business-hours-item strong {
    color: var(--dark-blue);
}

.contact-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(246, 190, 100, 0.2);
    transition: var(--transition);
}

.contact-map:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-accent);
    transform: scale(1.02);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 190, 100, 0.4), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-contact h4 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--soft-gold);
    font-weight: 600;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon {
    font-size: 1.25rem;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 300;
}

.footer-contact ul li a:hover {
    color: var(--soft-gold);
    padding-right: 5px;
}

.footer-english {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.footer-logo h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--soft-gold);
    font-weight: 700;
}

.footer-company-name {
    font-size: 1rem;
    color: var(--soft-gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-weight: 300;
    font-size: 1.05rem;
}

.footer-links h4 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--soft-gold);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 300;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: var(--soft-gold);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .hero-stats {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .logo-image {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(24, 50, 67, 0.99);
        /* خلفية داكنة للقائمة */
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 300px;
        /* تقليل العرض قليلاً */
        height: calc(100vh - 80px);
        padding: 2rem;
        transition: var(--transition);
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--white);
        /* إعادة اللون الأبيض للروابط في الجوال */
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-accent);
        background: rgba(255, 255, 255, 0.03);
        padding-right: 10px;
        /* حركة بسيطة عند التحويم */
    }

    .menu-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map {
        height: 400px;
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .brands-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-item {
        min-height: 200px;
        padding: 3rem 2rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story,
    .vm-item {
        padding: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .lang-toggle {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .about-story,
    .vm-item,
    .service-card,
    .contact-item {
        padding: 1.5rem;
    }

    .contact-map {
        height: 300px;
    }
}

/* ===== LTR Support ===== */
body[dir="ltr"] .nav-link::after {
    left: auto;
    right: 0;
}

body[dir="ltr"] .about-story h3::before,
body[dir="ltr"] .vm-item h3::before {
    right: auto;
    left: 0;
    padding-right: 0;
    padding-left: 1.5rem;
}

body[dir="ltr"] .contact-item {
    flex-direction: row;
}

body[dir="ltr"] .contact-link:hover {
    transform: translateX(-3px);
}

body[dir="ltr"] .footer-links ul li a:hover {
    padding-right: 0;
    padding-left: 5px;
}

body[dir="ltr"] .footer-contact ul li a:hover {
    padding-right: 0;
    padding-left: 5px;
}

/* ===== Loading Animation ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    background-size: 1000px 100%;
}

/* ===== Print Styles ===== */
@media print {

    .navbar,
    .footer,
    .scroll-indicator,
    .menu-toggle,
    .lang-toggle {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ===== Contact Form Styles ===== */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(246, 190, 100, 0.1);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(24, 50, 67, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--light-gray);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(246, 190, 100, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue-gray));
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 50, 67, 0.2);
}

.social-icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    vertical-align: middle;
}

/* Adjust contact layout for form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Info : Form */
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map-section {
        margin-top: 3rem;
    }
}

.contact-success-alert {
    background: rgba(45, 206, 137, 0.1);
    border: 1px solid rgba(45, 206, 137, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.contact-success-alert p {
    color: #1aae6f;
    font-weight: 600;
    margin: 0;
}


/* ===== Modern Service Icons (SVG) ===== */
.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.1), rgba(246, 190, 100, 0.2));
    border-radius: 24px;
    color: var(--gold-accent);
    transition: var(--transition);
    border: 1px solid rgba(246, 190, 100, 0.3);
    box-shadow: 0 8px 16px rgba(246, 190, 100, 0.1);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    fill: currentColor;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(246, 190, 100, 0.4);
    border-color: transparent;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

/* ===== Brand Slider Section ===== */
.brand-slider-section {
    padding: 5rem 0;
    /* Increased padding */
    background: var(--white);
    border-bottom: 1px solid rgba(24, 50, 67, 0.05);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    /* Reduced masking heavy blackout to keep logos clear near edges */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.slider-track {
    display: flex;
    /* (260px width + 4rem gap) * 10 items */
    width: calc(324px * 10);
    animation: scroll 20s linear infinite;
    /* Faster animation as requested */
    gap: 4rem;
    align-items: center;
}

.slide {
    width: 260px;
    /* Increased from 200px */
    height: 140px;
    /* Increased from 100px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide img {
    max-width: 100%;
    max-height: 100px;
    /* Increased from 70px */
    object-fit: contain;
    /* Removed heavy filters for better clarity */
    filter: grayscale(0);
    opacity: 1;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.slide:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* -(260px + 64px gap) * 5 items */
        transform: translateX(calc(-324px * 5));
    }
}

/* RTL adjustment for slider */
[dir="rtl"] .slider-track {
    animation: scroll-rtl 20s linear infinite;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(324px * 5));
    }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .brand-slider-section {
        padding: 3rem 0;
    }

    .slider-track {
        gap: 3rem;
        /* (180px + 48px gap) * 10 */
        width: calc(228px * 10);
    }

    .slide {
        width: 180px;
        height: 100px;
    }

    .slide img {
        max-height: 70px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-228px * 5));
        }
    }

    @keyframes scroll-rtl {
        100% {
            transform: translateX(calc(228px * 5));
        }
    }
}

/* ===== Inner Page Styles (Refactored) ===== */
.page-hero {
    min-height: 50vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue-gray) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.page-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.page-logo {
    width: 320px;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
    animation: fadeInUp 1.2s ease-out;
}

.page-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.page-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.25rem;
    color: var(--soft-gold);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.page-hero .hero-title {
    color: var(--white);
    margin-top: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founded-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(246, 190, 100, 0.1), rgba(249, 228, 171, 0.05));
    border-right: 4px solid var(--gold-accent);
    border-radius: 8px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* RTL Support for founded-box border */
[dir="ltr"] .founded-box {
    border-right: none;
    border-left: 4px solid var(--gold-accent);
}

.founded-text {
    margin: 0;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.founded-icon {
    color: var(--gold-accent);
    margin-left: 0.5rem;
}

[dir="ltr"] .founded-icon {
    margin-left: 0;
    margin-right: 0.5rem;
}

.contact-map-wrapper {
    margin-top: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(24, 50, 67, 0.05);
}

.contact-map {
    position: relative;
    cursor: pointer;
    min-height: 400px;
}

.business-hours-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

/* Luxury Contact Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue-gray));
    color: var(--soft-gold);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(24, 50, 67, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--gold-accent);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-accent);
    opacity: 0.2;
    z-index: -1;
    animation: luxuryPulse 3s infinite;
}

@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-blue);
    box-shadow: 0 15px 35px rgba(246, 190, 100, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* RTL Adjustment for WhatsApp Button */
[dir="rtl"] .whatsapp-float {
    left: 30px;
    right: auto;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}