*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    color:white;

    background:
    radial-gradient(circle at top left,#182848,#040812 60%);
}

/* BG GLOW */

.bg-glow{
    position:fixed;
    width:800px;
    height:800px;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
    opacity:.35;
    animation:moveGlow 12s infinite alternate ease-in-out;
}

.glow1{
    background:#ff9800;
    top:-250px;
    left:-200px;
}

.glow2{
    background:#00bcd4;
    bottom:-250px;
    right:-200px;
    animation-delay:3s;
}

@keyframes moveGlow{
    from{
        transform:translate(0,0) scale(1);
    }
    to{
        transform:translate(100px,-50px) scale(1.2);
    }
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.06);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{
    max-width:1400px;
    margin:auto;
    padding:5px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#ffc107;
}

.lang-switch{
    display:flex;
    gap:10px;
}

.lang-btn{
    padding:10px 16px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;

    background:rgba(255,255,255,.08);
    color:white;

    transition:.3s;
}

.lang-btn:hover{
    background:#ffc107;
    color:#111;
}

.mobile-menu-btn{
    display:none;
    width:50px;
    height:50px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,.1);
    color:white;
    font-size:26px;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:120px 20px 80px;

    background:
    linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.75)),
    url('https://gouncharted.kz/img/banner.jpg')
    center/cover no-repeat;
}

.hero-content{
    width:100%;
    max-width:1400px;

    display:grid;
    grid-template-columns:1.2fr .8fr;

    gap:70px;
    align-items:center;
}

.badge{
    display:inline-block;

    padding:14px 24px;
    border-radius:100px;

    background:rgba(255,193,7,.12);
    border:1px solid rgba(255,193,7,.25);

    color:#ffd54f;

    margin-bottom:30px;
}

.hero h1{
    font-size:90px;
    line-height:1;
    margin-bottom:30px;
    font-weight:900;

    background:
    linear-gradient(135deg,#ffffff,#ffe082);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:21px;
    line-height:1.4;
    color:#ddd;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:20px 40px;
    border-radius:20px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-primary{
    background:
    linear-gradient(135deg,#ff9800,#ffc107);

    color:#111;

    box-shadow:0 15px 35px rgba(255,152,0,.35);
}

.btn-primary:hover{
    transform:translateY(-8px);
}

.btn-secondary{
    border:2px solid rgba(255,255,255,.3);
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#111;
}

.hero-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(25px);
    border-radius:40px;
    padding:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}

.hero-card h3{
    font-size:34px;
    margin-bottom:30px;
}

.feature{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.icon{
    min-width:65px;
    height:65px;

    border-radius:22px;

    background:
    linear-gradient(135deg,#ff9800,#ffc107);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
}

.feature-text h4{
    font-size:20px;
    margin-bottom:8px;
}

.feature-text p{
    color:#ddd;
    line-height:1.2;
}

/* STATS */

.stats{
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat{
    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:35px;

    padding:50px 30px;

    text-align:center;
}

.stat h2{
    font-size:60px;
    color:#ffc107;
    margin-bottom:10px;
}

.stat p{
    color:#ddd;
}

/* GALLERY */

.gallery{
    max-width:1500px;
    margin:auto;

    padding:0 20px 120px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:70px;
    margin-bottom:20px;
}

.section-title p{
    color:#ccc;
    max-width:850px;
    margin:auto;
    line-height:1.4;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.box{
    position:relative;

    overflow:hidden;

    border-radius:40px;

    height:420px;
}

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

.box::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.8),
        transparent 60%
    );
}

.overlay{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;
}

.overlay h3{
    font-size:34px;
}

/* CTA */

.cta{
    max-width:1400px;

    margin:0 auto 80px;
    padding:100px 40px;
    border-radius:50px;
    background:
    linear-gradient(135deg,#ff9800,#ffc107);
    text-align:center;
    color:#111;
}

.cta h2{
    font-size:70px;
    margin-bottom:25px;
}

.cta p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:1.5;
    margin-bottom:40px;
}

/* MAP */

.map-section{
    max-width:1400px;
    margin:0 auto 80px;
    padding:0 20px;
}

.map-container{
    overflow:hidden;
    border-radius:40px;

    border:1px solid rgba(255,255,255,.1);
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
}

/* SOCIALS */

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.social{
    padding:16px 28px;
    border-radius:18px;
    text-decoration:none;
    color:white;
    font-weight:700;
}

.whatsapp{
    background:linear-gradient(135deg,#25D366,#128C7E);
}

.instagram{
    background:linear-gradient(135deg,#833AB4,#E1306C,#FCAF45);
}

.tiktok{
    background:linear-gradient(135deg,#111,#ff0050);
}

/* FOOTER */

.footer{
    padding:20px 20px;
    text-align:center;
    color:#ccc;
}

.video-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.video-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );

    z-index:-1;
}

.video-content{
    text-align:center;
    color:white;
    padding:20px;
}

.video-content h1{
    font-size:70px;
    font-weight:900;
    margin-bottom:20px;
}

.video-content p{
    font-size:22px;
    margin-bottom:35px;
    color:#ddd;
}

.video-btn{
    display:inline-block;
    padding:18px 36px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #ff9800,
        #ffc107
    );
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.video-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1200px){

.hero-content{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:65px;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-links{
    position:absolute;
    top:90px;
    left:20px;
    right:20px;

    background:rgba(10,10,10,.95);

    border-radius:25px;

    padding:25px;

    display:none;
    flex-direction:column;
    gap:20px;
}

.nav-links.active{
    display:flex;
}

.hero h1{
    font-size:46px;
}

.hero p{
    font-size:17px;
}

.buttons{
    flex-direction:column;
}

.btn{
    width:100%;
    text-align:center;
}

.stats{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:42px;
}

.cta h2{
    font-size:42px;
}

.video-content h1{
    font-size:42px;
}

.video-content p{
    font-size:18px;
}
}