/* RESET & BASE */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
    overflow-x:hidden;
}

/* LANGUAGE SWITCH */
.lang-switch{
    position:absolute;
    top:20px;
    right:20px;
    display:flex;
    gap:10px;
    z-index:1000;
}

.lang-switch button{
    padding:8px 16px;
    border:none;
    border-radius:20px;
    background:#1e293b;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
    font-size:14px;
}

.lang-switch button:hover{
    background:#38bdf8;
    color:#000;
}

/* HERO SECTION */
header{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    position:relative;
    padding:0 20px;
    overflow:hidden;
}

.brand-top{
    position:absolute;
    top:20px;
    left:20px;
    z-index:1000;
}

.brand-top img{
    width:110px;
    height:auto;
    display:block;
}

/* HERO BACKGROUND CAROUSEL */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:0;
}

.hero-bg img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#0f172a;
    opacity:0;
    transition:opacity 1.5s ease;
}

.hero-bg img.active{
    opacity:0.45;
}

/* HERO TEXT */
.hero-content{
    position:relative;
    z-index:1;
    animation:fadeHero 1.2s ease;
    max-width:800px;
}

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

header h1{
    font-size:48px;
    font-weight:700;
}

header p{
    margin-top:15px;
    font-size:18px;
    color:#cbd5e1;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

/* BUTTONS */
button, .btn{
    padding:12px 25px;
    background:#38bdf8;
    border:none;
    border-radius:25px;
    color:#000;
    font-weight:600;
    cursor:pointer;
    margin-top:20px;
    transition:0.3s;
    text-decoration:none;
    display:inline-block;
}

button:hover, .btn:hover{
    background:#0ea5e9;
    transform:scale(1.05);
}

/* SECTIONS */
section{
    padding:80px 10%;
}

h2{
    font-size:32px;
    margin-bottom:20px;
    text-align:center;
}

/* ABOUT */
.about p{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    color:#cbd5e1;
    line-height:1.6;
}

/* SNAPSHOT BOXES */
.snapshot{
    background:#1e293b;
    padding:30px;
    border-radius:15px;
    max-width:700px;
    margin:40px auto;
    line-height:1.7;
}

.snapshot .kv{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    color:#cbd5e1;
}

.email-link{
    color:#38bdf8;
}

/* CATEGORY LIST */
.category-list{
    max-width:600px;
    margin:20px auto;
    color:#cbd5e1;
    line-height:1.8;
}

/* CAROUSEL (CATEGORIES) */
.carousel{
    position:relative;
    max-width:900px;
    margin:40px auto;
    overflow:hidden;
    border-radius:15px;
}

.carousel img{
    width:100%;
    display:none;
}

.carousel img.active{
    display:block;
    animation:fade 1s ease-in-out;
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#1e293b;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
    background:#334155;
}

.card h3{
    margin-bottom:15px;
}

.work-wrap{
    text-align:center;
}

.lead-box{
    max-width:700px;
    margin:30px auto 0;
    background:#1e293b;
    border-radius:15px;
    padding:28px;
    text-align:left;
}

.lead-box h3{
    margin-bottom:8px;
    font-size:24px;
}

.lead-box p{
    color:#cbd5e1;
    margin-bottom:18px;
}

.lead-form{
    display:grid;
    gap:10px;
}

.honeypot{
    position:absolute;
    left:-10000px;
    width:1px;
    height:1px;
    opacity:0;
}

.lead-form label{
    color:#cbd5e1;
    font-weight:600;
    margin-top:8px;
}

.lead-form input,
.lead-form textarea{
    width:100%;
    background:#0f172a;
    border:1px solid #334155;
    color:#fff;
    border-radius:10px;
    padding:11px 12px;
    outline:none;
}

.lead-form input:focus,
.lead-form textarea:focus{
    border-color:#38bdf8;
}

#lead_submit{
    justify-self:start;
}

#lead_error{
    color:#fca5a5;
    min-height:22px;
    margin-top:4px;
}

.thankyou-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.6);
    z-index:1200;
    padding:20px;
}

.thankyou-modal.show{
    display:flex;
}

.thankyou-card{
    width:100%;
    max-width:420px;
    background:#1e293b;
    border-radius:15px;
    padding:24px;
    text-align:center;
}

.thankyou-card h3{
    margin-bottom:10px;
}

.thankyou-card p{
    color:#cbd5e1;
    margin-bottom:16px;
}

/* FOOTER */
footer{
    background:#0f172a;
    padding:40px;
    text-align:center;
    color:#94a3b8;
}

/* RESPONSIVE */
@media(max-width:768px){
    header h1{font-size:32px;}
    .lead-box{padding:22px;}
    .brand-top img{width:80px;}
}

/* HERO ARROWS */
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.4);
    border:none;
    color:white;
    font-size:40px;
    padding:10px 18px;
    cursor:pointer;
    border-radius:8px;
    z-index:20;
    transition:0.3s;
}

.hero-arrow:hover{
    background:rgba(255,255,255,0.4);
    color:#000;
}

.hero-arrow.left{ left:20px; }
.hero-arrow.right{ right:20px; }

/* HERO DOTS */
.hero-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.hero-dot{
    width:12px;
    height:12px;
    background:#ffffff55;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.hero-dot.active{
    background:#38bdf8;
    transform:scale(1.3);
}
