:root {
    --gold: #D4AF37;
    --light-gold: #F5E6A3;
    --beige: #F5F5DC;
    --dark-beige: #E6D8B5;
    --black: #1a1a1a;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 50%, #faf3e0 100%);
    line-height: 1.8;
    min-height: 100vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 800;
}

.nav-link {
    color: var(--black) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.about-hero {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(245,245,220,0.25) 100%);
    padding: 120px 0 80px;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.section-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 3rem;
    margin-bottom: 3rem;
    border-right: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.stats-section {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #ddd;
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.country-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin: 0 5px;
}

.map-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.iraq-map {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.location-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.location-dot::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.contact-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
}

.back-to-home:hover {
    background: var(--gold);
    color: white;
    gap: 15px;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-title {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}




.hero-bg {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(245,245,220,0.2) 50%, rgba(0,0,0,0.05) 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
}

.btn-gold-ser,
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border: none;
    color: var(--black);
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gold-ser:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* User Menu */
#userMenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#userMenu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#userMenu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

#userMenu a:hover {
    background: #f8f9fa;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        margin-top: 76px;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}