:root{
    --bg:#f4f8fc;
    --white:#ffffff;
    --dark:#18212b;
    --muted:#5f6b78;
    --line:#dce8f5;
    --gold:#0e4a8a;
    --gold-dark:#0a2747;
    --soft:#eaf4ff;
    --footer:#0a1b2e;
    --container:1240px;
    --shadow:0 18px 50px rgba(10,39,71,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    position: relative;
    background: transparent;
    color: var(--dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(244,248,252,.62), rgba(244,248,252,.62)),
        url('uploads/bg/site-bg.jpeg') center / cover no-repeat;
    z-index: -10;
    pointer-events: none;

    /* 🔥 slow pan */
    animation: bgPan 60s ease-in-out infinite alternate;
}
@keyframes bgPan{
    0%{
        background-position: 50% 0%;
    }
    50%{
        background-position: 52% 50%;
    }
    100%{
        background-position: 48% 100%;
    }
}


body::after{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.02);
    z-index: -9;
    pointer-events: none;
}

.stats-section,
.plans-showcase-section,
.about-preview-section,
.sales-section,
.media-slider-section,
.cta-section{
    position: relative;
    z-index: 1;
    background: transparent;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(var(--container), calc(100% - 32px));
    margin:0 auto;
    position:relative;
    z-index:2;
}

.site-shell{
    width:min(1320px, calc(100% - 40px));
    margin:0 auto;
    background:rgba(244,248,252,.96);
    box-shadow:0 0 0 1px rgba(14,74,138,.05);
    min-height:100vh;
}



/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(14,74,138,.08);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:84px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.logo-mark{
    width:46px;
    height:46px;
    border-radius:14px;
    background:var(--gold);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text strong{
    font-size:16px;
}

.logo-text small{
    color:var(--muted);
    font-size:12px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.main-nav a{
    font-size:15px;
    color:var(--dark);
    transition:.25s ease;
}

.main-nav a:hover{
    color:var(--gold-dark);
}

.header-btn{
    padding:12px 20px;
    border-radius:999px;
    background:var(--dark);
    color:#fff;
    font-size:14px;
    font-weight:700;
    transition:.25s ease;
}

.header-btn:hover{
    background:var(--gold-dark);
}

/* COMMON */
.section-label{
    display:inline-block;
    padding:9px 14px;
    border-radius:999px;
    background:#f1e7d6;
    color:var(--gold-dark);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.section-label.light{
    background:rgba(255,255,255,.18);
    color:#fff;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 22px;
    border-radius:999px;
    font-size:15px;
    font-weight:700;
    transition:.25s ease;
    border:none;
    cursor:pointer;
}

.btn-primary{
    background:var(--gold);
    color:#fff;
}

.btn-primary:hover{
    background:var(--gold-dark);
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid var(--line);
    background:#fff;
    color:var(--dark);
}

.btn-outline:hover{
    border-color:var(--gold);
    color:var(--gold-dark);
}

.btn-white{
    background:#fff;
    color:var(--dark);
}

.btn-dark-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.small-btn{
    min-height:44px;
    padding:0 18px;
    font-size:14px;
}

.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}

.section-head.center{
    display:block;
    text-align:center;
}

.section-head h2,
.about-preview-content h2,
.sales-box h2,
.cta-box h2{
    font-size:clamp(28px,4vw,48px);
    line-height:1.12;
    margin-bottom:10px;
}

.section-subtitle{
    max-width:760px;
    margin:0 auto;
    color:var(--muted);
    font-size:17px;
}

.left-text{
    margin:0;
}

/* HERO */
.hero-section{
    padding:34px 0 36px;
}

.hero-slider{
    position:relative;
    height:620px;
    border-radius:28px;
    overflow:hidden;
    background:#ddd;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}


.hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .5s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:2;
}

/* 🔥 ƏSAS HİSSƏ */
.hero-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:0;
}


.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.08) 100%);
    z-index:1;
}

.hero-slide-content{
    position:relative;
    z-index:2;
    max-width:720px;
    height:100%;
    padding:70px 54px 96px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
    backdrop-filter:blur(6px);
}

.hero-slide-content h1{
    font-size:clamp(40px,6vw,78px);
    line-height:1.02;
    margin-bottom:16px;
    color:#fff;
    max-width:640px;
}

.hero-text{
    font-size:18px;
    line-height:1.75;
    color:rgba(255,255,255,.92);
    max-width:620px;
    margin-bottom:24px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-slider-dots{
    position:absolute;
    left:54px;
    bottom:28px;
    display:flex;
    gap:10px;
    z-index:5;
}

.hero-dot{
    width:12px;
    height:12px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
    transition:.25s ease;
}

.hero-dot.active{
    background:#fff;
    transform:scale(1.12);
}

.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:30px;
    cursor:pointer;
    backdrop-filter:blur(6px);
    transition:.25s ease;
}

.hero-arrow:hover{
    background:rgba(255,255,255,.28);
}

.hero-arrow-left{
    left:18px;
}

.hero-arrow-right{
    right:18px;
}

/* SECTIONS */
.stats-section,
.plans-showcase-section,
.about-preview-section,
.sales-section,
.media-slider-section{
    padding:42px 0;
}

/* STATS */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.stat-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:28px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-card h3{
    font-size:40px;
    color:var(--gold-dark);
    margin-bottom:6px;
}

.stat-card p{
    color:var(--muted);
    font-size:15px;
}

/* PLANS */
.plan-type-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:28px;
}

.plan-type-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    cursor:pointer;
    transition:.3s ease;
}

.plan-type-card:hover{
    transform:translateY(-6px);
}

.plan-type-image{
    height:300px;
    background:#f3eee4;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.plan-type-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transform:scale(1.08);
    transition:.3s ease;
}

.plan-type-card:hover .plan-type-image img{
    transform:scale(1.14);
}

.media-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px;
}

.site-logo{
    height:85px;
    width:auto;
    object-fit:contain;
}

.media-page-card{
    min-width:unset !important;
    width:100%;
}

.media-page-card .media-video-thumb{
    height:230px;
}

@media (max-width: 1100px){
    .media-page-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 768px){
    .media-page-grid{
        grid-template-columns:1fr;
    }
}

.plan-type-body{
    padding:18px;
    text-align:center;
}

.plan-type-body h3{
    font-size:22px;
    margin-bottom:8px;
}

.plan-type-body span{
    color:var(--gold-dark);
    font-weight:700;
    font-size:14px;
}

/* ABOUT */
.about-preview-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:34px;
    align-items:center;
}

.about-preview-image{
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.about-placeholder-box{
    min-height:520px;
    background:
        radial-gradient(circle at top left, rgba(202,168,106,.16), transparent 22%),
        linear-gradient(135deg,#ede0cb,#f7f1e6);
    border:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-preview-content > p{
    color:var(--muted);
    margin-bottom:22px;
    font-size:17px;
}

.feature-list{
    display:grid;
    gap:18px;
    margin-bottom:24px;
}

.feature-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px;
    box-shadow:var(--shadow);
}

.feature-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:var(--soft);
    color:var(--gold-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

.feature-item strong{
    display:block;
    margin-bottom:6px;
}

.feature-item p{
    color:var(--muted);
    font-size:15px;
}

.link-arrow{
    color:var(--gold-dark);
    font-weight:700;
}

/* SALES */
.sales-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
}

.sales-box,
.sales-info-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow);
}

.sales-box p,
.sales-info-card p{
    color:var(--muted);
    margin-bottom:18px;
}

.sales-list{
    display:grid;
    gap:12px;
    margin-bottom:22px;
}

.sales-list li{
    position:relative;
    padding-left:22px;
    color:var(--dark);
}

.sales-list li::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
    position:absolute;
    left:0;
    top:9px;
}

.sales-info-top{
    margin-bottom:26px;
}

.sales-info-top span{
    display:inline-block;
    font-size:13px;
    color:var(--gold-dark);
    margin-bottom:10px;
    font-weight:700;
}

.sales-info-top strong{
    display:block;
    font-size:28px;
    line-height:1.2;
}

.route-line-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.route-point{
    padding:10px 14px;
    border-radius:999px;
    background:#f4efe6;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.route-point.active{
    background:var(--gold);
    color:#fff;
}

.route-line{
    height:4px;
    width:100%;
    border-radius:999px;
    background:linear-gradient(to right,#e1d3b4,var(--gold));
}

/* MEDIA */
.media-slider-wrapper{
    position:relative;
    margin-top:28px;
}

.media-slider-viewport{
    overflow:hidden;
}

.media-slider-track{
    display:flex;
    gap:24px;
    transition:transform .4s ease;
}

.media-video-card{
    min-width:calc(33.333% - 16px);
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    flex-shrink:0;
}

.media-video-thumb{
    position:relative;
    height:230px;
    overflow:hidden;
}

.media-video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    inset:50% auto auto 50%;
    transform:translate(-50%,-50%);
    width:68px;
    height:68px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
}

.media-video-body{
    padding:20px;
}

.media-video-body h3{
    font-size:22px;
    margin-bottom:8px;
}

.media-video-body p{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.media-nav{
    position:absolute;
    top:42%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow);
    font-size:30px;
    cursor:pointer;
    z-index:5;
}

.media-nav.prev{
    left:-18px;
}

.media-nav.next{
    right:-18px;
}

/* CTA */
.cta-section{
    padding:30px 0 60px;
}

.cta-box{
    background:linear-gradient(135deg,#1d1b18,#2b251d);
    color:#fff;
    border-radius:30px;
    padding:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.cta-box p{
    color:rgba(255,255,255,.78);
    max-width:760px;
}

.cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* FOOTER */
.site-footer{
    background:var(--footer);
    color:#fff;
    margin-top:20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:30px;
    padding:54px 0 34px;
}

.site-footer h3,
.site-footer h4{
    margin-bottom:14px;
}

.site-footer p,
.site-footer li,
.site-footer a{
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner{
    min-height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

/* MODAL */
.plan-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.plan-modal.active{
    display:block;
}

.plan-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.plan-modal-content{
    position:relative;
    z-index:2;
    width:min(900px, calc(100% - 30px));
    margin:60px auto;
    background:#fff;
    border-radius:24px;
    padding:22px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.22);
}

.plan-modal-content img{
    max-width:100%;
    max-height:75vh;
    object-fit:contain;
    margin:0 auto 18px;
}

.plan-modal-content h3{
    font-size:24px;
}

.plan-modal-placeholder{
    height:420px;
    border-radius:20px;
    background:linear-gradient(135deg,#f5efe4 0%,#e9decd 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold-dark);
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
}

.plan-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* GRID PLACEHOLDER */
.grid-placeholder{
    width:100%;
    height:100%;
    min-height:180px;
    background:
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(90deg, #ffffff 1px, transparent 1px),
        #f3eee4;
    background-size:25% 25%;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
}

.grid-placeholder span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    min-height:56px;
    padding:0 20px;
    border-radius:999px;
    background:rgba(255,255,255,.95);
    color:var(--gold-dark);
    font-weight:700;
}

.plan-placeholder-grid{
    padding:18px;
}

.big-grid{
    min-height:520px;
}

.modal-grid{
    min-height:420px;
}

/* RESPONSIVE */
@media (max-width:1100px){
    .about-preview-grid,
    .sales-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .plan-type-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .media-video-card{
        min-width:calc(50% - 12px);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-slider{
        height:560px;
    }
}

@media (max-width:860px){
    .main-nav{
        display:none;
    }

    .section-head{
        display:block;
    }

    .section-head .btn{
        margin-top:14px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box,
    .footer-bottom-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-slider{
        height:540px;
    }

    .hero-slide-content{
        padding:38px 22px 80px;
    }

    .hero-slide-content h1{
        font-size:34px;
    }

    .hero-text{
        font-size:15px;
        line-height:1.65;
    }

    .hero-slider-dots{
        left:22px;
        bottom:18px;
    }

    .hero-arrow{
        width:44px;
        height:44px;
        font-size:24px;
    }

    .hero-arrow-left{
        left:10px;
    }

    .hero-arrow-right{
        right:10px;
    }
}

@media (max-width:768px){
    .plan-type-grid{
        grid-template-columns:1fr;
    }

    .media-video-card{
        min-width:100%;
    }

    .media-nav.prev{
        left:8px;
    }

    .media-nav.next{
        right:8px;
    }

    .media-video-thumb{
        height:210px;
    }
}


	
	/* FLOATING BUTTONS */
.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.float-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    border:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s ease;
}

/* WhatsApp */
.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.2);
}

.whatsapp-btn svg{
    width:26px;
    height:26px;
}

/* Scroll Top */
.top-btn{
    background:#0e4a8a;
    color:#fff;
    opacity:0;
    visibility:hidden;
}

.top-btn.show{
    opacity:1;
    visibility:visible;
}

.top-btn:hover{
    background:#0a2747;
    transform:translateY(-3px);
}

    .sales-box,
    .sales-info-card,
    .cta-box{
        padding:22px;
    }

    .about-placeholder-box{
        min-height:320px;
    }

    .plan-modal-placeholder{
        height:260px;
        font-size:18px;
    }
}
