/* ==================================================
   SWFL GOLD & SILVER BUYERS
   Premium Theme
================================================== */

:root{

    --bg:#080808;
    --bg2:#111111;
    --card:#161616;
    --gold:#d4af37;
    --gold-light:#f0d878;
    --text:#ffffff;
    --gray:#bdbdbd;
    --border:rgba(255,255,255,.08);

    --radius:18px;

    --shadow:
    0 15px 40px rgba(0,0,0,.45);

    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

button,
input,
select{

    font-family:inherit;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

section{

    padding:110px 0;

}

h1{

    font-size:4.4rem;

    line-height:1.05;

    font-weight:800;

}

h2{

    font-size:3rem;

    font-weight:800;

}

h3{

    font-size:1.45rem;

}

p{

    color:var(--gray);

}
.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(8,8,8,.78);

    border-bottom:1px solid var(--border);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

.logo{

    font-size:1.35rem;

    font-weight:800;

}

.logo span{

    color:var(--gold);

}

nav{

    display:flex;

    gap:34px;

}

nav a{

    color:#ddd;

    transition:var(--transition);

}

nav a:hover{

    color:var(--gold);

}

.call-btn{

    background:linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold));

    color:#111;

    padding:14px 24px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.call-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}
.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    background:

    radial-gradient(circle at top right,
    rgba(212,175,55,.10),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.06),
    transparent 45%),

    #080808;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:70px;

    align-items:center;

}

.eyebrow{

    color:var(--gold);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:22px;

    font-size:.82rem;

}

.hero h1{

    margin-bottom:28px;

}

.hero h1{

    max-width:650px;

}

.hero h1{

    color:#fff;

}

.hero h1::first-line{

    color:var(--gold);

}

.hero p{

    font-size:1.15rem;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.btn{

    padding:18px 34px;

    border-radius:999px;

    transition:var(--transition);

    font-weight:700;

}

.gold-btn{

    background:linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold));

    color:#111;

}

.dark-btn{

    background:#181818;

    border:1px solid var(--border);

}

.gold-btn:hover,
.dark-btn:hover{

    transform:translateY(-3px);

}

.trust-row{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

.trust-row div{

    background:#141414;

    border:1px solid var(--border);

    border-radius:999px;

    padding:12px 20px;

}
.hero-right{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.spot-card,
.calculator-card{

    background:linear-gradient(
    180deg,
    #1a1a1a,
    #111);

    border:1px solid var(--border);

    border-radius:22px;

    padding:34px;

    box-shadow:var(--shadow);

}

.spot-label,
.calc-label{

    color:var(--gold);

    font-size:.8rem;

    letter-spacing:2px;

    font-weight:700;

}

.spot-price{

    font-size:3.4rem;

    font-weight:800;

    color:var(--gold);

    margin:20px 0;

}

.calc-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:30px 0;

}

.field{

    display:flex;

    flex-direction:column;

}

.field label{

    margin-bottom:10px;

    font-weight:600;

}

.field input,
.field select{

    padding:16px;

    background:#0d0d0d;

    color:#fff;

    border:1px solid var(--border);

    border-radius:12px;

}

.calculate-btn{

    width:100%;

    padding:18px;

    background:linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold));

    color:#111;

    border:none;

    border-radius:14px;

    font-weight:700;

    margin-top:12px;

}

.estimate{

    margin-top:28px;

    text-align:center;

}

.estimate strong{

    display:block;

    font-size:3rem;

    color:var(--gold);

    margin:12px 0;

}
/* ==================================================
   TRUST STRIP
================================================== */

.trust-strip{

    background:#0d0d0d;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

    padding:30px 0;

}

.trust-strip .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    text-align:center;

}

.trust-strip div{

    font-weight:600;

    color:#e8e8e8;

    letter-spacing:.4px;

}
/* ==================================================
   SECTION HEADINGS
================================================== */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    color:var(--gold);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.section-heading h2{

    margin-bottom:20px;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    font-size:1.05rem;

}
/* ==================================================
   WHY CHOOSE US
================================================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:linear-gradient(
    180deg,
    #181818,
    #101010);

    border:1px solid var(--border);

    border-radius:20px;

    padding:38px;

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

}

.why-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

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

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    background:#141414;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-8px);

}

.step-number{

    display:inline-flex;

    width:58px;

    height:58px;

    border-radius:50%;

    align-items:center;

    justify-content:center;

    background:var(--gold);

    color:#111;

    font-weight:800;

    margin-bottom:24px;

}

.process-card h3{

    margin-bottom:15px;

}
/* ==================================================
   SERVICES
================================================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    min-height:340px;

    cursor:pointer;

    box-shadow:var(--shadow);

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-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,.88),
        rgba(0,0,0,.15)
    );

}

.service-overlay h3{

    margin-bottom:12px;

}

.service-overlay p{

    color:#ddd;

}
/* ==================================================
   REVIEWS
================================================== */

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.review-card{

    background:#151515;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    transition:var(--transition);

}

.review-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:var(--gold);

    font-size:1.3rem;

    margin-bottom:20px;

    letter-spacing:3px;

}

.review-card p{

    margin-bottom:25px;

}

.review-card strong{

    color:#fff;

}
/* ==================================================
   FAQ
================================================== */

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-list details{

    background:#151515;

    border:1px solid var(--border);

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    transition:var(--transition);

}

.faq-list details:hover{

    border-color:rgba(212,175,55,.35);

}

.faq-list summary{

    list-style:none;

    cursor:pointer;

    padding:24px 28px;

    font-size:1.1rem;

    font-weight:700;

    position:relative;

}

.faq-list summary::-webkit-details-marker{

    display:none;

}

.faq-list summary::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    color:var(--gold);

    font-size:1.4rem;

    font-weight:700;

}

.faq-list details[open] summary::after{

    content:"–";

}

.faq-list p{

    padding:0 28px 28px;

}
/* ==================================================
   FINAL CTA
================================================== */

.final-cta{

    background:linear-gradient(
        135deg,
        #151515,
        #0d0d0d
    );

    text-align:center;

}

.final-cta h2{

    max-width:800px;

    margin:0 auto 25px;

}

.final-cta p{

    max-width:650px;

    margin:0 auto 40px;

    font-size:1.1rem;

}

.final-cta .hero-buttons{

    justify-content:center;

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

footer{

    background:#050505;

    border-top:1px solid var(--border);

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.5fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-grid h3{

    margin-bottom:18px;

}

.footer-grid h4{

    color:var(--gold);

    margin-bottom:20px;

}

.footer-grid a{

    display:block;

    color:#d0d0d0;

    margin-bottom:14px;

    transition:var(--transition);

}

.footer-grid a:hover{

    color:var(--gold);

}

.copyright{

    text-align:center;

    padding:30px 0;

    border-top:1px solid var(--border);

    color:#888;

    font-size:.9rem;

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

@media(max-width:1024px){

    h1{

        font-size:3.5rem;

    }

    h2{

        font-size:2.5rem;

    }

    .hero-grid,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .reviews-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    h1{

        font-size:2.7rem;

    }

    h2{

        font-size:2rem;

    }

    nav{

        display:none;

    }

    .hero{

        text-align:center;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .trust-row{

        justify-content:center;

    }

    .trust-strip .container{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .calc-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        gap:40px;

        text-align:center;

    }

}

@media(max-width:480px){

    h1{

        font-size:2.2rem;

    }

    h2{

        font-size:1.7rem;

    }

    .spot-price{

        font-size:2.5rem;

    }

    .estimate strong{

        font-size:2.3rem;

    }

    .btn{

        width:100%;

        text-align:center;

    }

    .spot-card,
    .calculator-card,
    .why-card,
    .process-card,
    .review-card{

        padding:24px;

    }

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

.fade-section{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-section.visible{

    opacity:1;

    transform:translateY(0);

}
.hero-left {
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.70)),
        url("hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}

.hero-left > * {
    position: relative;
    z-index: 1;
}
