﻿
:root {
    --green: #0B5D3B;
    --green-dark: #083E27;
    --green-light: #1A7A52;
    --gold: #C9A24D;
    --gold-light: #E6C37D;
    --gold-dark: #B08C3A;
    --beige: #F8F4E9;
    --cream: #FFFDF5;
    --shadow: 0 25px 50px rgba(11, 93, 59, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    padding-top: 90px;
    scroll-behavior: smooth;
    background-color: var(--cream);
    overflow-x: hidden;
}

/* خطوط فاخرة */
.display-1 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-weight: 800;
}

/* تحسينات Navbar */
.luxury-nav {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: var(--transition);
}

    .luxury-nav.scrolled {
        padding: 10px 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

.brand-name {
    font-size: 32px;
    font-weight: 900;
    color: #fff !important;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

    .brand-name::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 60%;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        transition: var(--transition);
    }

    .brand-name:hover::after {
        width: 100%;
    }

.brand-icon {
    color: var(--gold);
    margin-left: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: rgba(201, 162, 77, 0.1);
        transition: width 0.4s ease;
        z-index: -1;
    }

    .nav-link:hover::before {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--gold) !important;
        transform: translateY(-2px);
    }

    .nav-link i {
        color: var(--gold);
        margin-left: 8px;
        transition: var(--transition);
    }

    .nav-link:hover i {
        transform: rotate(15deg);
    }

/* Hero Section محسنة */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
        background-size: cover;
    }

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

    .hero-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%);
        width: 150px;
        height: 4px;
        background: var(--gold);
        border-radius: 2px;
    }

.hero-sub {
    font-size: 1.4rem;
    max-width: 850px;
    margin: 40px auto;
    opacity: 0.9;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.3);
}

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        opacity: 0;
        transition: var(--transition);
    }

    .btn-luxury:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(201, 162, 77, 0.4);
    }

        .btn-luxury:hover::before {
            opacity: 1;
        }

    .btn-luxury span {
        position: relative;
        z-index: 2;
    }

    .btn-luxury i {
        margin-left: 10px;
        position: relative;
        z-index: 2;
    }

/* Section Titles محسنة */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--green), var(--gold));
        border-radius: 2px;
    }

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: var(--beige);
    padding: 30px;
    border-radius: 15px;
    border-right: 5px solid var(--gold);
}

/* Cards محسنة */
.lux-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.1);
}

    .lux-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--green), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .lux-card:hover::before {
        transform: scaleX(1);
    }

    .lux-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 35px 60px rgba(11, 93, 59, 0.2);
    }

.icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: var(--transition);
}

    .icon-wrapper::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.1;
    }

.icon-green, .icon-blue, .icon-gold, .icon-red {
    font-size: 40px;
    position: relative;
}

.icon-green {
    color: var(--green);
}

.icon-gold {
    color: var(--gold);
}

.icon-blue {
    color: #1fa3db;
}

.icon-red {
    color: #d9534f;
}

.lux-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--green-dark);
}

.lux-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* شريط الإحصائيات */
.stats-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* معرض الصور */
.gallery-section {
    padding: 80px 0;
    background: var(--beige);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 280px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 93, 59, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact محسن */
.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(201, 162, 77, 0.1);
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--cream);
}

    .form-control:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.2);
    }

.info-card, .location-card {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.2);
}

    .info-card::before, .location-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        animation: float 20s linear infinite;
        opacity: 0.3;
    }

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(20px, 20px) rotate(360deg);
    }
}

/* Map محسن */
.map-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

    .map-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(11, 93, 59, 0.1), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
        border: 0;
        filter: grayscale(20%) contrast(110%);
    }

/* Footer محسن */
.lux-footer {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 70px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .lux-footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,30 Q50,60 0,30 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
    display: inline-block;
}

.footer-contact {
    margin-bottom: 40px;
}

    .footer-contact p {
        display: inline-flex;
        align-items: center;
        margin: 0 25px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 15px 25px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-contact i {
        color: var(--gold);
        margin-left: 10px;
    }

.footer-social {
    margin-bottom: 40px;
}

    .footer-social a {
        width: 50px;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        font-size: 1.3rem;
        color: white;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transform: scale(0);
            transition: var(--transition);
            border-radius: 50%;
        }

        .footer-social a:hover::before {
            transform: scale(1);
        }

        .footer-social a i {
            position: relative;
            z-index: 2;
        }

        .footer-social a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

.footer-copy {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-dev {
    font-size: 1rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

/* Swiper Slider */
.swiper {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.swiper-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(11, 93, 59, 0.9), transparent);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.3);
    border: 2px solid white;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 15px 40px rgba(201, 162, 77, 0.4);
    }

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-sub {
        font-size: 1.2rem;
        padding: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-card, .info-card {
        padding: 30px;
    }

    .footer-contact p {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin: 20px auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-luxury {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .footer-contact p {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lux-card, .contact-card, .info-card {
        padding: 25px 20px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


