*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:var(--font);

background:var(--bg);

color:var(--white);

overflow-x:hidden;

}

img{
    max-width:100%;
    height:auto;
    display:block;
}


.logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.logo img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #FFD700;
    box-shadow:0 0 20px rgba(255,215,0,.35);
    transition:.35s ease;
    flex-shrink:0;
}

.logo:hover img{
    transform:rotate(8deg) scale(1.08);
    box-shadow:0 0 30px rgba(255,215,0,.6);
}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

section{

padding:90px 8%;

}

h1,h2,h3{

font-weight:700;

}

p{

color:var(--text);

line-height:1.8;

}

.navbar{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 8%;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(15,15,15,.75);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s ease;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    position:relative;
    color:#fff;
    font-weight:500;
    transition:.3s ease;
    padding:8px 0;
}

.nav-links a:hover{
    color:#FFD700;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#FFD700;
    transition:.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

{
    m
.heroin-height:90vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:100px 8%;
}

.hero h1{
    font-size:4.5rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:600px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

.btn.gold{
    background:linear-gradient(135deg,#FFD700,#FFC107);
    color:#111;
    box-shadow:0 10px 25px rgba(255,215,0,.30);
}

.btn.white{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn:hover{
    transform:translateY(-4px) scale(1.03);
}

.btn.gold:hover{
    box-shadow:0 18px 40px rgba(255,215,0,.45);
}

.btn.white:hover{
    background:#fff;
    color:#111;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
    transition:.4s ease;
}

.hero{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top right, rgba(255,215,0,.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 30%),
    linear-gradient(135deg,#0b0b0b,#141414,#1a1a1a);
}

.hero-image{
    position:relative;
}

.hero-image::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,
        rgba(255,215,0,.30),
        transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    filter:blur(30px);
}

/* =========================
SEARCH
========================= */

.search-section{
    max-width:900px;
    margin:60px auto;
}

.search-section input{
    width:100%;
    padding:18px 25px;
    background:rgba(25,25,25,.9);
    border:2px solid #2b2b2b;
    border-radius:50px;
    color:#fff;
    font-size:17px;
    transition:.35s ease;
}

.search-section input::placeholder{
    color:#999;
}

.search-section input:focus{
    border-color:#FFD700;
    box-shadow:0 0 25px rgba(255,215,0,.35);
    transform:scale(1.02);
}

/* =========================
CATEGORY
========================= */

.categories h2{

text-align:center;

margin-bottom:50px;

font-size:40px;

color:var(--gold);

}

.category-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

max-width:1200px;

margin:auto;

}

.category-card{

background:#161616;

padding:45px 20px;

border-radius:18px;

text-align:center;

font-size:22px;

font-weight:600;

cursor:pointer;

transition:.35s;

border:1px solid #242424;

}

.category-card:hover{

transform:translateY(-12px);

border-color:var(--gold);

box-shadow:0 20px 40px rgba(0,0,0,.45);

}

/* =========================
LATEST
========================= */

.latest h2{

text-align:center;

margin-bottom:50px;

font-size:40px;

color:var(--gold);

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

max-width:1300px;

margin:auto;

}

/* =========================
STATISTICS
========================= */

.stats{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

text-align:center;

}

.stat-card{

background:#161616;

padding:35px;

border-radius:18px;

border:1px solid #242424;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

}

.stat-card h2{

font-size:55px;

color:var(--gold);

margin-bottom:10px;

}

.stat-card p{

font-size:18px;

color:#ccc;

}

/* =========================
SERVICES
========================= */

..category-card{
    background:linear-gradient(145deg,#171717,#101010);
    border:1px solid #2a2a2a;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,215,0,.15),
        transparent
    );
    transition:.6s;
}

.category-card:hover::before{
    left:100%;
}

.category-card:hover{
    transform:translateY(-12px);
    border-color:#FFD700;
    box-shadow:0 20px 45px rgba(255,215,0,.15);
}

.category-icon{
    font-size:60px;
    margin-bottom:20px;
    transition:.35s;
}

.category-card:hover .category-icon{
    transform:scale(1.15) rotate(8deg);
}

.category-card h3{
    color:#FFD700;
    margin-bottom:12px;
    font-size:24px;
}

.category-card p{
    color:#bfbfbf;
}

/* =========================
REVIEWS
========================= */

.review-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

max-width:1300px;

margin:auto;

}

.review-card{

background:#161616;

padding:30px;

border-radius:18px;

border:1px solid #242424;

}

.review-card h3{

color:var(--gold);

margin-bottom:10px;

}

.stars{

color:gold;

font-size:22px;

margin-bottom:15px;

}

.faq{

max-width:900px;

margin:auto;

padding:100px 8%;

}

.faq-item{

background:#171717;

margin-bottom:20px;

border-radius:15px;

overflow:hidden;

}

.faq-question{

width:100%;

padding:20px;

background:none;

border:none;

color:white;

font-size:18px;

text-align:left;

cursor:pointer;

}

.faq-answer{

display:none;

padding:20px;

color:#ccc;

}

/* =========================
FAQ
========================= */

.faq{

max-width:900px;

margin:auto;

}

.faq-item{

background:#161616;

margin-bottom:18px;

border-radius:15px;

overflow:hidden;

border:1px solid #242424;

}

.faq-question{

padding:20px;

cursor:pointer;

font-weight:600;

}

.faq-answer{

padding:0 20px 20px;

display:none;

color:#ccc;

}

/* =========================
FOOTER
========================= */

footer{
    background:#0d0d0d;
    border-top:1px solid #222;
    padding:80px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.footer-grid h2,
.footer-grid h3{
    color:#FFD700;
    margin-bottom:18px;
}

.footer-grid a{
    display:block;
    color:#bdbdbd;
    margin:10px 0;
    transition:.3s;
}

.footer-grid a:hover{
    color:#FFD700;
    padding-left:8px;
}

.copyright{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid #222;
    text-align:center;
    color:#888;
}

/* ===========================
WHY CHOOSE US
=========================== */

.why{

max-width:1300px;

margin:auto;

padding:90px 8%;

}

.section-title{

text-align:center;

font-size:42px;

font-weight:700;

color:var(--gold);

margin-bottom:15px;

}

.section-subtitle{

text-align:center;

max-width:700px;

margin:0 auto 60px;

font-size:18px;

color:#bdbdbd;

line-height:1.8;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.why-card{

background:#171717;

border:1px solid #252525;

border-radius:20px;

padding:35px;

transition:.35s;

text-align:center;

}

.why-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

box-shadow:0 20px 40px rgba(0,0,0,.45);

}

.why-icon{

font-size:55px;

margin-bottom:20px;

}

.why-card h3{

color:var(--gold);

margin-bottom:15px;

font-size:24px;

}

.why-card p{

color:#cfcfcf;

line-height:1.8;

}

/* ===========================
STATISTICS
=========================== */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.stats>div{
    background:linear-gradient(145deg,#171717,#101010);
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:1px solid #252525;
    transition:.35s;
}

.stats>div:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
    box-shadow:0 15px 40px rgba(255,215,0,.18);
}

.stats h2{
    font-size:58px;
    color:#FFD700;
    margin-bottom:12px;
}

.stats p{
    color:#cfcfcf;
    font-size:18px;
}

/* ===========================
SERVICES
=========================== */

.services{

padding:100px 8%;

max-width:1300px;

margin:auto;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:60px;

}

.service-card{

background:#171717;

padding:35px;

border-radius:20px;

text-align:center;

border:1px solid #252525;

transition:.35s;

}

.service-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.service-icon{

font-size:60px;

margin-bottom:20px;

}

.service-card h3{

color:var(--gold);

margin-bottom:15px;

}

.service-card h4{

font-size:30px;

margin:20px 0;

color:#fff;

}

.service-btn{

display:inline-block;

margin-top:10px;

padding:14px 28px;

background:var(--gold);

color:#000;

font-weight:700;

border-radius:10px;

transition:.3s;

}

.service-btn:hover{

transform:scale(1.05);

background:#ffea75;

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-button{
    border:none;
    background:none;
    padding:0;
    cursor:pointer;
    overflow:hidden;
    border-radius:20px;
}

.gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:.45s ease;
}

.gallery-button:hover .gallery-img{
    transform:scale(1.08);
    filter:brightness(1.08);
}

.guide-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.guide-card{
    background:linear-gradient(145deg,#171717,#101010);
    border:1px solid #252525;
    border-radius:22px;
    padding:40px;
    text-align:center;
    transition:.35s;
}

.guide-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
    box-shadow:0 20px 45px rgba(255,215,0,.18);
}

.guide-card span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:#FFD700;
    color:#111;
    font-size:30px;
    font-weight:700;
}

.guide-card h3{
    color:#FFD700;
    margin-bottom:15px;
}

.contact-cta{
    background:linear-gradient(135deg,#101010,#181818,#101010);
    padding:100px 8%;
    text-align:center;
    border-radius:30px;
    margin:100px auto;
    max-width:1300px;
    border:1px solid #252525;
}

.contact-cta h2{
    font-size:48px;
    color:#FFD700;
    margin-bottom:20px;
}

.contact-cta p{
    max-width:700px;
    margin:0 auto 40px;
    color:#cfcfcf;
    font-size:18px;
}

.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:50px;

}

.review-card{

background:#171717;

padding:30px;

border-radius:18px;

text-align:center;

border:1px solid #252525;

transition:.35s;

}

.review-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

}

.review-card img{

width:90px;

height:90px;

border-radius:50%;

margin:auto;

margin-bottom:20px;

}

.stars{

font-size:22px;

color:#FFD700;

margin:15px 0;

}

.newsletter{

padding:100px 8%;

text-align:center;

}

.newsletter-form{

margin-top:40px;

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.newsletter input{

width:380px;

padding:16px;

background:#171717;

border:2px solid #252525;

border-radius:10px;

color:#fff;

font-size:16px;

}

.newsletter button{

padding:16px 35px;

background:var(--gold);

border:none;

border-radius:10px;

cursor:pointer;

font-weight:bold;

transition:.3s;

}

.newsletter button:hover{

transform:scale(1.05);

}

.floating-social{

position:fixed;

right:25px;

bottom:30px;

display:flex;

flex-direction:column;

gap:15px;

z-index:999;

}

.floating-social a,

.floating-social button{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#171717;

color:#FFD700;

font-size:24px;

text-decoration:none;

border:2px solid #FFD700;

transition:.3s;

cursor:pointer;

}

.floating-social a:hover,

.floating-social button:hover{

transform:scale(1.1);

background:#FFD700;

color:#000;

}

/* ========================================
SCROLL PROGRESS BAR
======================================== */

#progress-bar{

position:fixed;

top:0;

left:0;

width:0%;

height:4px;

background:linear-gradient(
90deg,
#FFD700,
#ff3b3b,
#FFD700
);

background-size:300%;

animation:progressGlow 3s linear infinite;

z-index:99999;

box-shadow:
0 0 15px #FFD700,
0 0 30px red;

}

@keyframes progressGlow{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}

/* ===================================
IMAGE LIGHTBOX
=================================== */

#lightbox{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999999;

}

#lightbox.active{

opacity:1;

visibility:visible;

}

#lightbox img{

max-width:90%;

max-height:85%;

border-radius:15px;

border:3px solid #FFD700;

box-shadow:0 0 40px rgba(255,215,0,.45);

animation:zoomImage .35s ease;

}

@keyframes zoomImage{

from{

transform:scale(.7);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

#close-lightbox{

position:absolute;

top:25px;

right:35px;

font-size:55px;

cursor:pointer;

color:white;

transition:.3s;

}

#close-lightbox:hover{

color:#FFD700;

transform:rotate(90deg);

}

.hero-content>*{
    opacity:0;
    transform:translateY(40px);
    animation:heroFade .8s forwards;
}

.hero-content>*:nth-child(1){animation-delay:.2s;}
.hero-content>*:nth-child(2){animation-delay:.4s;}
.hero-content>*:nth-child(3){animation-delay:.6s;}
.hero-content>*:nth-child(4){animation-delay:.8s;}

@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

