/* 
  IRAQ BID - ULTRA PREMIUM DESIGN SYSTEM
  Version: 2.0 (High Contrast, Rich Aesthetics)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&family=Syne:wght@700;800&display=swap');

:root {
    --primary-bg: #030712;
    --secondary-bg: #0B1120;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B8860B;
    --accent-gold-light: #FCEABB;
    --accent-blue: #1E40AF;
    --text-main: #F3F4F6;
    --text-dim: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FCEABB 50%, #B8860B 100%);
    --blue-gradient: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --mesh-gradient: radial-gradient(at 0% 0%, rgba(30, 64, 175, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.1) 0, transparent 50%);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    background-image: var(--mesh-gradient);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.syne-font {
    font-family: 'Syne', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}

/* Typography Enhancements */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Layout Compontents */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Nav System */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(11, 17, 32, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: all 0.4s ease;
}

nav.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(3, 7, 18, 0.9);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

/* Buttons */
.btn-main {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(212, 175, 55, 0.6);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Mockup */
.mockup-wrap {
    position: relative;
    perspective: 1000px;
}

.mockup-image {
    width: 100%;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: 0.5s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.hero-section:hover .mockup-image {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Feature Cards */
.section-title-wrap {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-wrap h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.modern-card {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.modern-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modern-card p {
    color: var(--text-dim);
}

/* Steps Section */
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 30px;
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Contact Section */
.glass-form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Premium */
footer {
    padding: 100px 0 40px;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.footer-links ul li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        width: 95%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .btn-main {
        width: 100%;
    }
}