/* ===== ÜMUMİ STİL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

/* ===== HEADER ===== */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-apex {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.logo-finance {
    font-size: 20px;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 3px;
}

.logo-mmc {
    font-size: 12px;
    font-weight: 400;
    color: #888;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 12px 28px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background: #d4af37;
    color: #0a0a0a;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: #d4af37;
    position: relative;
}

.hero-content p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.cta-hero {
    padding: 16px 40px;
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cta-hero:hover {
    background: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-hero-outline {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cta-hero-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* ===== XİDMƏTLƏR ===== */
.services {
    padding: 120px 0;
    background: #0f0f0f;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto 20px;
}

.services-header h3 {
    color: #d4af37;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4af37;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-list-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.service-list-item:hover::before {
    transform: scaleY(1);
}

.service-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8942d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    font-size: 15px;
    color: #0a0a0a;
    flex-shrink: 0;
}

.service-text h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ccc;
    text-transform: uppercase;
}

.service-list-item:hover .service-text h3 {
    color: #fff;
}

/* ===== HAQQIMIZDA ===== */
.about {
    padding: 120px 0;
    background: #0a0a0a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.divider-left {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin-bottom: 25px;
}

.about-text p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features li {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: #d4af37;
    font-size: 14px;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== ƏLAQƏ ===== */
.contact {
    padding: 120px 0;
    background: #0f0f0f;
}

.contact h2 {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 16px;
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item p {
    color: #aaa;
    font-size: 14px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form button {
    padding: 16px;
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form button:hover {
    background: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

#form-status {
    text-align: center;
    min-height: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-section {
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-apex {
    font-size: 22px;
}

.footer-logo .logo-finance {
    font-size: 16px;
}

.footer-logo .logo-mmc {
    font-size: 10px;
}

.footer-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-section p i {
    color: #d4af37;
    margin-right: 10px;
    width: 16px;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}