﻿body {



    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 215, 0, 0.15);
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --purple-glow: rgba(75, 0, 130, 0.3);
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    --width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    width: var(--width);
    margin: 0 auto;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Typography Utilities */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold);
}

.text-center {
    text-align: center;
}


/* ANIMATIONS */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255,215,0,0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(255,215,0,0.8), 0 0 60px rgba(255,215,0,0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
}

.header-inner {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo i {
        font-size: 36px;
        color: var(--gold);
    }

nav {
    display: flex;
    gap: 40px;
}

    nav a {
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 0;
        position: relative;
    }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: 0.3s;
        }

        nav a:hover {
            color: var(--gold);
        }

            nav a:hover::after {
                width: 100%;
            }

.contact-btn-header {
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

    .contact-btn-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }

/* PAGE STRUCTURE */
.page {
    display: none;
    padding-top: 100px;
    min-height: 100vh;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

    .page.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.95));
    }

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 1200px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: var(--gold-gradient);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transition: 0.4s;
    border: 2px solid transparent;
}

    .cta-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 60px rgba(212, 175, 55, 0.5);
    }

/* SECTIONS */
.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

    .section-title span {
        display: block;
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

/* GRID SYSTEMS */
.grid-countries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.country-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .country-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
        transform: translateX(-100%);
        transition: 0.5s;
    }

    .country-card:hover::before {
        transform: translateX(100%);
    }

    .country-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

.country-flag {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.country-name {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}


/* FLAGS MARQUEE */
.flags-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    padding: 20px 0;
    margin: 40px 0;
    white-space: nowrap;
    position: relative;
}

.flags-track {
    display: inline-flex;
    animation: scroll 40s linear infinite;
}

    .flags-track img {
        height: 40px;
        width: auto;
        margin: 0 15px;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        opacity: 0.8;
        transition: 0.3s;
    }

        .flags-track img:hover {
            transform: scale(1.2);
            opacity: 1;
            z-index: 2;
        }

/* SERVICES */
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    group: hover;
}

    .service-card:hover {
        transform: translateY(-15px);
        border-color: var(--gold);
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-info {
    padding: 40px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.service-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    overflow: hidden;
}

.contact-info-panel {
    padding: 60px;
    background: rgba(255,215,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.info-content p, .info-content a {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

    .info-content a:hover {
        color: var(--gold);
    }

.contact-form-panel {
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: 0.3s;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--gold);
     
        background: rgba(255,255,255,0.08);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    }

select {
    appearance: none;
    cursor: pointer;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

/* FOOTER */
footer {
    background: #000;
    padding: 60px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}

    .floating-wa:hover {
        transform: scale(1.1) rotate(10deg);
    }


}
