:root {

    --black:#0b0b0b;
    --gold:#D4AF37;
    --gold-light:#E6C76A;
    --white:#ffffff;
    --gray:#bdbdbd;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--black);
    color:var(--white);
    line-height:1.7;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.navbar{

    position:sticky;
    top:0;
    z-index:999;

    background:#000;

    border-bottom:1px solid rgba(212,175,55,.2);
}

.nav-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 0;
}

.logo{

    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    font-weight:600;
}

.logo img{
    height:45px;
}

.nav-links{

    display:flex;
    gap:30px;

    list-style:none;
}

.nav-links a{
    color:#fff;
}

.btn{

    display:inline-block;

    padding:14px 26px;

    border-radius:6px;

    transition:.3s;
}

.btn-gold{

    background:var(--gold);
    color:#000;
    font-weight:600;
}

.btn-gold:hover{

    background:var(--gold-light);
}

.footer{

    padding:60px 0;

    text-align:center;

    border-top:1px solid rgba(212,175,55,.15);
}

.footer-logo img{
    height:70px;
    margin-bottom:20px;
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

}
/* HERO */

.hero{

    position:relative;

    min-height:90vh;

    display:flex;
    align-items:center;

    background:url('../images/header-clarity.png')
    center center/cover no-repeat;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.7);
}

.hero-content{

    position:relative;
    z-index:2;
}

.hero-text{

    max-width:700px;
}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.3);

    color:var(--gold);

    border-radius:40px;

    margin-bottom:20px;

    font-size:14px;
}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    font-family:'Playfair Display',serif;
}

.hero p{

    font-size:20px;

    color:var(--gray);

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-outline{

    border:1px solid var(--gold);

    color:var(--gold);

    background:transparent;
}

.btn-outline:hover{

    background:var(--gold);

    color:#000;
}

/* TRUST BAR */

.trust-bar{

    padding:25px 0;

    background:#111;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    text-align:center;

    color:var(--gold);
}

/* GENERAL SECTIONS */

.section{

    padding:100px 0;
}

.section-header{

    text-align:center;

    margin-bottom:60px;
}

.section-header h2{

    font-size:48px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;
}

.section-header p{

    color:var(--gray);

    max-width:700px;

    margin:auto;
}

.bg-dark{

    background:#111;
}

/* GRID */

.cards-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

/* TABLETS */

@media(max-width:1100px){

    .cards-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .cards-grid{

        grid-template-columns:1fr;
    }
}

.card{

    background:#161616;

    padding:35px;

    border-radius:14px;

    border:1px solid rgba(212,175,55,.1);

    transition:.3s;
}

.card:hover{

    transform:translateY(-5px);

    border-color:rgba(212,175,55,.4);
}

.card h3{

    margin-bottom:15px;

    color:var(--gold);
}

/* PRICING */

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.pricing-card{

    background:#151515;

    border-radius:14px;

    padding:40px 30px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.pricing-card.featured{

    border:2px solid var(--gold);

    transform:scale(1.04);
}

.price{

    font-size:54px;

    margin:25px 0;

    color:var(--gold);

    font-family:'Playfair Display',serif;
}

.pricing-card ul{

    list-style:none;

    margin-bottom:30px;
}

.pricing-card li{

    margin-bottom:12px;

    color:var(--gray);
}

/* CTA */

.cta-section{

    padding:120px 0;

    text-align:center;

    background:#111;
}

.cta-section h2{

    font-size:52px;

    margin-bottom:20px;
}

.cta-section p{

    max-width:700px;

    margin:0 auto 35px;

    color:var(--gray);
}

/* PAGE HERO */

.page-hero{

    background:
    linear-gradient(
        rgba(0,0,0,.7),
        rgba(0,0,0,.7)
    ),
    url('assets/images/header.png');

    background-size:cover;

    background-position:center;

    padding:140px 0 100px;
}

.page-hero h1{

    font-size:58px;

    margin:20px 0;
}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:var(--gray);
}

/* QUOTE PAGE */

.quote-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:start;
}

@media(max-width:992px){

    .quote-grid{

        grid-template-columns:1fr;
    }

}

.quote-info h2{

    margin-bottom:35px;

    font-size:40px;
}

.quote-info .pricing-card{

    position:sticky;

    top:120px;

    background:linear-gradient(
        180deg,
        #1a1a1a,
        #101010
    );

    border:1px solid rgba(212,175,55,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);
}
.order-summary{

    margin-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;
}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;
}

.summary-row.total{

    font-size:22px;

    font-weight:700;

    color:var(--gold);
}
.info-card{

    margin-bottom:25px;

    padding:25px;

    background:#151515;

    border-radius:12px;
}

.quote-form-wrapper{

    background:#151515;

    border:1px solid rgba(212,175,55,.15);

    padding:45px;

    border-radius:16px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}

.quote-form .form-group{

    margin-bottom:22px;
}

.quote-form label{

    display:block;

    margin-bottom:8px;

    color:#fff;
}

.quote-form input,
.quote-form textarea,
.quote-form select{

    width:100%;

    padding:16px 18px;

    background:#0b0b0b;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:10px;

    font-size:16px;

    transition:.3s;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus{

    outline:none;

    border-color:var(--gold);
}

.btn-full{

    width:100%;
}

/* ALERTS */

.success-box{

    padding:18px;

    margin-bottom:25px;

    background:rgba(0,255,120,.08);

    border:1px solid rgba(0,255,120,.2);

    border-radius:8px;
}

.error-box{

    padding:18px;

    margin-bottom:25px;

    background:rgba(255,0,0,.08);

    border:1px solid rgba(255,0,0,.2);

    border-radius:8px;
}


/* FAQ */

.faq-container{

    max-width:900px;

    margin:0 auto;
}

.faq-item{

    margin-bottom:15px;

    border:1px solid rgba(212,175,55,.15);

    border-radius:12px;

    overflow:hidden;

    background:#151515;
}

.faq-question{

    width:100%;

    padding:22px 25px;

    background:none;

    border:none;

    color:#fff;

    text-align:left;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    position:relative;
}

.faq-question::after{

    content:"+";

    position:absolute;

    right:25px;

    top:50%;

    transform:translateY(-50%);

    color:var(--gold);

    font-size:24px;
}

.faq-item.active .faq-question::after{

    content:"−";
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    background:#111;
}

.faq-answer p{

    padding:0 25px 25px;

    margin:0;

    color:#ccc;

    line-height:1.7;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

/* WHATSAPP */

.whatsapp-float{

    position:fixed;

    bottom:25px;
    right:25px;

    background:#25D366;

    color:#fff;

    padding:15px 22px;

    border-radius:50px;

    z-index:999;
}

/* SWIPER */

.swiper{

    padding-bottom:50px;
}

.swiper-slide img{

    border-radius:12px;
}

/* MOBILE */

@media(max-width:992px){

    .cards-grid,
    .pricing-grid,
    .quote-grid,
    .trust-grid{

        grid-template-columns:1fr 1fr;
    }

    .hero h1{

        font-size:48px;
    }

}

@media(max-width:768px){

    .cards-grid,
    .pricing-grid,
    .quote-grid,
    .trust-grid{

        grid-template-columns:1fr;
    }

    .hero{

        min-height:auto;

        padding:120px 0;
    }

    .hero h1{

        font-size:40px;
    }

    .section-header h2,
    .page-hero h1,
    .cta-section h2{

        font-size:36px;
    }

    .price{

        font-size:42px;
    }

    .hero-buttons{

        flex-direction:column;
    }

}
/* SUCCESS / FAILED PAGES */

.success-page{

    max-width:700px;

    margin:auto;

    text-align:center;

    padding:80px 40px;

    background:#151515;

    border-radius:20px;
}

.success-icon,
.failed-icon{

    width:100px;
    height:100px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    font-weight:bold;
}

.success-icon{

    background:rgba(0,255,120,.1);

    color:#00d26a;
}

.failed-icon{

    background:rgba(255,0,0,.1);

    color:#ff4b4b;
}

.success-page h1{

    margin-bottom:20px;

    font-size:52px;
}

.success-page p{

    margin-bottom:20px;

    color:var(--gray);

    font-size:18px;
}

/* TABLE */

.comparison-table-wrapper{

    overflow-x:auto;
}

.comparison-table{

    width:100%;

    border-collapse:collapse;

    background:#151515;
}

.comparison-table th,
.comparison-table td{

    padding:18px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.comparison-table th{

    background:#111;

    color:var(--gold);
}

/* FAQ */

.faq-container{

    max-width:900px;

    margin:auto;
}

.faq-item{

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:10px;

    overflow:hidden;
}

.faq-question{

    width:100%;

    padding:22px;

    background:#151515;

    color:#fff;

    border:none;

    text-align:left;

    cursor:pointer;

    font-size:18px;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.3s;

    background:#111;
}

.faq-answer p{

    padding:20px;

    color:var(--gray);
}

.faq-item.active .faq-answer{

    max-height:300px;
}
/* ADMIN */

.admin-body{

    background:#0c0c0c;

    color:#fff;
}

.admin-layout{

    display:flex;

    min-height:100vh;
}

.admin-sidebar{

    width:280px;

    background:#111;

    padding:40px 25px;

    border-right:1px solid rgba(255,255,255,.08);
}

.sidebar-logo{

    text-align:center;

    margin-bottom:40px;
}

.sidebar-logo img{

    width:80px;

    margin-bottom:15px;
}

.admin-sidebar ul{

    list-style:none;
}

.admin-sidebar li{

    margin-bottom:15px;
}

.admin-sidebar a{

    display:block;

    padding:14px 18px;

    border-radius:8px;

    color:#fff;

    transition:.3s;
}

.admin-sidebar a:hover{

    background:rgba(212,175,55,.12);

    color:var(--gold);
}

.admin-content{

    flex:1;

    padding:40px;
}

.admin-topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.admin-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.admin-stat-card{

    background:#151515;

    padding:35px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);
}

.admin-stat-card h3{

    margin-bottom:15px;

    color:var(--gold);
}

.admin-stat-number{

    font-size:42px;

    font-weight:bold;
}

.admin-table-wrapper{

    overflow-x:auto;
}

.admin-table{

    width:100%;

    border-collapse:collapse;

    background:#151515;
}

.admin-table th,
.admin-table td{

    padding:18px;

    border:1px solid rgba(255,255,255,.08);
}

.admin-table th{

    background:#111;

    color:var(--gold);

    text-align:left;
}

.admin-login-body{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:100vh;

    background:#0c0c0c;
}

.admin-login-wrapper{

    width:100%;

    max-width:450px;
}

.admin-login-form{

    background:#151515;

    padding:45px;

    border-radius:16px;
}

.admin-login-form h1{

    margin-bottom:30px;

    text-align:center;
}

.admin-logo{

    width:90px;

    display:block;

    margin:0 auto 20px;
}

@media(max-width:992px){

    .admin-stats{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .admin-layout{

        flex-direction:column;
    }

    .admin-sidebar{

        width:100%;
    }

    .admin-stats{

        grid-template-columns:1fr;
    }

}
/* SMALL BUTTONS */

.btn-sm{

    padding:10px 14px;

    font-size:14px;
}

.btn-danger{

    background:#c62828;

    color:#fff;
}

.btn-danger:hover{

    background:#e53935;
}

/* ADMIN CARD */

.admin-content .card{

    background:#151515;

    padding:40px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);
}

.admin-content .card p{

    margin-bottom:15px;

    color:#ddd;
}
/* ANALYTICS */

.chart-card{

    margin-top:40px;

    background:#151515;

    padding:40px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);
}

.chart-card h2{

    margin-bottom:30px;

    color:var(--gold);
}

/* SUCCESS */

.success-box{

    background:rgba(0,255,100,.1);

    border:1px solid rgba(0,255,100,.2);

    color:#00d26a;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;
}