/* =====================================================================
   Smart Lockers — UI PRO v3.3
   Premium hero, sections, footer və mikrointeraksiyalar
   ===================================================================== */

/* ============================================
   1. HERO BÖLMƏSİ — Müasir gradient + dekor
   ============================================ */

.hero,
.section-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at 15% 50%, rgba(27, 111, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 138, 0, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="dark"] .hero,
[data-theme="dark"] .section-hero {
    background:
        radial-gradient(circle at 15% 50%, rgba(27, 111, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 138, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0b1320 0%, #0f1828 100%);
}

/* Hero üzərində kiçik dekor şəkillər */
.hero::before,
.section-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: float-decor 8s ease-in-out infinite;
}

.hero::after,
.section-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 111, 255, 0.12), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: float-decor 10s ease-in-out infinite reverse;
}

@keyframes float-decor {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -20px) scale(1.1); }
}

/* Hero eyebrow badge */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 138, 0, 0.08);
    border: 1px solid rgba(255, 138, 0, 0.18);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #ff8a00);
    margin-bottom: 20px;
}

.eyebrow .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #ff8a00);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 138, 0, 0); }
}

/* Hero başlıq */
.hero h1,
.section-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-strong, #07182f);
}

.hero h1 .accent-text {
    background: linear-gradient(135deg, #ff8a00, #ffa340);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted, #64748b);
    margin-bottom: 32px;
    max-width: 540px;
}

/* Hero buttons */
.hero .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.hero .btn-accent {
    background: linear-gradient(135deg, #ff8a00, #ffa340);
    border: none;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.3);
}

.hero .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 0, 0.45);
    color: #fff;
}

.hero .btn-outline-primary {
    border: 2px solid var(--primary-light, #1b6fff);
    color: var(--primary-light, #1b6fff);
    background: transparent;
}

.hero .btn-outline-primary:hover {
    background: var(--primary-light, #1b6fff);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero stats strip */
.stat-strip {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0 0;
    border-top: 1px solid rgba(7, 24, 47, 0.08);
}

[data-theme="dark"] .stat-strip { border-top-color: rgba(255, 255, 255, 0.08); }

.stat-strip .stat-item {
    display: flex;
    flex-direction: column;
}

.stat-strip .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-strong, #07182f);
    line-height: 1;
}

.stat-strip .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    margin-top: 4px;
}

/* Hero floating card */
.floating-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(7, 24, 47, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    animation: float-card 4s ease-in-out infinite;
}

[data-theme="dark"] .floating-card {
    background: rgba(22, 35, 56, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.floating-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a2a66, #1b6fff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ============================================
   2. PAGE HERO (alt səhifələr üçün)
   ============================================ */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 56px;
    background: linear-gradient(135deg, #0a2a66 0%, #1b6fff 100%);
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 188, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='rgba(255,255,255,0.04)' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 14px;
}

.page-hero .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover { color: #ff8a00; }

.breadcrumb-nav .separator { color: rgba(255, 255, 255, 0.4); }

.breadcrumb-nav .current {
    color: #ff8a00;
    font-weight: 500;
}

/* ============================================
   3. SECTION GENEL DÜZƏLİŞLƏRI
   ============================================ */

.section {
    padding: 80px 0;
    position: relative;
}

.section.bg-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

[data-theme="dark"] .section.bg-soft {
    background: linear-gradient(180deg, #0f1828 0%, #0b1320 100%);
}

.section-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent, #ff8a00);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-strong, #07182f);
    margin-bottom: 16px;
}

.section h2 + .lead,
.section .section-intro .lead {
    font-size: 1.1rem;
    color: var(--text-muted, #64748b);
    max-width: 720px;
    margin-bottom: 48px;
}

/* ============================================
   4. FEATURE KARTLARI (Niyə biz, ssenari, və s.)
   ============================================ */

.feature-card {
    background: var(--bg-elevated, #fff);
    border: 1px solid var(--border, #e5eaf2);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, #1b6fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 24, 47, 0.12);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(27, 111, 255, 0.08), rgba(255, 138, 0, 0.08));
    color: var(--primary-light, #1b6fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ff8a00, #ffa340);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong, #07182f);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .feature-card {
    background: var(--bg-elevated, #162338);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================
   5. PROCESS STEPS (Necə işləyir)
   ============================================ */

.process-step {
    background: var(--bg-elevated, #fff);
    border: 1px solid var(--border, #e5eaf2);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 24, 47, 0.12);
}

.process-step .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0a2a66, #1b6fff);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(10, 42, 102, 0.3);
}

.process-step .step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 163, 64, 0.15));
    color: var(--accent, #ff8a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 16px auto 20px;
}

.process-step .step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong, #07182f);
    margin-bottom: 10px;
}

.process-step .step-text {
    font-size: 0.95rem;
    line-height: 1.55;
}

[data-theme="dark"] .process-step {
    background: var(--bg-elevated, #162338);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================
   6. METRIC KARTLARI (rəqəmlərlə biz)
   ============================================ */

.metric-card {
    background: var(--bg-elevated, #fff);
    border: 1px solid var(--border, #e5eaf2);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(7, 24, 47, 0.1);
}

.metric-card .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0a2a66, #1b6fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-card .metric-label {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .metric-card {
    background: var(--bg-elevated, #162338);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================
   7. CTA BAND
   ============================================ */

.cta-band {
    background: linear-gradient(135deg, #0a2a66 0%, #1b6fff 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 138, 0, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0, 188, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.cta-band > .container { position: relative; z-index: 1; }

.cta-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 32px;
}

.cta-band .btn-light {
    background: #fff;
    color: var(--primary, #0a2a66);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.cta-band .btn-light:hover {
    background: #ff8a00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 0, 0.35);
}

/* ============================================
   8. FOOTER MÜKƏMMƏLLƏŞDIRİLMƏSI
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, #07182f 0%, #0a2a66 100%);
    color: #cbd5e1;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.4), transparent);
}

.site-footer h6 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.site-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent, #ff8a00);
    border-radius: 2px;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: #ff8a00;
    padding-left: 6px;
}

.site-footer .footer-muted {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.site-footer .footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.site-footer .btn-accent {
    background: linear-gradient(135deg, #ff8a00, #ffa340);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(255, 138, 0, 0.3);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.site-footer .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.45);
    color: #fff;
    padding-left: 22px;
}

/* Sosial ikonlar */
.site-footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.site-footer .social-links a:hover {
    background: var(--accent, #ff8a00);
    color: #fff;
    transform: translateY(-3px);
    padding-left: 0;
}

.site-footer .footer-line {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Contact info icons */
.site-footer p i {
    color: var(--accent, #ff8a00);
    width: 20px;
}

/* ============================================
   9. SCROLL PROGRESS
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, #1b6fff);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ============================================
   10. COOKIE BANNER STILI
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 460px;
    background: var(--bg-elevated, #fff);
    border: 1px solid var(--border, #e5eaf2);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 20px 50px rgba(7, 24, 47, 0.18);
    z-index: 997;
    transform: translateY(120%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: var(--text, #122033);
    line-height: 1.5;
}

[data-theme="dark"] .cookie-banner {
    background: var(--bg-elevated, #162338);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================
   11. AOS-style ANIMASIYALAR
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }

[data-aos].aos-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   12. MOBİL ÜÇÜN EXTRA OPTİMİZASİYALAR
   ============================================ */

@media (max-width: 991.98px) {
    .hero, .section-hero { padding: 100px 0 60px; }
    .page-hero { padding: 80px 0 44px; }
    .section { padding: 60px 0; }
    .cta-band { padding: 60px 0; }
}

@media (max-width: 575.98px) {
    .hero, .section-hero {
        padding: 90px 0 48px;
        text-align: center;
    }
    .hero h1, .section-hero h1 { font-size: 1.85rem; line-height: 1.2; }
    .hero .lead { font-size: 1rem; margin: 0 auto 28px; }
    .hero .hero-cta { justify-content: center; gap: 10px; }
    .hero .hero-cta .btn { flex: 1 1 100%; }
    .hero .stat-strip {
        justify-content: center;
        gap: 24px;
    }
    .hero .stat-strip .stat-value { font-size: 1.6rem; }
    .hero .stat-strip .stat-label { font-size: 0.78rem; }

    .page-hero { padding: 70px 0 36px; text-align: center; }
    .page-hero h1 { font-size: 1.7rem; }
    .page-hero .lead { font-size: 0.95rem; margin-left: auto; margin-right: auto; }
    .breadcrumb-nav { justify-content: center; }

    .section-kicker { font-size: 0.78rem; }
    .section h2 { font-size: 1.5rem; }
    .section h2 + .lead { font-size: 0.95rem; margin-bottom: 32px; }

    .feature-card, .process-step {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .feature-card .feature-icon,
    .process-step .step-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .metric-card .metric-value { font-size: 2rem; }

    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 16px 18px;
    }

    .cta-band { padding: 50px 0; }
    .cta-band h2 { font-size: 1.5rem; }
    .cta-band p { font-size: 0.95rem; }

    /* Footer mobile */
    .site-footer { padding: 24px 0 16px; }
    .site-footer h6 { margin-top: 24px; }
    .site-footer .footer-logo { height: 40px; }
    .site-footer .social-links { justify-content: flex-start; }
}
