/* ============================================
   INDEX.CSS - GREEN HOUSE REAL ESTATE
   All styles for the homepage
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --gold: #d4af37;
    --dark-gold: #b8960c;
    --light-gold: #f1c40f;
    --dark-gray: #2c3e50;
    --gray: #5d6d7e;
    --light: #ecf0f1;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
    margin-top: 0;
    padding-top: 80px;
}

.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 62, 80, 0.95));
    color: white;
    padding: 60px 40px 40px;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.95;
}

.slide-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-gold);
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-dot.active,
.slide-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
    border-color: var(--light-gold);
}

/* ===== SERVICES SECTION ===== */
.services-section { 
    padding: 100px 0; 
    background: white; 
}

.section-title { 
    text-align: center; 
    font-size: 36px; 
    margin-bottom: 50px; 
    color: var(--dark-gray); 
    position: relative; 
}

.section-title::after { 
    content: ''; 
    display: block; 
    width: 100px; 
    height: 3px; 
    background: var(--gold); 
    margin: 15px auto; 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 30px;
    text-align: center;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== COUNTRIES SECTION ===== */
.countries-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #1e2b38, #2c3e50);
    color: white;
    position: relative;
    overflow: hidden;
}

/* أشكال هندسية في الخلفية */
.countries-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.countries-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.countries-section .container {
    position: relative;
    z-index: 2;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.country-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.15);
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.country-card:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 45px rgba(212,175,55,0.2);
}

.country-flag {
    font-size: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1);
}

.country-card h3 {
    color: var(--light-gold);
    margin-bottom: 10px;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

.country-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.country-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.country-stats .stat {
    display: flex;
    flex-direction: column;
}

.country-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.country-stats .stat span:last-child {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* تأثير لامع عند hover */
.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s ease;
    z-index: 4;
    pointer-events: none;
}

.country-card:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .countries-section {
        padding: 70px 0;
    }
    
    .countries-grid {
        gap: 20px;
    }
    
    .country-card {
        padding: 30px 20px;
    }
    
    .country-flag {
        font-size: 60px;
    }
    
    .country-card h3 {
        font-size: 22px;
    }
    
    .country-stats {
        gap: 15px;
    }
    
    .country-stats .stat-number {
        font-size: 22px;
    }
}

/* ===== ABOUT US SECTION - ULTRA PREMIUM ===== */
.about-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf9f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    color: rgba(212,175,55,0.1);
    font-size: 40px;
    animation: floatAround 20s infinite linear;
}

.floating-1 { top: 10%; left: 5%; animation-delay: 0s; }
.floating-2 { top: 70%; right: 8%; animation-delay: -5s; }
.floating-3 { bottom: 15%; left: 15%; animation-delay: -10s; }
.floating-4 { top: 40%; right: 20%; animation-delay: -15s; }

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.about-us-section .container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    color: #d4af37;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* عنوان أكثر جمالاً بخط Playfair Display */
/* عنوان فاخر وجريء */
.about-title {
    font-size: 80px;
    color: #2c3e50;
    font-weight: 700; /* Bold */
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: -1px;
    text-transform: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.03);
}

/* تحسين ظهور الكلمات */
.title-line {
    overflow: hidden;
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUpWord 0.8s ease forwards;
    margin-right: 15px;
}

/* كلمة Beyond */
.word-1 { 
    animation-delay: 0.2s; 
    font-weight: 700;
}

/* كلمة Real */
.word-2 { 
    animation-delay: 0.4s; 
    font-weight: 700;
}

/* كلمة Estate, */
.word-3 { 
    animation-delay: 0.6s; 
    font-weight: 700;
    margin-right: 5px;
}

/* كلمة We */
.word-4 { 
    animation-delay: 0.8s; 
    font-weight: 600;
}

/* كلمة Build */
.word-5 { 
    animation-delay: 1.0s; 
    font-weight: 700;
}

/* كلمة Legacies */
.word-6 { 
    animation-delay: 1.2s; 
    font-weight: 800; /* Extra Bold */
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-right: 5px;
}

@keyframes slideUpWord {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.gold-text {
    color: #d4af37;
    font-weight: 800;
    font-style: normal;
    position: relative;
}

/* إضافة تأثير خط ذهبي تحت Legacies */
.gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    animation: expandLine 1.2s ease forwards 1.8s;
    border-radius: 3px;
}

@keyframes expandLine {
    to { width: 100%; }
}
.title-line {
    overflow: hidden;
    margin: 5px 0;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUpWord 0.8s ease forwards;
    margin-right: 15px;
}

.word-1 { animation-delay: 0.2s; }
.word-2 { animation-delay: 0.4s; }
.word-3 { animation-delay: 0.6s; }
.word-4 { animation-delay: 0.8s; }
.word-5 { animation-delay: 1.0s; }
.word-6 { animation-delay: 1.2s; }

@keyframes slideUpWord {
    to { opacity: 1; transform: translateY(0); }
}

.gold-text {
    color: #d4af37;
    font-weight: 500;
    font-style: italic;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.divider-line-left,
.divider-line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.divider-icon {
    color: #d4af37;
    font-size: 20px;
    animation: spinStar 8s linear infinite;
}

@keyframes spinStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Text */
.about-content-left {
    position: relative;
}

/* اللوغو مكبر جداً مع Pulse */
.logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-pulse {
    width: 380px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: luxuryPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(212,175,55,0.4));
}

@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 25px 35px rgba(212,175,55,0.4));
    }
    30% {
        transform: scale(1.08);
        filter: drop-shadow(0 35px 45px rgba(212,175,55,0.55));
    }
    60% {
        transform: scale(1.05);
        filter: drop-shadow(0 30px 40px rgba(212,175,55,0.5));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 25px 35px rgba(212,175,55,0.4));
    }
}

.logo-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    animation: glowRing 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowRing {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    30% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
    60% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.about-text-box {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.03);
    border: 1px solid rgba(212,175,55,0.1);
}

.about-intro {
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 4px solid #d4af37;
    padding-left: 25px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.highlight {
    color: #d4af37;
    font-weight: 600;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.gradient-text {
    background: linear-gradient(135deg, #2c3e50, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-quote {
    background: rgba(212,175,55,0.03);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 1px dashed rgba(212,175,55,0.3);
}

.quote-icon {
    color: #d4af37;
    font-size: 30px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.about-closing {
    font-size: 16px;
    line-height: 1.8;
    color: #5d6d7e;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.brand-name {
    color: #d4af37;
    font-weight: 600;
}

/* Right Column - Signature Simple & Elegant */
.about-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* حاوية التوقيع */
.signature-simple-container {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* صورة التوقيع مع تأثير Fade In + Zoom In */
.signature-image-simple {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
    opacity: 0;
    transform: scale(0.9);
    animation: simpleReveal 1.5s ease-out forwards;
    filter: drop-shadow(0 8px 15px rgba(212, 175, 55, 0.2));
}

@keyframes simpleReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* اسم CEO */
.signature-text-simple {
    margin-top: 0px;
    margin-bottom: 5px;
}

.ceo-name-simple {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Playfair Display', 'Georgia', serif;
    display: block;
    line-height: 1.3;
    letter-spacing: 1px;
}

.ceo-title-simple {
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 4px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 5px;
}

/* جملة ترحيبية */
.welcome-message-simple {
    font-size: 16px;
    color: #5d6d7e;
    font-style: italic;
    text-align: center;
    max-width: 380px;
    margin: 8px auto 0;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-family: 'Playfair Display', 'Georgia', serif;
    opacity: 0;
    animation: simpleFade 1s ease 0.8s forwards;
}

@keyframes simpleFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form-info {
    background: linear-gradient(135deg, var(--dark-gray), var(--gray));
    color: white;
    padding: 50px 40px;
}

.contact-form-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.contact-form-content {
    padding: 50px 40px;
}

.contact-form-content h3 {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

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

.submit-btn {
    background: var(--gold);
    color: var(--dark-gray);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--dark-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139,117,0,0.3);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--gray));
    color: white;
    text-align: center;
}

.contact-cta h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 36px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--dark-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139,117,0,0.3);
}

.btn-consultation-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50, #1e2b38);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-consultation-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, #1e2b38, #2c3e50);
}

.btn-circle {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== CONSULTATION MODAL ===== */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.consultation-modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50, #1a2632);
    color: white;
    padding: 40px;
    position: relative;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #d4af37;
}

.modal-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(212,175,55,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* Progress Bar */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ecf0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #d4af37;
    color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.3);
}

.step-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #d4af37;
    font-weight: 600;
}

.progress-line {
    height: 2px;
    flex: 1;
    background: #ecf0f1;
    margin: 0 10px;
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.consult-input,
.consult-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.consult-input:focus,
.consult-select:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

/* Calendar & Time Slots */
.date-time-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.calendar-date:hover {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
}

.calendar-date.available {
    background: white;
    border: 1px solid #d4af37;
    color: #2c3e50;
    font-weight: 500;
}

.calendar-date.selected {
    background: #d4af37;
    color: white;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.time-slot:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,0.05);
}

.time-slot.selected {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

/* Robot Response */
.ai-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.ai-pulse {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #2c3e50;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(212,175,55,0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.robot-response {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    min-height: 100px;
}

.robot-message {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
    margin-top: 15px;
}

.typing-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.typing-indicator span {
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.6; }
    40% { transform: scale(1); opacity: 1; }
}

.btn-next, .btn-confirm {
    background: #d4af37;
    color: #2c3e50;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-next:hover, .btn-confirm:hover {
    background: #c4a137;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.btn-prev {
    background: transparent;
    border: 2px solid #ecf0f1;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #7f8c8d;
}

.btn-prev:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .about-title {
        font-size: 60px;
    }
    .logo-container {
        width: 350px;
        height: 350px;
    }
    .about-logo-pulse {
        width: 330px;
    }
    .logo-glow-ring {
        width: 370px;
        height: 370px;
    }
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container { padding: 0 15px; }
    .hero-slider { height: 400px; }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-title {
        font-size: 56px;
    }
    .logo-container {
        width: 320px;
        height: 320px;
    }
    .about-logo-pulse {
        width: 300px;
    }
    .logo-glow-ring {
        width: 340px;
        height: 340px;
    }
    .signature-image-simple {
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section { padding-top: 70px; }
    .hero-slider { height: 50vh; min-height: 400px; }
    .slide-content h1 { font-size: 32px; }
    .slide-content p { font-size: 16px; }
    .slide-price { font-size: 28px; }
    .slide-content { padding: 40px 20px; }
    
    .services-section,
    .countries-section,
    .about-us-section,
    .contact-form-section,
    .contact-cta { padding: 60px 0; }
    
    .section-title { font-size: 32px; }
    .services-grid,
    .countries-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .contact-form-container { grid-template-columns: 1fr; }
    .contact-form-info,
    .contact-form-content { padding: 40px 30px; }
    
    .about-title {
        font-size: 48px;
    }
    .about-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .about-text-box {
        padding: 30px;
    }
    .about-intro {
        font-size: 20px;
    }
    .logo-container {
        width: 280px;
        height: 280px;
    }
    .about-logo-pulse {
        width: 260px;
    }
    .logo-glow-ring {
        width: 300px;
        height: 300px;
    }
    .signature-image-simple {
        max-height: 150px;
    }
    .ceo-name-simple {
        font-size: 24px;
    }
    .ceo-title-simple {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .welcome-message-simple {
        font-size: 15px;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .hero-slider-section { padding-top: 60px; }
    .hero-slider { height: 50vh; min-height: 300px; }
    .slide-content h1 { font-size: 24px; }
    .slide-content p { font-size: 14px; }
    .slide-price { font-size: 24px; }
    .slide-dot { width: 10px; height: 10px; }
    
    .about-title {
        font-size: 40px;
    }
    .about-text-box {
        padding: 25px;
    }
    .about-quote {
        padding: 20px;
    }
    .about-quote p {
        font-size: 16px;
    }
    .logo-container {
        width: 240px;
        height: 240px;
    }
    .about-logo-pulse {
        width: 220px;
    }
    .logo-glow-ring {
        width: 260px;
        height: 260px;
    }
    .signature-image-simple {
        max-height: 120px;
    }
    .ceo-name-simple {
        font-size: 22px;
    }
    .welcome-message-simple {
        font-size: 14px;
        max-width: 280px;
    }
}
/* ===== PROJECTS SECTION - WITH VIDEO BACKGROUND ===== */
.projects-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.projects-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.projects-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(44,62,80,0.7));
    z-index: 1;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header - موحد بدون تضارب */
.projects-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-section .section-eyebrow {
    font-size: 14px;
    letter-spacing: 6px;
    color: #d4af37;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.projects-section .section-title {
    font-size: 48px;
    color: white;  /* العنوان الرئيسي أبيض */
    font-weight: 300;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.projects-section .section-title .gold-text {
    color: #d4af37;  /* Projects تبقى ذهبية */
    font-weight: 600;
}

.projects-section .section-subtitle {
    font-size: 18px;
    color: white;  /* الجملة البيضاء */
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #2c3e50;
}

.project-image img,
.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* هذا هو الحل السحري */
    transition: transform 0.5s ease;
}


.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card:hover
.project-video {
    transform: scale(1.05);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #2c3e50;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.project-location {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 15px;
}

.project-location i {
    margin-right: 5px;
}

.project-features {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #5d6d7e;
    flex-wrap: wrap;
}

.project-features i {
    color: #d4af37;
    margin-right: 5px;
}

.project-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amenity {
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    color: #5d6d7e;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.amenity i {
    color: #d4af37;
    font-size: 10px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: #d4af37;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.project-btn:hover {
    background: transparent;
    color: #d4af37;
    gap: 12px;
}

.projects-footer {
    text-align: center;
    margin-top: 50px;
}

.projects-section .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-section .btn-outline:hover {
    background: #d4af37;
    color: white;
    gap: 15px;
}

/* ===== RESPONSIVE FOR MOBILE ===== */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .projects-section .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .project-image {
        height: 220px;
    }
    .project-video {
        object-fit: cover;
        object-position: center; /* توسيط المحتوى */
    }
}
    
    .projects-section .section-title {
        font-size: 36px;
    }
    
    .projects-section .section-eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .projects-section .section-subtitle {
        font-size: 16px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 20px;
    }
    
    .project-features {
        gap: 15px;
        font-size: 12px;
    }
    
    .project-amenities {
        gap: 8px;
    }
    
    .amenity {
        padding: 3px 10px;
        font-size: 10px;
    }
    
    .project-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 18px;
    }
    
    .project-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .project-amenities {
        justify-content: flex-start;
    }
    .project-image {
        height: 200px;
    }
}
/* ===== PARTNER SECTION ===== */
.partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.partner-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.partner-section .floating-element {
    position: absolute;
    color: rgba(212,175,55,0.1);
    font-size: 40px;
    animation: floatAround 20s infinite linear;
}

.partner-section .floating-1 { top: 10%; left: 5%; animation-delay: 0s; }
.partner-section .floating-2 { top: 70%; right: 8%; animation-delay: -5s; }
.partner-section .floating-3 { bottom: 15%; left: 15%; animation-delay: -10s; }
.partner-section .floating-4 { top: 40%; right: 20%; animation-delay: -15s; }

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.partner-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.partner-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    color: #d4af37;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.partner-title {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.partner-title .gold-text {
    color: #d4af37;
    position: relative;
}

.partner-title .gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.partner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partner-divider .divider-line-left,
.partner-divider .divider-line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.partner-divider .divider-icon {
    color: #d4af37;
    font-size: 20px;
    animation: spinStar 8s linear infinite;
}

@keyframes spinStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partner-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(212,175,55,0.1);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.partner-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    max-width: 200px;
    max-height: 200px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(212,175,55,0.2));
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 30px rgba(212,175,55,0.3));
}

.partner-logo-container .logo-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    animation: glowRing 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowRing {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.partner-info {
    text-align: left;
}

.partner-tagline {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.partner-description {
    margin-bottom: 30px;
}

.partner-description p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
}

.partner-description .gradient-text {
    background: linear-gradient(135deg, #2c3e50, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.partner-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2c3e50;
    background: rgba(212,175,55,0.05);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.1);
}

.partner-features .feature-item i {
    color: #d4af37;
    font-size: 14px;
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(212,175,55,0.1);
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partner-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    
    .partner-info {
        text-align: center;
    }
    
    .partner-features {
        justify-content: center;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 70px 0;
    }
    
    .partner-title {
        font-size: 36px;
    }
    
    .partner-card {
        padding: 30px;
    }
    
    .partner-logo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .partner-logo {
        max-width: 160px;
    }
    
    .partner-tagline {
        font-size: 18px;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .partner-title {
        font-size: 28px;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .partner-tagline {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
/* ===== PROJECTS SECTION - WITH STATIC IMAGES ===== */
.projects-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* صورة خلفية ثابتة */
.projects-fixed-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.projects-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(44,62,80,0.7));
    z-index: 1;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

/* صورة المشروع الثابتة */
.project-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* باقي الأنماط نفسها */
.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #2c3e50;
}

/* إذا كانت الصور لا تظهر، أضف هذا */
.project-static-img[alt] {
    background-color: #f0f0f0;
    min-height: 250px;
}
/* تنسيق رابط لوغو الشريك */
.partner-logo-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.partner-logo-link:hover {
    transform: scale(1.02);
}

.partner-logo-link:hover .partner-logo {
    filter: drop-shadow(0 20px 30px rgba(212,175,55,0.4));
}

.partner-logo-link:hover .logo-glow-ring {
    animation: glowRing 2s ease-in-out infinite;
    opacity: 0.8;
}
/* ===== TEAM SECTION - WITH PHOTOS ===== */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    color: #d4af37;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-title {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-title .gold-text {
    color: #d4af37;
    position: relative;
}

.team-title .gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.team-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.team-divider .divider-line-left,
.team-divider .divider-line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.team-divider .divider-icon {
    color: #d4af37;
    font-size: 20px;
    animation: spinStar 8s linear infinite;
}

@keyframes spinStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.team-description {
    font-size: 18px;
    color: #5d6d7e;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212,175,55,0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}

/* Image Circle */
.team-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.team-image-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
    transition: all 0.4s ease;
    background: #f0f0f0;
}

.team-card:hover .team-image-circle {
    border-color: #fff;
    box-shadow: 0 15px 35px rgba(212,175,55,0.3);
    transform: scale(1.05);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback for missing images */
.team-photo.error {
    object-fit: contain;
    background: linear-gradient(135deg, #2c3e50, #1e2b38);
    padding: 20px;
}

/* Info */
.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-position {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.team-position::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(212,175,55,0.3);
}

.team-bio {
    margin-bottom: 20px;
    flex: 1;
}

.team-bio p {
    font-size: 14px;
    color: #5d6d7e;
    line-height: 1.7;
    margin: 0;
}

/* Contact Icons */
.team-contact {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.team-phone {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-phone:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* Footer Button */
.team-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-team {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-team:hover {
    background: #d4af37;
    color: white;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-title {
        font-size: 42px;
    }
    
    .team-image-circle {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 70px 0;
    }
    
    .team-title {
        font-size: 36px;
    }
    
    .team-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .team-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }
    
    .team-card {
        padding: 25px 15px 20px;
    }
    
    .team-image-circle {
        width: 120px;
        height: 120px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-position {
        font-size: 13px;
    }
    
    .team-bio p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-title {
        font-size: 28px;
    }
    
    .team-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .team-description {
        font-size: 15px;
    }
    
    .btn-team {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .team-image-circle {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
    
    .team-contact {
        gap: 8px;
    }
    
    .team-phone {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* تحسينات إضافية */
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.team-card:hover::before {
    left: 100%;
}

/* تأثير عند تحميل الصور */
.team-photo {
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}
/* أزرار الاتصال الدائرية */
.team-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 10px;
}

.team-contact-btn {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-contact-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* رابط View Full Profile */
.team-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.3);
    width: 100%;
    background: rgba(212,175,55,0.02);
}

.team-profile-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.team-profile-link:hover {
    background: #d4af37;
    color: white;
    gap: 12px;
    border-color: #d4af37;
}

.team-profile-link:hover i {
    transform: translateX(5px);
    color: white;
}