/* BOGARTSOLS style.css v1.0 */


*{margin:0;padding:0;box-sizing:border-box;}
:root{--gold:#c8a64b;--black:#0b0b0b;--white:#fff;}
html{scroll-behavior:smooth;}
body{font-family:Arial,Helvetica,sans-serif;background:var(--black);color:#fff;line-height:1.6;}
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    transition:.35s ease;
    z-index:1000;
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:25px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{

    color:#C8A64B;

    font-size:34px;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

    transition:.3s;

}

.header.scrolled .logo{

    font-size:30px;

}

.menu-toggle{
    display:none;
    font-size:34px;
    color:white;
    cursor:pointer;
}

nav a{color:#fff;text-decoration:none;margin-left:40px;transition:.3s;}
nav a:hover{color:var(--gold);}
.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    z-index:1;

    animation:zoomHero 12s ease forwards;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.70),
        rgba(0,0,0,.40),
        rgba(0,0,0,.20)
    );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:3;

    max-width:700px;

    text-align:center;

    padding:20px;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:25px;

}

.hero p{

    font-size:24px;

    color:#f0f0f0;

    margin-bottom:45px;

}
.btn{display:inline-block;background:var(--gold);color:#000;text-decoration:none;padding:18px 42px;border-radius:40px;font-weight:bold;transition:.3s;}
.btn:hover{transform:translateY(-4px);background:#fff;}
section{padding:100px 10%;}
.section-title{text-align:center;margin-bottom:60px;}
.section-title span{color:var(--gold);letter-spacing:3px;font-size:14px;}
.section-title h2{font-size:42px;margin-top:15px;}
.container{max-width:1100px;margin:auto;}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;text-align:center;background:#050505;}
.stat h2{
    color:var(--gold);
    font-size:56px;
    margin-bottom:10px;
}
.stat p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.4;
}
.about{background:#111;}
.about-text{max-width:900px;margin:auto;text-align:center;font-size:20px;color:#d8d8d8;}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px;}
.card{background:#161616;border:1px solid #222;border-radius:18px;padding:35px;transition:.35s;}
.card i{
    font-size:42px;
    color:#C8A64B;
    margin-bottom:20px;
    display:block;
}

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

.card p{
    line-height:1.6;
    color:#666;
}
.card:hover{transform:translateY(-8px);border-color:var(--gold);}
.card h3{color:var(--gold);margin-bottom:18px;}
.card p{color:#d0d0d0;}
.projects-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px;}
.project{height:260px;border-radius:20px;background:#1b1b1b;display:flex;justify-content:center;align-items:center;font-size:28px;transition:.3s;}
.project:hover{background:var(--gold);color:#000;transform:scale(1.03);}
.contact{text-align:center;background:#111;}
footer{background:#000;text-align:center;padding:50px 20px;border-top:1px solid #222;}
footer h3{color:var(--gold);margin-bottom:20px;}
footer p{color:#aaa;margin:8px 0;}
@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}
@media(max-width:900px){header{padding:25px;flex-direction:column;gap:20px;}nav a{margin:0 10px;}.stats{grid-template-columns:repeat(2,1fr);}.section-title h2{font-size:34px;}}
@media(max-width:600px){

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

    .logo{
        font-size:26px;
    }

}
.footer-title{

    color:#C8A64B;

    font-size:36px;

    letter-spacing:4px;

    margin-bottom:25px;

}
/* ==========================================================
   PORTOFOLIU
========================================================== */

.projects{
    padding:120px 0;
    background:#f7f7f7;
}

.projects .container{
    width:min(1200px,90%);
    margin:auto;
}

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

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

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.project-category{
    margin-bottom:100px;
}

.project-category h3{
    font-size:32px;
    margin-bottom:35px;
    color:#222;
    position:relative;
}

.project-category h3::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#0f6ab4;
    margin-top:15px;
    border-radius:30px;
}

.featured-project{
    margin-bottom:30px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    background:white;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.project-card.large{
    height:650px;
}

.project-card:not(.large){
    height:420px;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:.6s;
}

.project-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.80),
    rgba(0,0,0,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    opacity:0;

    transition:.4s;

}

.project-card:hover .overlay{

    opacity:1;

}

.overlay h4{

    color:white;

    font-size:34px;

    margin-bottom:10px;

    letter-spacing:2px;

}

.overlay span{

    color:white;

    font-size:18px;

}

.project-placeholder{

    border:3px dashed #cfcfcf;

    border-radius:20px;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#999;

    font-size:22px;

    background:white;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.project-grid{

grid-template-columns:1fr;

}

.project-card.large{

height:420px;

}

.project-card{

height:320px;

}

.overlay{

padding:25px;

}

.overlay h4{

font-size:26px;

}

.section-title h2{

font-size:34px;

}

.project-category h3{

font-size:26px;

}

}
/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
}

.footer-col a:hover{
    padding-left:0;
}

    .whatsapp-float{

    width:58px;

    height:58px;

    font-size:30px;

    right:18px;

    bottom:18px;

}

.header{
    padding:15px 0;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(8px);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo{
    font-size:26px;
    letter-spacing:3px;
}

.menu-toggle{
    display:block;
}

nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#111;
    padding:20px 0;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

nav.active{
    display:flex;
}

nav a{
    margin:0;
    font-size:20px;
}


nav a{
    margin:0;
    font-size:18px;
}

.btn{
    padding:16px 34px;
    font-size:18px;
}

section{
    padding:70px 25px;
}

.project-card.large{
    height:300px;
}

.project-card{
    height:240px;
}

.overlay h4{
    font-size:24px;
}

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

}
/* ==========================
   HERO MOBILE
========================== */

@media (max-width:768px){

    .ticker{

    padding:14px 0;

}

.ticker-track{

    gap:45px;

    font-size:16px;

}

.hero{
    height:85vh;
}

.hero-image{
    object-fit:cover;
    object-position:center center;
}

.hero-content{
    max-width:90%;
}

.hero h1{
    font-size:48px;
    line-height:1.1;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

}

/* ==========================
   SCROLL ANIMATIONS
========================== */

.animate{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.animate.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================
   TICKER
========================== */

.ticker{

    background:linear-gradient(90deg,#b8860b,#d4af37,#b8860b);

    overflow:hidden;

    white-space:nowrap;

    padding:18px 0;

}

.ticker-track{

    display:inline-flex;

    gap:70px;

    animation:ticker 28s linear infinite;

    font-weight:600;

    color:#111;

    font-size:20px;

}

.ticker-track span{

    display:flex;

    align-items:center;

    gap:10px;

}

.ticker-track i{

    font-size:22px;

    color:#111;

}

@keyframes ticker{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    box-shadow:0 12px 28px rgba(0,0,0,.35);

}

.whatsapp-float i{

    color:white;

}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

.whatsapp-float{

    animation:pulse 2.5s infinite;

}

/* ==========================
   FOOTER PREMIUM
========================== */

footer{
    background:#080808;
    border-top:3px solid #C8A64B;
    padding:70px 10% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-title{
    color:#C8A64B;
    font-size:34px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.footer-col h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-col p{
    color:#bdbdbd;
    margin-bottom:12px;
    line-height:1.8;
}

.footer-col i{
    color:#C8A64B;
    margin-right:10px;
}

.footer-col a{
    display:block;
    color:#bdbdbd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#C8A64B;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid #222;
    margin-top:50px;
    padding-top:25px;
    text-align:center;
    color:#777;
}

/* ==========================
   LIGHTBOX
========================== */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:100000;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:92%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
    transform:scale(.9);
    transition:.3s;
}

.lightbox.active img{
    transform:scale(1);
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:48px;
    cursor:pointer;
    user-select:none;
}

.project-card{
    cursor:pointer;
}

/* ==========================
   ADVANTAGES
========================== */

.advantages{
    background:#0d0d0d;
}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:60px;

}

.adv-card{

    background:#151515;

    border:1px solid #222;

    border-radius:18px;

    padding:35px;

    text-align:center;

    opacity:0;
transform:translateY(40px);
transition:opacity .6s ease, transform .6s ease;

}

.adv-card:hover{

    transform:translateY(-8px);

    border-color:#C8A64B;

    box-shadow:0 15px 35px rgba(200,166,75,.15);

}

.adv-card i{

    font-size:48px;

    color:#C8A64B;

    margin-bottom:20px;

}

.adv-card h3{

    color:white;

    margin-bottom:15px;

    font-size:24px;

}

.adv-card p{

    color:#bdbdbd;

    line-height:1.7;

}


.advantages.show .adv-card{

    opacity:1;

    transform:translateY(0);

}

.advantages.show .adv-card:nth-child(1){
    transition-delay:.1s;
}

.advantages.show .adv-card:nth-child(2){
    transition-delay:.2s;
}

.advantages.show .adv-card:nth-child(3){
    transition-delay:.3s;
}

.advantages.show .adv-card:nth-child(4){
    transition-delay:.4s;
}

.advantages.show .adv-card:nth-child(5){
    transition-delay:.5s;
}

.advantages.show .adv-card:nth-child(6){
    transition-delay:.6s;
}

/* Secțiunea Proiecte */

.projects .section-title h2{
    color:#111;
}

.projects .section-title p{
    color:#666;
}

/* ==========================================================
   HERO PREMIUM v2
========================================================== */

.hero{
    position:relative;
    height:100vh;
    min-height:680px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#050505;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:1;
    animation:zoomHero 14s ease-out forwards;
    filter:saturate(.85);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,.48) 0%, transparent 42%, rgba(0,0,0,.25) 100%);
    z-index:2;
}

.hero-grid{
    position:absolute;
    inset:0;
    z-index:2;
    opacity:.12;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:90px 90px;
    mask-image:linear-gradient(to right, black, transparent 75%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:3;
    width:min(1200px, 90%);
    margin:0 auto;
    padding:100px 0 40px;
    text-align:left;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:25px;
    opacity:0;
    animation:heroReveal .8s .15s ease forwards;
}

.hero-kicker::before{
    content:"";
    width:42px;
    height:1px;
    background:var(--gold);
}

.hero h1{
    max-width:800px;
    font-size:clamp(58px, 7vw, 96px);
    line-height:.98;
    letter-spacing:-3px;
    margin-bottom:28px;
    font-weight:700;
    opacity:0;
    animation:heroReveal .9s .3s ease forwards;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    max-width:650px;
    font-size:clamp(18px, 2vw, 22px);
    line-height:1.65;
    color:#e6e6e6;
    margin-bottom:40px;
    opacity:0;
    animation:heroReveal .9s .45s ease forwards;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:28px;
    opacity:0;
    animation:heroReveal .9s .6s ease forwards;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:17px 28px;
    border-radius:3px;
    font-size:15px;
    letter-spacing:.4px;
}

.hero-btn i{
    transition:transform .3s ease;
}

.hero-btn:hover i{
    transform:translateX(4px);
}

.hero-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.45);
    transition:.3s ease;
}

.hero-link:hover{
    color:var(--gold);
    border-color:var(--gold);
}

.hero-link i{
    font-size:14px;
}

.hero-bottom{
    position:absolute;
    left:5%;
    right:5%;
    bottom:30px;
    z-index:3;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:rgba(255,255,255,.65);
    font-size:11px;
    font-weight:600;
    letter-spacing:3px;
    opacity:0;
    animation:heroReveal .9s .8s ease forwards;
}

.hero-scroll{
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-scroll i{
    color:var(--gold);
    font-size:16px;
    animation:scrollArrow 1.8s ease-in-out infinite;
}

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

@keyframes scrollArrow{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(5px);}
}

@media(max-width:768px){
    .hero{
        height:88vh;
        min-height:620px;
    }

    .hero-image{
        object-position:center;
    }

    .hero-overlay{
        background:
            linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.42)),
            linear-gradient(0deg, rgba(0,0,0,.55), transparent 55%);
    }

    .hero-content{
        width:calc(100% - 50px);
        padding:70px 0 40px;
    }

    .hero-kicker{
        font-size:10px;
        letter-spacing:2.5px;
        margin-bottom:20px;
    }

    .hero-kicker::before{
        width:25px;
    }

    .hero h1{
        font-size:52px;
        letter-spacing:-2px;
        margin-bottom:22px;
    }

    .hero p{
        font-size:17px;
        line-height:1.55;
        margin-bottom:30px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .hero-btn{
        padding:15px 22px;
    }

    .hero-bottom{
        left:25px;
        right:25px;
        bottom:22px;
        font-size:9px;
        letter-spacing:2px;
    }
}



/* ==========================================================
   DESPRE NOI — PREMIUM
========================================================== */

.about-premium{
    background:#f7f7f5;
    color:#111;
    padding:130px 5%;
}

.about-wrap{
    width:min(1200px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.about-visual{
    position:relative;
    min-height:620px;
}

.about-visual::before{
    content:"";
    position:absolute;
    width:110px;
    height:110px;
    left:-28px;
    top:-28px;
    border-left:2px solid var(--gold);
    border-top:2px solid var(--gold);
    z-index:0;
}

.about-visual img{
    position:relative;
    z-index:1;
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
    border-radius:2px;
    filter:saturate(.9);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.about-badge{
    position:absolute;
    z-index:2;
    right:-35px;
    bottom:35px;
    width:170px;
    height:170px;
    background:#111;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border:1px solid rgba(200,166,75,.5);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.about-badge strong{
    color:var(--gold);
    font-size:48px;
    line-height:1;
    margin-bottom:10px;
}

.about-badge span{
    font-size:11px;
    line-height:1.5;
    letter-spacing:2px;
    font-weight:700;
}

.about-content{
    max-width:560px;
}

.about-kicker{
    display:block;
    color:#a38232;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:22px;
}

.about-content h2{
    font-size:clamp(38px,4vw,58px);
    line-height:1.08;
    letter-spacing:-2px;
    margin-bottom:28px;
    color:#111;
}

.about-content h2 span{
    color:#a38232;
}

.about-lead{
    font-size:21px;
    line-height:1.6;
    color:#333;
    margin-bottom:20px;
}

.about-description{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:32px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px 25px;
    margin-bottom:38px;
}

.about-points div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#333;
    font-size:14px;
    font-weight:600;
}

.about-points i{
    color:#a38232;
    font-size:18px;
}

.about-link{
    display:inline-flex;
    align-items:center;
    gap:13px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    padding-bottom:9px;
    border-bottom:1px solid #a38232;
    transition:.3s ease;
}

.about-link i{
    transition:.3s ease;
}

.about-link:hover{
    color:#a38232;
}

.about-link:hover i{
    transform:translateX(5px);
}

@media(max-width:900px){
    .about-premium{
        padding:90px 25px;
    }

    .about-wrap{
        grid-template-columns:1fr;
        gap:65px;
    }

    .about-visual{
        min-height:480px;
    }

    .about-visual img{
        height:480px;
    }

    .about-badge{
        right:20px;
        bottom:-25px;
        width:145px;
        height:145px;
    }

    .about-content{
        max-width:none;
    }
}

@media(max-width:600px){
    .about-premium{
        padding:75px 25px;
    }

    .about-visual{
        min-height:390px;
    }

    .about-visual img{
        height:390px;
    }

    .about-visual::before{
        width:70px;
        height:70px;
        left:-12px;
        top:-12px;
    }

    .about-badge{
        right:10px;
        bottom:-20px;
        width:125px;
        height:125px;
    }

    .about-badge strong{
        font-size:38px;
    }

    .about-badge span{
        font-size:9px;
    }

    .about-content h2{
        font-size:38px;
    }

    .about-lead{
        font-size:18px;
    }

    .about-points{
        grid-template-columns:1fr;
    }
}



/* ==========================================================
   SERVICII — PREMIUM
========================================================== */

.services-premium{
    background:#0b0b0b;
    padding:130px 5%;
}

.services-heading{
    width:min(1200px,100%);
    margin:0 auto 65px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
}

.services-kicker{
    display:block;
    color:var(--gold);
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:20px;
}

.services-heading h2{
    color:#fff;
    font-size:clamp(40px,5vw,64px);
    line-height:1.02;
    letter-spacing:-2px;
}

.services-heading h2 span{
    color:var(--gold);
}

.services-heading > p{
    max-width:420px;
    color:#999;
    font-size:16px;
    line-height:1.8;
    padding-bottom:5px;
}

.services-premium .services-grid{
    width:min(1200px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.service-card{
    background:#151515;
    border:1px solid #252525;
    overflow:hidden;
    transition:transform .45s ease,border-color .45s ease,box-shadow .45s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(200,166,75,.65);
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}

.service-image{
    height:245px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#202020,#0d0d0d);
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-image-fallback{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    color:rgba(200,166,75,.5);
    font-size:65px;
    background:
        radial-gradient(circle at center,rgba(200,166,75,.08),transparent 55%),
        #141414;
}

.service-image img + .service-image-fallback{
    z-index:0;
}

.service-image img{
    position:relative;
    z-index:1;
}

.service-number{
    position:absolute;
    top:18px;
    right:18px;
    z-index:3;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    padding:8px 10px;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(5px);
}

.service-body{
    position:relative;
    padding:28px 26px 30px;
}

.service-icon{
    color:var(--gold);
    font-size:22px;
    margin-bottom:20px;
}

.service-body h3{
    color:#fff;
    font-size:22px;
    line-height:1.2;
    margin-bottom:13px;
}

.service-body p{
    color:#999;
    font-size:14px;
    line-height:1.7;
    min-height:72px;
    margin-bottom:24px;
}


.services-cta{
    width:min(1200px,100%);
    margin:65px auto 0;
    padding-top:28px;
    border-top:1px solid #252525;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.services-cta span{
    color:#777;
    font-size:14px;
}

.services-cta a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s ease;
}

.services-cta a i{
    color:var(--gold);
    transition:.3s ease;
}

.services-cta a:hover{
    color:var(--gold);
}

.services-cta a:hover i{
    transform:translateX(5px);
}

@media(max-width:1050px){
    .services-premium .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-image{
        height:280px;
    }
}

@media(max-width:768px){
    .services-premium{
        padding:90px 25px;
    }

    .services-heading{
        display:block;
        margin-bottom:45px;
    }

    .services-heading h2{
        font-size:42px;
        margin-bottom:25px;
    }

    .services-heading > p{
        max-width:none;
    }

    .services-premium .services-grid{
        grid-template-columns:1fr;
    }

    .service-image{
        height:250px;
    }

    .services-cta{
        display:block;
        margin-top:45px;
    }

    .services-cta span{
        display:block;
        margin-bottom:18px;
    }
}



/* ==========================================================
   PORTOFOLIU — PREMIUM
========================================================== */

.projects-premium{
    background:#f4f4f1;
    color:#111;
    padding:130px 5%;
}

.projects-premium .container{
    width:min(1200px,100%);
    margin:auto;
}

.projects-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:70px;
    margin-bottom:55px;
}

.projects-kicker{
    display:block;
    color:#a38232;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:20px;
}

.projects-heading h2{
    color:#111;
    font-size:clamp(42px,5vw,66px);
    line-height:1.02;
    letter-spacing:-2.5px;
}

.projects-heading h2 span{
    color:#a38232;
}

.projects-heading > p{
    max-width:430px;
    color:#666;
    font-size:16px;
    line-height:1.8;
    padding-bottom:5px;
}

.project-filter{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:35px;
    border-bottom:1px solid #ddd;
    padding-bottom:20px;
}

.filter-btn{
    border:1px solid #d5d5d0;
    background:transparent;
    color:#555;
    padding:11px 18px;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    cursor:pointer;
    transition:.3s ease;
}

.filter-btn:hover,
.filter-btn.active{
    background:#111;
    color:#fff;
    border-color:#111;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    grid-auto-rows:220px;
    gap:18px;
}

.portfolio-item{
    grid-column:span 4;
    grid-row:span 2;
    min-width:0;
}

.portfolio-featured{
    grid-column:span 6;
    grid-row:span 3;
}

.portfolio-tall{
    grid-row:span 3;
}

.portfolio-wide{
    grid-column:span 6;
    grid-row:span 2;
}

.portfolio-image{
    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;
    background:#ddd;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.portfolio-item:hover .portfolio-image img{
    transform:scale(1.07);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.05) 65%);
    opacity:0;
    transition:opacity .4s ease;
}

.portfolio-item:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-overlay > span{
    color:var(--gold);
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:9px;
}

.portfolio-overlay h3{
    color:#fff;
    font-size:27px;
    margin-bottom:17px;
}


.projects-bottom{
    margin-top:45px;
    padding-top:27px;
    border-top:1px solid #d8d8d3;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.projects-bottom div{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.projects-bottom strong{
    font-size:18px;
}

.projects-bottom span{
    color:#777;
    font-size:14px;
}

.projects-bottom a{
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.projects-bottom a i{
    color:#a38232;
    transition:.3s ease;
}

.projects-bottom a:hover i{
    transform:translateX(5px);
}

/* Hidden state used by category filters */
.portfolio-item.filtered-out{
    display:none;
}

@media(max-width:900px){
    .projects-premium{
        padding:90px 25px;
    }

    .projects-heading{
        display:block;
        margin-bottom:45px;
    }

    .projects-heading h2{
        font-size:45px;
        margin-bottom:25px;
    }

    .projects-heading > p{
        max-width:none;
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:230px;
    }

    .portfolio-item,
    .portfolio-featured,
    .portfolio-tall,
    .portfolio-wide{
        grid-column:span 1;
        grid-row:span 2;
    }

    .portfolio-featured,
    .portfolio-wide{
        grid-column:span 2;
    }

    .portfolio-overlay{
        opacity:1;
        padding:22px;
    }

    .portfolio-overlay h3{
        font-size:23px;
    }
}

@media(max-width:600px){
    .projects-premium{
        padding:75px 20px;
    }

    .projects-heading h2{
        font-size:39px;
    }

    .project-filter{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:15px;
        scrollbar-width:none;
    }

    .project-filter::-webkit-scrollbar{
        display:none;
    }

    .filter-btn{
        white-space:nowrap;
    }

    .portfolio-grid{
        display:grid;
        grid-template-columns:1fr;
        grid-auto-rows:300px;
    }

    .portfolio-item,
    .portfolio-featured,
    .portfolio-tall,
    .portfolio-wide{
        grid-column:span 1;
        grid-row:span 1;
    }

    .portfolio-overlay{
        padding:20px;
    }

    .projects-bottom{
        display:block;
    }

    .projects-bottom div{
        margin-bottom:20px;
    }
}


/* PROIECTE — EDITORIAL PORTFOLIO */
.projects-editorial{background:#f5f5f2;color:#111;padding:140px 5% 130px}.projects-editorial .container{width:min(1200px,100%);margin:auto}.projects-intro{max-width:760px;margin:0 auto 120px;text-align:center}.projects-kicker{display:block;color:#a38232;font-size:12px;font-weight:700;letter-spacing:4px;margin-bottom:22px}.projects-intro h2{color:#111;font-size:clamp(48px,6vw,76px);line-height:1;letter-spacing:-3px;margin-bottom:25px}.projects-intro h2 span{color:#a38232}.projects-intro p{max-width:620px;margin:auto;color:#777;font-size:16px;line-height:1.8}.project-showcase{padding-bottom:120px;margin-bottom:120px;border-bottom:1px solid #d9d9d4}.project-showcase:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}.project-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;margin-bottom:32px}.project-heading>div{display:flex;align-items:flex-end;gap:22px}.project-index{color:#a38232;font-size:13px;font-weight:700;letter-spacing:2px;padding-bottom:8px}.project-heading h3{color:#111;font-size:38px;line-height:1;letter-spacing:-1.2px}.project-type{color:#888;font-size:10px;font-weight:700;letter-spacing:2.5px;padding-bottom:5px}.project-gallery{display:grid;gap:16px}.gallery-three{grid-template-columns:1.7fr 1fr;min-height:650px}.gallery-two{grid-template-columns:1fr 1fr;min-height:520px}.gallery-main{min-height:650px}.gallery-side{display:grid;grid-template-rows:1fr 1fr;gap:16px}.project-image{position:relative;overflow:hidden;background:#ddd;cursor:pointer}.project-image img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.2,.7,.2,1)}.project-image:hover img{transform:scale(1.045)}.project-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.18),transparent 35%);opacity:0;transition:.4s ease;pointer-events:none}.project-image:hover::after{opacity:1}@media(max-width:900px){.projects-editorial{padding:100px 25px}.projects-intro{margin-bottom:80px}.project-showcase{padding-bottom:80px;margin-bottom:80px}.gallery-three,.gallery-two{min-height:500px}.gallery-main{min-height:500px}.project-heading h3{font-size:32px}}@media(max-width:600px){.projects-editorial{padding:80px 20px}.projects-intro{margin-bottom:65px}.projects-intro h2{font-size:46px;letter-spacing:-2px}.project-showcase{padding-bottom:65px;margin-bottom:65px}.project-heading{display:block;margin-bottom:22px}.project-heading>div{align-items:center;gap:15px;margin-bottom:12px}.project-index{padding-bottom:0}.project-heading h3{font-size:29px}.project-type{display:block;padding:0;margin-left:29px}.gallery-three,.gallery-two{display:grid;grid-template-columns:1fr;min-height:0;gap:10px}.gallery-main{min-height:360px}.gallery-side{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:220px;gap:10px}.gallery-two .project-image{min-height:280px}.project-image::after{display:none}}


/* ==========================================================
   MOBILE WIDTH FIX — CONTACT + FOOTER
   Keeps the entire page inside the viewport on phones.
========================================================== */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

section,
footer{
    width:100%;
    box-sizing:border-box;
}

#contact{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.footer-container{
    width:min(1200px,100%);
    max-width:100%;
    margin:0 auto;
    box-sizing:border-box;
}

.footer-col{
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
}

.footer-col p,
.footer-col a{
    overflow-wrap:anywhere;
    word-break:normal;
}

.footer-bottom{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

@media (max-width:768px){

    #contact{
        padding-left:25px;
        padding-right:25px;
    }

    #contact .section-title{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }

    #contact .section-title h2{
        max-width:100%;
        font-size:34px;
        line-height:1.25;
    }

    footer{
        width:100%;
        padding:60px 25px 25px;
        box-sizing:border-box;
    }

    .footer-container{
        width:100%;
        max-width:100%;
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-col{
        width:100%;
        max-width:100%;
    }

    .footer-title{
        font-size:30px;
        letter-spacing:3px;
    }

    .footer-col p{
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
        line-height:1.7;
    }

    .footer-col a{
        width:max-content;
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

    .footer-bottom{
        margin-top:40px;
        padding-top:22px;
        line-height:1.6;
        font-size:13px;
    }
}


/* LIGHTBOX CLOSE BUTTON */
.close-lightbox{
    appearance:none;
    -webkit-appearance:none;
    border:0;
    background:transparent;
    position:absolute;
    top:25px;
    right:35px;
    z-index:2;
    color:#fff;
    font:inherit;
    font-size:48px;
    line-height:1;
    padding:8px 12px;
    margin:0;
    cursor:pointer;
    user-select:none;
}

.close-lightbox:hover{
    color:var(--gold);
}

body.lightbox-open{
    overflow:hidden;
}


/* ==========================================================
   HERO — LARGE DESKTOP / MONITOR
   Mobile sizing remains unchanged.
========================================================== */

@media (min-width: 1200px){

    .hero-content{
        max-width:1000px;
        padding:30px;
    }

    .hero h1{
        font-size:clamp(78px,5.2vw,112px);
        line-height:1.02;
        letter-spacing:-3px;
        margin-bottom:30px;
    }

    .hero p{
        font-size:clamp(25px,1.5vw,31px);
        line-height:1.45;
        margin-bottom:48px;
    }

    .hero .btn{
        padding:19px 46px;
        font-size:17px;
    }
}



/* ==========================================================
   HERO — DESKTOP FINAL POLISH
========================================================== */

@media (min-width:1200px){

    .hero-content{
        max-width:1100px;
        padding:30px;
        transform:translateX(-3.5%);
    }

    .hero h1{
        font-size:clamp(88px,5.8vw,124px);
        line-height:1;
        letter-spacing:-4px;
        margin-bottom:32px;
    }

    .hero p{
        max-width:760px;
        font-size:clamp(26px,1.65vw,34px);
        line-height:1.42;
        margin-bottom:50px;
    }

    .hero .btn{
        padding:20px 48px;
        font-size:17px;
    }
}




@media(max-width:768px){

    .header-container{
        padding:15px 25px;
    }

    .header-right{
        gap:15px;
    }

    .language-switch{
        margin-left:0;
        margin-right:2px;
    }

    .lang-btn{
        font-size:11px;
    }

    .lang-btn .flag{
        font-size:15px;
    }

    .menu-toggle{
        border:0;
        background:transparent;
        padding:0;
        line-height:1;
    }

    nav{
        top:70px;
    }
}

/* ==========================================================
   LANGUAGE SWITCH — RO / FR
   CSS flags + automatic contrast on light/dark header states
========================================================== */

.language-switch{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    margin-left:4px;
}

.lang-btn{
    appearance:none;
    -webkit-appearance:none;
    border:0;
    background:transparent;
    color:#fff;
    padding:5px 2px;
    font:inherit;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:color .25s ease, opacity .25s ease;
}

.lang-btn .flag{
    display:inline-block;
    width:20px;
    height:13px;
    flex:0 0 20px;
    border-radius:1px;
    box-shadow:0 0 0 1px rgba(0,0,0,.12);
    overflow:hidden;
    position:relative;
}

.flag-ro{
    background:linear-gradient(
        to right,
        #002B7F 0 33.333%,
        #FCD116 33.333% 66.666%,
        #CE1126 66.666% 100%
    );
}

.flag-fr{
    background:linear-gradient(
        to right,
        #0055A4 0 33.333%,
        #FFFFFF 33.333% 66.666%,
        #EF4135 66.666% 100%
    );
}

.lang-btn:hover,
.lang-btn.active{
    color:var(--gold);
}

.lang-btn.active{
    opacity:1;
}

.lang-btn:not(.active){
    opacity:.78;
}

.lang-divider{
    color:rgba(255,255,255,.35);
    font-size:12px;
    transition:color .25s ease;
}

/* Header becomes light when it sits over a light section/background. */
.site-header.light-header .lang-btn{
    color:#171717;
}

.site-header.light-header .lang-btn:hover,
.site-header.light-header .lang-btn.active{
    color:var(--gold);
}

.site-header.light-header .lang-divider{
    color:rgba(0,0,0,.25);
}

.site-header.light-header .flag{
    box-shadow:0 0 0 1px rgba(0,0,0,.16);
}

/* If the existing header uses a solid background after scrolling,
   keep the language controls readable there too. */
.site-header.scrolled .lang-btn{
    color:#171717;
}

.site-header.scrolled .lang-btn:hover,
.site-header.scrolled .lang-btn.active{
    color:var(--gold);
}

.site-header.scrolled .lang-divider{
    color:rgba(0,0,0,.25);
}

@media(max-width:768px){
    .language-switch{
        margin-left:0;
        margin-right:2px;
    }

    .lang-btn{
        font-size:11px;
    }

    .lang-btn .flag{
        width:18px;
        height:12px;
        flex-basis:18px;
    }
}
