/* ========================================
   uslub001.css — sayt.my
   Bütün CSS kodlar bu fayldadır
   ======================================== */

/* === ROOT DƏYİŞKƏNLƏR === */
:root {
    --ana-reng: #1e1b4b;
    --ikinci-reng: #f97316;
    --vurgu: #3b82f6;
    --fon: #f8fafc;
    --p-reng-1: #3b82f6;
    --p-reng-2: #f97316;
    --p-reng-3: #10b981;
    --p-reng-4: #8b5cf6;
    --p-reng-5: #f43f5e;
    --p-reng-6: #eab308;
}

/* === ÜMUMİ === */
* { box-sizing: border-box; }

body {
    background-color: var(--fon);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

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

/* === HEADER / NAVBAR === */
header.navbar {
    background: white;
    padding: 0 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header.navbar .logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--ana-reng);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

header.navbar .logo span { color: var(--ikinci-reng); }

header.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

header.navbar .nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

header.navbar .nav-links a:hover { color: var(--ana-reng); }

header.navbar .nav-links .btn-nav {
    background: var(--ana-reng);
    color: white !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}

header.navbar .nav-links .btn-nav:hover {
    background: var(--ikinci-reng);
}

/* === HERO SEKSİYASI === */
.hero-sahə {
    background: linear-gradient(135deg, rgba(30,27,75,0.7) 0%, rgba(67,56,202,0.6) 100%), url('hero-bg.jpg') center center / cover no-repeat;
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-basliq {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-metn {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.btn-hero {
    background: var(--ikinci-reng);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.hero-statistika {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-stat-item { text-align: center; }

.hero-stat-eded {
    font-size: 2rem;
    font-weight: 900;
}

.hero-stat-etiket {
    font-size: 0.85rem;
    opacity: 0.8;
}

.stat-gradient { background: linear-gradient(135deg,#f97316,#fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-yasil { color: #34d399; }
.stat-mavi { color: #60a5fa; }
.stat-benovseyi { background: linear-gradient(135deg,#a78bfa,#c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* === BAŞLIQ SAHƏSİ (Kampaniyalar) === */
.basliq-sahəsi {
    padding: 50px 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.basliq-sahəsi h2 {
    color: var(--ana-reng);
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 10px;
}

/* === SLIDER === */
.slider-konteyner {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-konteyner::-webkit-scrollbar { display: none; }

/* Kampaniya Kartı */
.k-kart {
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 12px;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}

.k-kart:hover { transform: translateY(-5px); }

.k-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.k-basliq {
    margin: 15px 0 5px;
    font-size: 17px;
    color: #111827;
}

.k-qiymet {
    color: var(--ikinci-reng);
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 12px;
}

.k-link {
    display: block;
    text-align: center;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 8px;
    color: var(--ana-reng);
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.k-link:hover { background: var(--ana-reng); color: white !important; }

/* === PAKETLƏR SEKSİYASI === */
.paket-sekis {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.paket-sekis > h2 {
    text-align: center;
    color: var(--ana-reng);
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 10px;
}

.paket-sekis > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 20px;
}

.kategoriya-basliq {
    color: var(--ana-reng);
    font-weight: 800;
    font-size: 24px;
    margin: 30px 0 15px;
    border-left: 5px solid var(--ikinci-reng);
    padding-left: 15px;
}

.paket-slider {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 5px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.paket-slider::-webkit-scrollbar { display: none; }

.p-kart {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    border-top: 6px solid #ccc;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.p-kart:hover { transform: translateY(-10px); }

.p-ust {
    text-align: center;
    border-bottom: 2px dashed #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.p-basliq {
    font-size: 20px;
    font-weight: 800;
    color: var(--ana-reng);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-qiymet {
    font-size: 40px;
    font-weight: 900;
    color: #111827;
    margin-top: 10px;
}

.p-qiymet span {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.p-limitler {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.p-limitler li {
    padding: 10px 0;
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}

.p-limitler li::before {
    content: "✔";
    margin-right: 12px;
    font-weight: 900;
    font-size: 16px;
    margin-top: 2px;
}

.btn-sec {
    background: var(--fon);
    color: var(--ana-reng) !important;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    transition: 0.3s;
    margin-top: 25px;
    border: 2px solid var(--ana-reng);
}

.btn-sec:hover {
    background: var(--ana-reng);
    color: white !important;
}

/* Paket Rəng Sınıfları */
.p-kart.p-color-1 { border-top-color: var(--p-reng-1); }
.p-kart.p-color-2 { border-top-color: var(--p-reng-2); }
.p-kart.p-color-3 { border-top-color: var(--p-reng-3); }
.p-kart.p-color-4 { border-top-color: var(--p-reng-4); }
.p-kart.p-color-5 { border-top-color: var(--p-reng-5); }
.p-kart.p-color-6 { border-top-color: var(--p-reng-6); }

/* === NÜMUNƏ SAYTLAR === */
.numune-sekis {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.numune-sekis h2 {
    text-align: center;
    color: var(--ana-reng);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 10px;
}

.numune-sekis > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 20px;
}

.numune-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.n-kart {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
}

.n-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.n-img-box {
    width: 100%;
    height: 300px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.n-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Iframe canlı preview */
.n-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.n-img-box {
    background: #fff;
}

@media (max-width: 600px) {
    .n-img-box { height: 300px; }
}


}

.n-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.n-info {
    padding: 15px;
    text-align: center;
}

.n-title {
    font-weight: 700;
    color: var(--ana-reng);
    margin-bottom: 5px;
    text-transform: capitalize;
    min-height: 20px;
}

.n-link {
    font-size: 14px;
    color: var(--vurgu);
    text-decoration: none;
    font-weight: 600;
}

.n-link:hover { text-decoration: underline; }

.placeholder-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    border: 2px dashed #e2e8f0;
    border-radius: 20px;
}

/* === FAQ === */
.faq-sahə {
    max-width: 850px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.faq-sahə h2 {
    text-align: center;
    color: var(--ana-reng);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 35px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: 0.3s;
}

.faq-sual {
    padding: 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--ana-reng);
    font-size: 17px;
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    transition: 0.3s;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-cavab {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active {
    border: 1px solid var(--vurgu);
}

.faq-item.active .faq-cavab {
    padding-bottom: 22px;
    max-height: 300px;
}

/* === FOOTER === */
footer.alt-hisse {
    background: var(--ana-reng);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 25px 0;
    margin-top: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.footer-col a:hover { color: var(--ikinci-reng); }

.footer-alt {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: white !important;
    margin-bottom: 10px;
}

.footer-logo span { color: var(--ikinci-reng); }

/* ========================================
   MOBİL DİZAYN
   ======================================== */

@media (max-width: 768px) {
    /* HEADER */
    header.navbar {
        padding: 0 15px !important;
        height: 60px !important;
    }
    header.navbar .logo {
        font-size: 20px !important;
    }
    header.navbar .nav-links {
        display: none;
    }
    .mobile-toggle { display: block !important; }

    /* HERO */
    .hero-sahə {
        padding: 60px 15px 50px !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }
    .hero-basliq { font-size: 1.7rem; }
    .hero-metn { font-size: 1rem; }
    .btn-hero {
        padding: 12px 28px !important;
        font-size: 1rem !important;
    }
    .hero-statistika { gap: 12px; margin-top: 30px; }
    .hero-stat-item { min-width: 45%; }
    .hero-stat-eded { font-size: 1.6rem; }

    /* KAMPANİYA */
    .k-kart { min-width: 240px; }
    .k-img { height: 120px; }

    /* PAKETLƏR */
    .p-kart {
        min-width: 260px;
        padding: 20px;
        min-height: 440px;
    }
    .p-qiymet { font-size: 32px; }
    .p-basliq { font-size: 18px; }
    .p-limitler li { font-size: 15px; padding: 8px 0; }
    .btn-sec { padding: 12px !important; font-size: 15px !important; }

    /* BÖLMƏ PADDİNGLƏR */
    .basliq-sahəsi { padding: 20px 15px 10px !important; }
    .paket-sekis { padding: 0 15px !important; }
    .numune-sekis { padding: 30px 15px !important; }

    /* BAŞLIQLAR */
    .kategoriya-basliq { font-size: 20px; }
    .basliq-sahəsi h2 { font-size: 20px !important; }
    .paket-sekis > h2 { font-size: 24px !important; }
    .numune-sekis h2 { font-size: 24px !important; }

    /* NÜMUNƏ SAYTLAR */
    .numune-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .n-img-box { height: 300px; }

    /* FAQ */
    .faq-sahə { margin: 40px auto 50px; }
    .faq-sahə h2 { font-size: 22px !important; }
    .faq-sual { font-size: 15px; padding: 18px; }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    footer.alt-hisse { padding: 30px 0 15px 0 !important; }
}

@media (max-width: 480px) {
    /* HERO */
    .hero-sahə {
        padding: 50px 12px 40px !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
    }
    .hero-basliq { font-size: 1.4rem; }
    .hero-metn { font-size: 0.9rem; }
    .btn-hero {
        padding: 11px 22px !important;
        font-size: 0.9rem !important;
    }
    .hero-statistika { gap: 10px; }
    .hero-stat-item { min-width: 44%; }
    .hero-stat-eded { font-size: 1.3rem; }
    .hero-stat-etiket { font-size: 0.75rem; }

    /* KAMPANİYA */
    .k-kart { min-width: 200px; }
    .slider-konteyner { gap: 12px; padding: 10px 0; }

    /* PAKETLƏR */
    .p-kart {
        min-width: 210px;
        padding: 16px;
        min-height: 380px;
    }
    .p-qiymet { font-size: 24px; }
    .p-basliq { font-size: 15px; letter-spacing: 0; }
    .p-limitler li { font-size: 13px; padding: 6px 0; }
    .p-limitler li::before { margin-right: 8px; font-size: 14px; }
    .btn-sec { padding: 10px !important; font-size: 14px !important; }
    .paket-slider { gap: 15px; padding: 5px 0 30px; }

    /* NÜMUNƏ SAYTLAR */
    .numune-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .n-img-box { height: 300px; }

    /* BÖLMƏ PADDİNGLƏR */
    .basliq-sahəsi { padding: 15px 12px 10px !important; }
    .paket-sekis { padding: 0 12px !important; }
    .numune-sekis { padding: 25px 12px !important; }

    /* FAQ */
    .faq-sahə { margin: 30px auto 40px; padding: 0 12px; }
    .faq-sual { font-size: 14px; padding: 15px; }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    footer.alt-hisse { padding: 25px 0 10px 0 !important; }
}

@media (max-width: 360px) {
    .hero-basliq { font-size: 1.2rem; }
    .hero-metn { font-size: 0.85rem; }
    .hero-sahə {
        padding: 40px 10px 30px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .k-kart { min-width: 170px; }
    .p-kart { min-width: 180px; padding: 12px; min-height: 300px; }
    .p-qiymet { font-size: 22px; }
    .btn-hero { font-size: 0.85rem !important; padding: 10px 18px !important; }
    .numune-grid { grid-template-columns: 1fr !important; }
    .basliq-sahəsi { padding: 10px 10px 5px !important; }
    .paket-sekis { padding: 0 10px !important; }
    .numune-sekis { padding: 20px 10px !important; }
}

/* === GİRİŞ & QEYDİYYAT SƏHİFƏLƏRİ === */
.container-ak {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-esas {
    display: inline-block;
    padding: 12px 30px;
    background: #1a237e;
    color: white !important;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: 0.3s;
}

.btn-esas:hover {
    background: #283593;
}

.esas-mezmun {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.xeta-bildirisi {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #f5c6cb;
}

.qeydiyyat-paket-xeberdarliq {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    color: #92400e;
}

.qeydiyyat-paket-xeberdarliq strong {
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}

/* Google Sign-In düyməsi mərkəz */
.g_id_signin {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

/* İkili sütunlu form */
.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row .form-qrup {
    flex: 1;
    min-width: 200px;
}

/* ========== MOBİL GİRİŞ & QEYDİYYAT ========== */
@media (max-width: 480px) {
    .giris-qutusu, .qeydiyyat-qutusu {
        padding: 25px 20px;
        margin: 20px auto;
    }
    .giris-basliq, .qeydiyyat-basliq {
        font-size: 20px;
    }
}

/* === HAQQIMIZDA SƏHİFƏSİ === */
.h-hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 100px 5% 120px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.vizyon-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
    flex-wrap: wrap;
}

.vizyon-metn { flex: 1; min-width: 300px; }
.vizyon-sekil { flex: 1; min-width: 300px; text-align: center; }

.vizyon-sekil img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid white;
}

.ozellik-kart-sistemi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ozellik-kart {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid #eee;
}

.ozellik-kart:hover {
    transform: translateY(-10px);
    border-bottom-color: #ff9800;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.ozellik-icon {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 20px;
    display: block;
}

.addim-konteyner {
    background: #f8f9fa;
    padding: 80px 5%;
    border-radius: 30px;
    margin: 50px 0;
}

.stat-zolaq {
    display: flex;
    justify-content: space-around;
    background: #1a237e;
    color: white;
    padding: 50px 20px;
    border-radius: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.stat-vahid h2 { font-size: 35px; color: #ff9800; margin: 0; }
.stat-vahid p { margin: 5px 0 0; opacity: 0.8; font-size: 14px; }

.guven-notu {
    background: #e8f5e9;
    border-left: 5px solid #2e7d32;
    padding: 20px;
    border-radius: 8px;
    color: #1b5e20;
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    .h-hero { padding: 60px 5% 80px; }
    .stat-zolaq { flex-direction: column; gap: 30px; text-align: center; }
}

/* === KÖMƏKÇİ SİNİFLƏR === */
.d-none { display: none; }
.text-center { text-align: center; }
