/* =========================================================
   VIRAKSH INTERIORS — CLEAN MASTER STYLESHEET
   Use this as the ONLY css/style.css
   Compatible with the supplied HTML + script.js
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@300;400;500;600&display=swap');

:root{
    --plum:#221826;
    --plum-deep:#17111b;
    --gold:#c8a04d;
    --gold-light:#dfc47e;
    --cream:#f7f4ef;
    --offwhite:#faf8f5;
    --white:#fff;
    --text:#2e2434;
    --gray:#666;
    --light-gray:#ddd;
    --border:rgba(34,24,38,.12);
    --container:1200px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:'Jost',Arial,sans-serif;
    font-weight:400;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
}

ul,
ol{
    margin:0;
    padding:0;
}

h1,
h2,
h3,
h4{
    font-family:'Marcellus',Georgia,serif;
    font-weight:400;
    line-height:1.2;
    margin:0;
}

p{
    margin:0 0 18px;
}

.container{
    width:min(var(--container),90%);
    margin:0 auto;
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-height:90px;
    z-index:99999;
    background:rgba(34,24,38,.96);
    border-bottom:1px solid rgba(200,160,77,.20);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    transition:background .3s ease,box-shadow .3s ease;
}

.header.scrolled{
    background:rgba(34,24,38,.99);
    box-shadow:0 8px 28px rgba(0,0,0,.20);
}

.header .container{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:auto;
    height:58px;
    object-fit:contain;
}

.navbar{
    margin-left:auto;
}

.navbar > ul{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:34px;
    list-style:none;
}

.navbar > ul > li{
    position:relative;
    list-style:none;
}

.navbar > ul > li > a{
    display:flex;
    align-items:center;
    min-height:90px;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1.8px;
    font-size:12px;
    line-height:1;
    transition:color .25s ease;
}

.navbar > ul > li > a:hover,
.navbar > ul > li > a:focus{
    color:var(--gold);
}

.contact-btn{
    min-height:auto !important;
    display:inline-flex !important;
    padding:12px 20px !important;
    border:1px solid var(--gold);
    color:#fff !important;
}

.contact-btn:hover{
    background:var(--gold);
    color:var(--plum) !important;
}


/* Desktop dropdown */

.dropdown{
    position:relative;
}

.submenu{
    position:absolute;
    top:calc(100% - 1px);
    left:50%;
    width:280px;
    margin:0;
    padding:10px 0;
    list-style:none;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:7px;
    box-shadow:0 18px 40px rgba(0,0,0,.20);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translate(-50%,8px);
    transition:opacity .22s ease,visibility .22s ease,transform .22s ease;
    z-index:100001;
}

.submenu li{
    display:block;
    width:100%;
    margin:0;
    padding:0;
    list-style:none;
}

.submenu li a{
    display:block;
    width:100%;
    padding:12px 22px;
    color:#222 !important;
    background:#fff;
    text-transform:none;
    letter-spacing:0;
    font-size:14px;
    line-height:1.4;
    transition:background .2s ease,color .2s ease,padding-left .2s ease;
}

.submenu li a:hover,
.submenu li a:focus{
    color:var(--gold) !important;
    background:#faf8f5;
    padding-left:27px;
}

.dropdown:hover > .submenu,
.dropdown:focus-within > .submenu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
}


/* Mobile button */

.mobile-toggle{
    display:none;
    border:0;
    padding:8px;
    background:transparent;
    color:#fff;
    font-size:28px;
    line-height:1;
    z-index:100002;
}


/* =========================================================
   COMMON
========================================================= */

section{
    position:relative;
}

.section-subtitle,
.subtitle{
    display:inline-block;
    color:var(--gold);
    font-size:11px;
    font-weight:500;
    letter-spacing:3px;
    line-height:1.4;
    text-transform:uppercase;
}

.gold-line,
.gold-rule{
    display:block;
    width:55px;
    height:2px;
    background:var(--gold);
}

.read-more{
    display:inline-block;
    margin-top:12px;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:1.8px;
    font-size:11px;
    font-weight:500;
}

.btn-gold,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 25px;
    border:1px solid var(--gold);
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:11px;
    font-weight:500;
    transition:all .3s ease;
}

.btn-gold{
    background:var(--gold);
    color:var(--plum);
}

.btn-gold:hover{
    background:transparent;
    color:var(--gold);
}

.btn-outline{
    background:transparent;
    color:#fff;
}

.btn-outline:hover{
    background:var(--gold);
    color:var(--plum);
}


/* =========================================================
   HOMEPAGE HERO
========================================================= */

.hero{
    position:relative;
    min-height:92vh;
    height:760px;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding-top:90px;
    background:var(--plum);
    color:#fff;
}

.hero > img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero .overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        90deg,
        rgba(25,18,30,.88) 0%,
        rgba(25,18,30,.58) 42%,
        rgba(25,18,30,.22) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
}

.hero-content .subtitle{
    color:var(--gold-light);
}

.hero h1{
    margin:18px 0 24px;
    color:#fff;
    font-size:clamp(44px,6vw,72px);
    line-height:1.08;
}

.hero p{
    max-width:760px;
    color:#eee;
    font-size:17px;
    line-height:1.75;
}

.hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}


/* =========================================================
   STATS
========================================================= */

.stats{
    background:var(--cream);
    border-bottom:1px solid var(--border);
}

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

.stat-box{
    padding:38px 25px;
    text-align:center;
    border-right:1px solid var(--border);
}

.stat-box:last-child{
    border-right:0;
}

.stat-box h2{
    color:var(--gold);
    font-size:40px;
}

.stat-box p{
    margin:8px 0 0;
    color:#666;
    font-size:13px;
}


/* =========================================================
   ABOUT / USP
========================================================= */

.about{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.about-content h2{
    max-width:650px;
    margin:15px 0 22px;
    font-size:clamp(34px,4vw,50px);
}

.about-content .gold-line{
    margin:0 0 25px;
}

.about-content p{
    max-width:650px;
    color:var(--gray);
    line-height:1.8;
}

.usp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    background:#ddd;
}

.usp-card{
    padding:30px;
    background:#faf8f5;
}

.usp-card h3{
    font-size:21px;
}

.usp-card p{
    margin:12px 0 0;
    color:var(--gray);
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   GENERIC SERVICES SECTION
========================================================= */

.services{
    padding:100px 0;
}

.services > .container > h2,
.process > .container > h2{
    margin-top:12px;
    font-size:clamp(34px,4vw,50px);
}


/* =========================================================
   PROCESS
========================================================= */

.process{
    padding:100px 0;
    background:#faf8f5;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:1px;
    margin-top:50px;
    background:#ddd;
}

.process-card{
    min-height:220px;
    padding:30px;
    background:#fff;
}

.process-card span{
    color:var(--gold);
    font-size:34px;
    font-family:'Marcellus',Georgia,serif;
}

.process-card h3{
    margin:18px 0 10px;
    font-size:20px;
}

.process-card p{
    color:#666;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta{
    padding:85px 0;
    background:#f2efeb;
}

.cta-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.cta h2{
    max-width:700px;
    margin-bottom:14px;
    font-size:clamp(32px,4vw,44px);
}

.cta p{
    max-width:650px;
    margin:0;
    color:#666;
}


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

footer{
    background:var(--plum);
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:60px;
    padding:80px 0;
}

.footer-logo{
    width:auto;
    height:60px;
    margin-bottom:24px;
}

footer h4{
    margin:0 0 22px;
    color:var(--gold);
    font-family:'Jost',Arial,sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
}

footer p{
    max-width:430px;
    color:#ccc;
    font-size:14px;
    line-height:1.8;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:12px;
}

footer a{
    color:#ddd;
    font-size:14px;
    transition:color .25s ease;
}

footer a:hover{
    color:var(--gold);
}

.copyright{
    padding:24px 20px;
    border-top:1px solid rgba(255,255,255,.12);
    color:#aaa;
    text-align:center;
    font-size:12px;
}


/* =========================================================
   FORM ELEMENTS — CONTACT PAGE
========================================================= */

input,
textarea,
select{
    width:100%;
    border:1px solid #ddd;
    background:#fff;
    color:var(--text);
    padding:13px 15px;
    outline:0;
    border-radius:0;
}

input:focus,
textarea:focus,
select:focus{
    border-color:var(--gold);
}

textarea{
    min-height:140px;
    resize:vertical;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media(max-width:1100px){

    .navbar > ul{
        gap:24px;
    }

    .home-process-grid,
    .process-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){

    .header,
    .header .container{
        min-height:75px;
    }

    .logo img{
        height:48px;
    }

    .mobile-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        display:none;
        margin:0;
        padding:12px 0 18px;
        background:var(--plum);
        border-top:1px solid rgba(200,160,77,.20);
        box-shadow:0 15px 30px rgba(0,0,0,.25);
        z-index:100000;
    }

    .navbar.active{
        display:block;
    }

    .navbar > ul{
        flex-direction:column;
        align-items:stretch;
        gap:0;
        width:100%;
        padding:0 5%;
    }

    .navbar > ul > li{
        width:100%;
    }

    .navbar > ul > li > a{
        min-height:0;
        padding:14px 0;
    }

    .contact-btn{
        display:inline-flex !important;
        margin:8px 0;
    }

    /* Mobile dropdown is controlled by script.js with .open */
    .dropdown:hover > .submenu{
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:none;
    }

    .dropdown.open > .submenu{
        position:static;
        display:block;
        width:100%;
        margin:4px 0 8px;
        padding:5px 0;
        background:rgba(255,255,255,.06);
        border:0;
        border-left:2px solid var(--gold);
        border-radius:0;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:none;
    }

    .dropdown.open > .submenu li a{
        padding:10px 15px;
        color:#ddd !important;
        background:transparent;
    }

    .dropdown.open > .submenu li a:hover{
        color:var(--gold) !important;
        background:rgba(255,255,255,.06);
    }

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

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

    .stat-box:nth-child(2){
        border-right:0;
    }

    .stat-box:nth-child(-n+2){
        border-bottom:1px solid var(--border);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }

    .footer-grid > div:first-child{
        grid-column:1 / -1;
    }

    .cta-wrapper{
        display:grid;
        grid-template-columns:1fr auto;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media(max-width:768px){

    .container{
        width:90%;
    }

    .header,
    .header .container{
        min-height:68px;
    }

    .logo img{
        height:42px;
    }

    .navbar{
        top:68px;
    }

    .hero{
        min-height:760px;
        height:90vh;
        padding-top:68px;
    }

    .hero .overlay{
        background:linear-gradient(
            90deg,
            rgba(25,18,30,.82),
            rgba(25,18,30,.58)
        );
    }

    .hero-content{
        max-width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:clamp(38px,10vw,55px);
    }

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

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
        align-items:stretch;
        max-width:320px;
        margin-left:auto;
        margin-right:auto;
    }

    .btn-gold,
    .btn-outline{
        width:100%;
    }

    .about,
    .services,
    .process{
        padding:70px 0;
    }

    .about-grid{
        gap:45px;
    }

    .about-content h2,
    .services > .container > h2,
    .process > .container > h2{
        font-size:34px;
    }

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

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

    .stat-box,
    .stat-box:nth-child(2){
        border-right:0;
        border-bottom:1px solid var(--border);
    }

    .stat-box:last-child{
        border-bottom:0;
    }

    .home-process-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .cta{
        padding:65px 0;
    }

    .cta-wrapper{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        padding:60px 0;
    }

    .footer-grid > div:first-child{
        grid-column:auto;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .mobile-toggle{
        font-size:25px;
    }

    .hero{
        min-height:700px;
    }

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

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

    .about-content h2,
    .services > .container > h2,
    .process > .container > h2,
    .cta h2{
        font-size:31px;
    }

    .stat-box{
        padding:30px 20px;
    }

    .footer-logo{
        height:50px;
    }
}


/* =========================================================
   ACCESSIBILITY / SAFETY
========================================================= */

:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
}

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        transition:none !important;
        animation:none !important;
    }
}
