:root {
    --black: #0a0a0a;
    --dark-gray: #111111;
    --card-bg: #1a1a1a;
    --red: #e63946;
    --yellow: #f4a261;
    --yellow-light: #ffb703;
    --white: #ffffff;
    --gray-text: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== MÜASİR PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    text-align: center;
}

/* Ring loader */
.loader-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.loader-ring-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: ringRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring-circle:nth-child(1) {
    border-top-color: var(--red);
    animation-delay: -0.45s;
}

.loader-ring-circle:nth-child(2) {
    border-right-color: var(--yellow);
    animation-delay: -0.3s;
}

.loader-ring-circle:nth-child(3) {
    border-bottom-color: var(--red);
    animation-delay: -0.15s;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spinner (əvvəlki) */
.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--dark-gray);
    border-top: 4px solid var(--red);
    border-right: 4px solid var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animasiyalı mətn */
.loader-text {
    margin-top: 20px;
}

.loader-text span {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow);
    animation: textBounce 1s ease infinite;
    animation-delay: calc(0.1s * var(--i, 0));
}

.loader-text span:nth-child(1) { --i: 1; }
.loader-text span:nth-child(2) { --i: 2; }
.loader-text span:nth-child(3) { --i: 3; }
.loader-text span:nth-child(4) { --i: 4; }
.loader-text span:nth-child(5) { --i: 5; }
.loader-text span:nth-child(6) { --i: 6; }
.loader-text span:nth-child(7) { --i: 7; }
.loader-text span:nth-child(8) { --i: 8; }
.loader-text span:nth-child(9) { --i: 9; }
.loader-text span:nth-child(10) { --i: 10; }
.loader-text span:nth-child(11) { --i: 11; }

@keyframes textBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.5; }
}

/* Loaderda loqo */
.loader .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.loader .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.loader .logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========== SCROLL BAR ========== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--black);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

/* ========== LOGO STİLLƏRİ ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    width: 190px;
    height: 45px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--yellow-light);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--yellow);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    border: 2px solid var(--yellow);
    color: var(--yellow);
    background: transparent;
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

/* ========== GRID SİSTEMİ ========== */
.grid-3, .services-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.white-bg-section .grid-3,
.white-bg-section .services-grid,
.white-bg-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========== CARDS ========== */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid #2a2a2a;
    color: var(--white);
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: var(--white);
}

.card p {
    color: #d0d0d0;
    line-height: 1.5;
}

.card a {
    color: var(--yellow);
    text-decoration: none;
}

.card a:hover {
    color: var(--red);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(244, 162, 97, 0.2);
}

.card h2 {
    color: var(--yellow) !important;
}

/* ========== AĞ ARXA FONLU BÖLMƏLƏR ========== */
.white-bg-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 60px 0;
}

.white-bg-section h2 {
    color: var(--black);
    text-align: center;
}

.white-bg-section h2 span {
    color: var(--red);
}

.white-bg-section .card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: var(--black);
}

.white-bg-section .card h1,
.white-bg-section .card h2,
.white-bg-section .card h3,
.white-bg-section .card h4 {
    color: var(--black);
}

.white-bg-section .card p {
    color: #444;
}

.white-bg-section .card h2 {
    color: var(--red) !important;
}

/* ========== HERO SLAYDER ========== */
.hero-slider {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0.3, 1), visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.8s ease;
}

.slide.active .slide-bg {
    animation: bgZoomSlow 10s ease infinite;
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide.active .slide-content {
    animation: slideContentIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide.active .slide-content h1 {
    animation: fadeInUp 0.8s ease forwards;
}

.slide.active .slide-content p {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.slide.active .slide-content .btn {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.slide h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
}

.slide h1 span {
    color: var(--yellow);
    animation: textPulse 2s ease-in-out infinite;
}

.slide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 57, 70, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
    background: var(--yellow);
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--red);
}

/* Animasiyalar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bgZoomSlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textPulse {
    0%, 100% { text-shadow: 0 0 0px var(--yellow); }
    50% { text-shadow: 0 0 15px var(--yellow); }
}

/* Slayd üzərində parıltı effekti */
.slide.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 1.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* ========== FORM ========== */
.form-group {
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 14px;
    background: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 15px rgba(244, 162, 97, 0.3);
}

/* ========== FILTER BUTTONS ========== */
.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: var(--dark-gray);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230,57,70,0.4);
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MÜASİR FOOTER ========== */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: left;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: none;
    position: relative;
    overflow: hidden;
}

/* Footer üstündə qırmızı xətt */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
}

/* Footer arxa planında işıq effekti */
footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Footer loqo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-img {
    width: 190px;
    height: 45px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-about {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer başlıqları */
.footer-title {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--red);
}

/* Footer linkləri */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

/* Əlaqə məlumatları */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact li a:hover {
    color: var(--yellow);
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(230, 57, 70, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--red);
    transform: scale(1.1);
}

/* Sosial media */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-5px);
}

/* Newsletter abunə */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px 0 0 40px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--yellow);
}

.newsletter-btn {
    padding: 12px 20px;
    background: var(--red);
    border: none;
    border-radius: 0 40px 40px 0;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Footer alt hissə */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

/* Responsiv */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========== MOBİL MENYU ========== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--yellow);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--yellow);
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: rgba(230, 57, 70, 0.9);
    backdrop-filter: blur(5px);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contact a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-contact a:hover {
    color: var(--yellow);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.top-social a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

/* ========== STATISTIKA BÖLMƏSİ - MÜASİR VERSİYA ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(244, 162, 97, 0.2);
}

/* Arxa plan işıq effekti */
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

/* İkon */
.stat-icon {
    font-size: 54px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Rəqəm */
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.counter {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 600;
    color: var(--yellow);
}

/* Label */
.stat-label {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Progress bar */
.stat-progress {
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

/* Hover zamanı progress bar animasiyası */
.stat-card:hover .stat-progress-bar {
    animation: progressPulse 0.8s ease;
}

@keyframes progressPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Responsiv */
@media (max-width: 992px) {
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .counter {
        font-size: 42px;
    }
    
    .stat-icon {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .counter {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 22px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .counter {
        font-size: 32px;
    }
    
    .stat-suffix {
        font-size: 18px;
    }
    
    .stat-icon {
        font-size: 35px;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    /* Mobil menyu */
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 999;
        border-left: 2px solid var(--red);
    }
    
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 18px; padding: 10px; display: block; }
    
    /* Container padding artırılır - KƏNARDAN UZAQLAŞDIRMA */
    .container { padding: 0 25px; }
    header .container { padding: 0 25px; }
    .top-bar .container { padding: 0 25px; }
    
    /* Slayder məzmunu */
    .slide-content { padding: 0 25px; }
    .hero-slider, .slider-container { min-height: 70vh; height: 70vh; }
    .slide h1 { font-size: 28px; }
    .slide p { font-size: 14px; }
    
    /* Slider düymələri */
    .slider-btn { width: 35px; height: 35px; font-size: 16px; }
    .prev { left: 15px; }
    .next { right: 15px; }
    
    /* Grid: 2 sütun */
    .grid-3, .services-grid, .pricing-grid,
    .white-bg-section .grid-3,
    .white-bg-section .services-grid,
    .white-bg-section .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stats-grid, .popular-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Kartlar */
    .card { padding: 18px; }
    .card h3 { font-size: 16px; }
    .card p { font-size: 14px; }
    
    /* Düymələr */
    .btn { padding: 10px 20px; font-size: 14px; }
    
    /* Ağ fonlu bölmələr */
    .white-bg-section { padding: 40px 0 !important; }
    
    /* Top bar */
    .top-bar .container { flex-direction: column; text-align: center; }
    .top-contact, .top-social { justify-content: center; }
    
    /* Footer */
    footer div[style*="display: grid"] { text-align: center; gap: 20px; }
    footer .logo { justify-content: center; }
}

@media (max-width: 576px) {
    /* Container padding daha da artırılır - KƏNARDAN UZAQLAŞDIRMA */
    .container { padding: 0 20px; }
    header .container { padding: 0 20px; }
    .top-bar .container { padding: 0 20px; }
    .slide-content { padding: 0 20px; }
    
    .slide h1 { font-size: 24px; }
    
    /* Grid: 2 sütun qalır */
    .grid-3, .services-grid, .pricing-grid,
    .white-bg-section .grid-3,
    .white-bg-section .services-grid,
    .white-bg-section .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-grid, .popular-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Logo */
    .logo-text { font-size: 22px; }
    .logo-img { width: 190px; height: 35px; }
    
    /* Kartlar */
    .card { padding: 14px; }
    .card h3 { font-size: 14px; }
    .card p { font-size: 12px; }
    
    /* Düymələr */
    .btn { padding: 8px 16px; font-size: 13px; }
    
    /* Slider */
    .slider-dots { bottom: 15px; gap: 10px; }
    .dot { width: 8px; height: 8px; }
    .dot.active { width: 20px; }
    .slider-btn { width: 30px; height: 30px; font-size: 14px; }
    .prev { left: 10px; }
    .next { right: 10px; }
    
    /* Statistika kartları */
    .stats-grid .card { padding: 12px; }
    .stats-grid .card h2 { font-size: 24px !important; }
    .stats-grid .card div[style*="font-size: 48px"] { font-size: 32px !important; }
    
    /* Populyar xidmət kartları */
    .popular-grid .card { padding: 12px; }
    .popular-grid .card h3 { font-size: 13px; }
    .popular-grid .card p { font-size: 10px; }
    .popular-grid .card div[style*="font-size: 40px"] { font-size: 28px !important; }
    
    /* Layihə kartları */
    .projects-grid .card { padding: 12px; }
    .projects-grid .card h3 { font-size: 13px; }
    .projects-grid .card p { font-size: 10px; }
    .projects-grid .card div[style*="font-size: 48px"] { font-size: 32px !important; }
    
    /* Ağ fonlu bölmə */
    .white-bg-section { padding: 30px 0 !important; }
    .white-bg-section h2 { font-size: 22px; }
}

/* Böyük mobil/planşet üçün */
@media (min-width: 577px) and (max-width: 768px) {
    .container { padding: 0 30px; }
    .slide-content { padding: 0 30px; }
}

/* ========== RƏY KARTLARI ÜÇÜN ƏLAVƏ STİLLƏR ========== */
.white-bg-section .card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.white-bg-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Rəy kartlarında avatar animasiyası */
.white-bg-section .card:hover div[style*="width: 60px"] {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Rəy yazısı üçün hover effekti */
.white-bg-section .card p[style*="font-style: italic"] {
    transition: color 0.3s ease;
}

.white-bg-section .card:hover p[style*="font-style: italic"] {
    color: var(--black);
}

/* Responsiv düzəlişlər */
@media (max-width: 992px) {
    .white-bg-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .white-bg-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .white-bg-section div[style*="display: flex; justify-content: center; gap: 30px"] {
        gap: 20px;
    }
    
    .white-bg-section div[style*="text-align: center; margin-bottom: 50px"] div {
        min-width: 80px;
    }
}
/* ========== CTA BANNER - MÜASİR VERSİYA ========== */
.cta-card {
    background: linear-gradient(135deg, var(--red), #c1121f, var(--yellow), #e85d04);
    background-size: 300% 300%;
    border-radius: 30px;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Arxa plan hərəkətli dairələr */
.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-bg-animation::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

/* CTA məzmunu */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s ease infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-title span {
    color: var(--yellow-light);
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-light);
    border-radius: 3px;
    animation: lineWidth 2s ease infinite;
}

@keyframes lineWidth {
    0%, 100% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Düymələr */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--red);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.cta-btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-btn-icon {
    transform: translateX(5px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

/* Xüsusiyyətlər */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.cta-feature span {
    font-size: 16px;
}

/* Responsiv */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-features {
        gap: 12px;
    }
    
    .cta-feature {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-feature {
        width: 100%;
        justify-content: center;
    }
}
/* ========== POPULYAR XİDMƏTLƏR - MÜASİR VERSİYA ========== */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(244, 162, 97, 0.2);
}

/* Arxa plan işıq effekti */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Badge (Populyar, Premium, Trend, Yeni) */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İkon */
.service-icon {
    font-size: 55px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Başlıq */
.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

/* Təsvir */
.service-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Qiymət */
.service-price {
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-unit {
    font-size: 12px;
    color: #888;
    margin-left: 3px;
}

/* Xüsusiyyətlər */
.service-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 12px;
    color: #888;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Düymə */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--yellow);
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 162, 97, 0.3);
}

.service-btn:hover {
    background: var(--red);
    color: white;
    gap: 12px;
    border-color: var(--red);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.service-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsiv */
@media (max-width: 992px) {
    .popular-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 45px;
    }
    
    .service-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-desc {
        font-size: 12px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .service-features {
        gap: 10px;
        font-size: 10px;
    }
    
    .service-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .popular-grid {
        gap: 12px;
    }
    
    .service-card {
        padding: 18px 12px;
    }
    
    .service-icon {
        font-size: 35px;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-desc {
        font-size: 11px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .service-features {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .service-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
}
/* ========== LAYİHƏ KARTLARI (Şəkillərlə) ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-icon {
    font-size: 48px;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: white;
    color: var(--red);
}

.project-content {
    padding: 20px;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.project-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Responsiv */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .project-image {
        height: 160px;
    }
    .project-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .project-image {
        height: 120px;
    }
    .project-content {
        padding: 12px;
    }
    .project-title {
        font-size: 14px;
    }
    .project-desc {
        font-size: 11px;
    }
}

/* Komanda avatar şəkilləri */
.team-avatar {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 50%;
}