/* Ümumi Ayarlar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6c5ce7; /* Bənövşəyi */
    --secondary-color: #00cec9; /* Neon Mavi/Turkuaz */
    --accent-color: #fd79a8; /* Çəhrayı */
    --bg-dark: #0f1020;
    --bg-light: #1b1e36;
    --text-white: #ffffff;
    --text-gray: #b2bec3;
    --gradient: linear-gradient(135deg, #6c5ce7, #00cec9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: rgba(15, 16, 32, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Düymələr */
.btn {
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
}

.btn-vendor {
    background: var(--accent-color);
    color: white;
}

.btn-vendor:hover {
    background: #e84393;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, rgba(15,16,32,0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    text-align: justify;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #2d3436;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--secondary-color);
    border: 2px dashed var(--secondary-color);
    box-shadow: 0 0 30px rgba(0, 206, 201, 0.1);
}

.image-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

/* Services */
.services {
    padding: 100px 0;
}

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

.card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #1b1e36, #25294a);
}

.card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    color: var(--text-gray);
}

/* Footer */
footer {
    background: #0a0b14;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a {
    margin-left: 20px;
    font-size: 20px;
    color: var(--text-gray);
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--secondary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-light);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
}

.modal h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-white);
}

.modal-desc {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.modal input, .modal select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: var(--bg-dark);
    border: 1px solid #2d3436;
    border-radius: 8px;
    color: white;
}

.modal input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}