:root {
    --black: #0a0a0a;
    --dark-gray: #111111;
    --card-bg: #1a1a1a;
    --red: #de0400;
    --yellow: #fcce00;
    --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;
}

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

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.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) { animation-delay: -0.45s; }
.loader-ring-circle:nth-child(2) { animation-delay: -0.3s; }
.loader-ring-circle:nth-child(3) { animation-delay: -0.15s; }

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== HEADER ========== */
.top-bar {
    background: var(--red);
    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;
}

.top-contact a:hover {
    color: var(--yellow);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--yellow);
}

/* Dil seçici stilləri */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-option {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.lang-option:hover,
.lang-option.active {
    background: var(--red);
    color: white;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .language-switcher {
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* Naviqasiya */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--red);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 150px;
    height: 45px;
    object-fit: contain;
}

.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;
}

.logo-text span {
    color: var(--yellow-light);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    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,
.nav-links a.active {
    color: var(--yellow);
}

.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;
}

/* ========== 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 ========== */
.grid-3, .services-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stats-grid, .popular-grid, .projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

/* ========== 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: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;
}

/* ========== WHITE BG SECTION ========== */
.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;
}

/* ========== MÜASİR SLAYDER ========== */
.hero-slider {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 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 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.08);
}

/* Slayder məzmunu */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: slideContentFade 0.8s ease forwards;
}

@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.9);
    backdrop-filter: blur(5px);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: slideBadge 0.6s ease forwards;
}

@keyframes slideBadge {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideTitle 0.8s ease 0.2s forwards;
}

@keyframes slideTitle {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title span {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    animation: titleUnderline 1s ease 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes titleUnderline {
    to {
        transform: scaleX(1);
    }
}

.slide-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideText 0.8s ease 0.4s forwards;
}

@keyframes slideText {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider düymələri */
.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideButtons 0.8s ease 0.6s forwards;
}

@keyframes slideButtons {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(230,57,70,0.4);
}

.btn-slide-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 10px 30px rgba(244,162,97,0.5);
}

.btn-slide-primary i {
    transition: transform 0.3s ease;
}

.btn-slide-primary:hover i {
    transform: translateX(5px);
}

.btn-slide-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    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);
}

.btn-slide-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Slider düymələri (naviqasiya) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--yellow);
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--red);
}

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.slider-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    transition: width 0.1s linear;
}

/* Dekorativ şəkillər */
.slide-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    top: 20%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease infinite;
}

.shape-2 {
    bottom: 10%;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,162,97,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float2 10s ease infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, 30px) rotate(-5deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .slide-title {
        font-size: 42px;
    }
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .prev { left: 20px; }
    .next { right: 20px; }
}

@media (max-width: 768px) {
    .hero-slider, .slider-container {
        min-height: 80vh;
        height: 80vh;
    }
    .slide-title {
        font-size: 32px;
    }
    .slide-text {
        font-size: 15px;
    }
    .slide-buttons {
        gap: 15px;
    }
    .btn-slide-primary, .btn-slide-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .prev { left: 15px; }
    .next { right: 15px; }
    .shape-1, .shape-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 24px;
    }
    .slide-text {
        font-size: 13px;
    }
    .slide-badge {
        font-size: 10px;
    }
}

/* ========== STATISTIKA KARTLARI ========== */
.stat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--yellow);
    margin: 15px 0;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 600;
}

.stat-label {
    color: var(--gray-text);
    font-size: 14px;
}

.stat-progress {
    width: 80%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 15px auto 0;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

/* ========== XİDMƏT KARTLARI ========== */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.service-desc {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.service-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--yellow);
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 12px;
    color: #888;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,57,70,0.15);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.service-btn:hover {
    background: var(--red);
    color: white;
    gap: 12px;
}

/* ========== LAYİHƏ KARTLARI ========== */
.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #2a2a2a;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
}

.project-image {
    position: relative;
    height: 220px;
    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 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.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;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.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;
    margin-bottom: 8px;
    color: var(--white);
}

.project-desc {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.5;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--yellow);
}

/* ========== 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, select: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);
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 60px 0 30px;
    margin-top: 60px;
    color: var(--white);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-img {
    width: 150px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-title {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px 0 0 40px;
    color: white;
}

.newsletter-btn {
    padding: 12px 20px;
    background: var(--red);
    border: none;
    border-radius: 0 40px 40px 0;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .grid-3, .services-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-grid, .popular-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .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;
    }
    .slide h1 {
        font-size: 32px;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .prev { left: 10px; }
    .next { right: 10px; }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo a {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .grid-3, .services-grid, .pricing-grid,
    .stats-grid, .popular-grid, .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
		padding:20px;
    }
    .slide h1 {
        font-size: 24px;
    }
    .card {
        padding: 20px;
    }
}
/* ========== HAQQIMIZDA SƏHİFƏSİ STİLLƏRİ ========== */

/* Hero bölməsi */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.about-hero-text h1 span {
    color: var(--yellow);
}

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

.about-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-hero-image {
    flex: 1;
    text-align: center;
}

.about-hero-icon {
    font-size: 120px;
    margin-bottom: 30px;
    animation: float 3s ease infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--yellow);
    display: block;
}

.about-stat .stat-label {
    font-size: 14px;
    color: #b0b0b0;
}

/* Story bölməsi */
.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.story-content {
    flex: 1.5;
}

.story-tag {
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
}

.story-content h2 span {
    color: var(--red);
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-quote {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--red);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.story-quote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 30px;
    color: #333;
}

.quote-author {
    color: var(--red);
    font-weight: 600;
    padding-left: 30px;
}

.story-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.story-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.story-stat-card .stat-icon {
    font-size: 40px;
}

.story-stat-card .stat-info h3 {
    font-size: 28px;
    color: var(--yellow);
}

.story-stat-card .stat-info p {
    color: #b0b0b0;
    font-size: 12px;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--red);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.value-line {
    width: 50px;
    height: 2px;
    background: var(--yellow);
    margin: 20px auto 0;
}

/* Skills bölməsi */
.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.skills-content {
    flex: 1.5;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 10px;
    animation: skillProgress 1.5s ease;
}

@keyframes skillProgress {
    from { width: 0; }
}

.skills-image {
    flex: 1;
    text-align: center;
}

.skills-icon-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.skills-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: bounce 2s ease infinite;
}

.skills-icon:nth-child(2) { animation-delay: 0.3s; }
.skills-icon:nth-child(3) { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.skills-image p {
    color: #666;
    font-weight: 500;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    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%;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--black);
}

.team-role {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-rating {
    margin: 15px 0;
    color: var(--yellow);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--red);
    color: white;
}

/* Process grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.process-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.process-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.process-card h3 {
    color: var(--yellow);
    margin-bottom: 10px;
}

.process-card p {
    color: #b0b0b0;
    font-size: 14px;
}

/* Cert grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.cert-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cert-card div {
    font-size: 48px;
    margin-bottom: 15px;
}

.cert-card h4 {
    margin-bottom: 10px;
    color: var(--black);
}

.cert-card p {
    color: #666;
    font-size: 13px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--red), var(--yellow));
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.cta-banner-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-banner-icon {
    font-size: 80px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--black);
}

.section-header p {
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-text h1 {
        font-size: 32px;
    }
    
    .values-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        text-align: center;
        justify-content: center;
    }
    
    .skills-wrapper {
        flex-direction: column;
    }
    
    .skills-icon-wrapper {
        flex-wrap: wrap;
    }
}
/* ========== CTA BANNER STİLLƏRİ ========== */
.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: 600px;
    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;
    }
}
/* Əgər şəkil yoxdursa və yazı görünürsə, gizlətmək üçün */
.logo-img[src=""],
.logo-img:not([src]),
.logo-img[src="#"] {
    display: none;
}

.footer-logo-img[src=""],
.footer-logo-img:not([src]),
.footer-logo-img[src="#"] {
    display: none;
}

/* ========== MOBİL VERSİYADA 2 SÜTUN ========== */
@media (max-width: 768px) {
    /* Biz rəqəmlərlə - 2 sütun */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    /* Niyə PRO CLASS - 2 sütun */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    /* Xidmətlər - 2 sütun */
    .services-grid,
    .popular-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
		padding:20px;
    }
}

/* ========== LAYİHƏLƏR VƏ RƏYLƏR ÜÇÜN SLAYDER (MOBİL) ========== */
@media (max-width: 768px) {
    /* Layihələr üçün horizontal scroll */
    .projects-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 5px 20px 5px !important;
        margin: 0 -10px !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .projects-grid .project-card {
        min-width: 280px !important;
        max-width: 280px !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
    
    /* Rəylər üçün horizontal scroll */
    .reviews-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 5px 20px 5px !important;
        margin: 0 -10px !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .reviews-slider .review-card {
        min-width: 280px !important;
        max-width: 280px !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
    }
    
    /* Scrollbar stilləri */
    .projects-grid::-webkit-scrollbar,
    .reviews-slider::-webkit-scrollbar {
        height: 5px;
    }
    
    .projects-grid::-webkit-scrollbar-track,
    .reviews-slider::-webkit-scrollbar-track {
        background: #2a2a2a;
        border-radius: 10px;
    }
    
    .projects-grid::-webkit-scrollbar-thumb,
    .reviews-slider::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius: 10px;
    }
}

/* Çox kiçik mobil cihazlar üçün */
@media (max-width: 576px) {
    .projects-grid .project-card {
        min-width: 260px !important;
        max-width: 260px !important;
    }
    
    .reviews-slider .review-card {
        min-width: 260px !important;
        max-width: 260px !important;
    }
}
/* ========== MOBİL ZƏNG VƏ WHATSAPP DÜYMƏLƏRİ ========== */
.mobile-buttons {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 130px;
    padding: 12px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    animation: slideInRight 0.5s ease;
}

.call-btn {
    background: #e63946;
    color: white;
    border: none;
}

.call-btn:hover {
    background: #c1121f;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mobile-btn i {
    font-size: 18px;
}

.mobile-btn span {
    font-size: 13px;
}

/* Animasiya */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Desktop-da gizlət */
@media (min-width: 769px) {
    .mobile-buttons {
        display: none;
    }
}

/* Mobil-də göstər */
@media (max-width: 768px) {
    .mobile-buttons {
        display: flex;
    }
}

/* Kiçik mobil cihazlar üçün düymə ölçüləri */
@media (max-width: 576px) {
    .mobile-btn {
        width: 120px;
        padding: 10px 0;
    }
    .mobile-btn i {
        font-size: 16px;
    }
    .mobile-btn span {
        font-size: 12px;
    }
}