/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{
--bg:#111827;
--card:#1f2937;
--card2:#374151;

--red:#dc2626;
--red-light:#ef4444;

--white:#ffffff;
--text:#cbd5e1;

--border:rgba(255,255,255,.08);
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
position:relative;
}

/* =========================
   BACKGROUND GLOWS
========================= */

.bg-glow{
position:fixed;
border-radius:50%;
filter:blur(150px);
opacity:.14;
z-index:-1;
}

.glow-red{
width:500px;
height:500px;
background:var(--red);
top:-150px;
right:-120px;
}

.glow-gray{
width:450px;
height:450px;
background:#64748b;
bottom:-120px;
left:-120px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
z-index:999;
transition:.3s;
}

.navbar.scrolled{
background:rgba(0,0,0,.75);
backdrop-filter:blur(14px);
border-bottom:1px solid var(--border);
}

.logo{
font-size:1.7rem;
font-weight:800;
}

.logo span{
color:var(--red);
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:var(--red);
}

.nav-btn{
text-decoration:none;
background:var(--red);
color:white;
padding:14px 24px;
border-radius:999px;
font-weight:700;
transition:.3s;
}

.nav-btn:hover{
transform:translateY(-3px);
background:var(--red-light);
}
.top-banner{
background:var(--red);
text-align:center;
padding:4px 10px;
font-size:.85rem;
font-weight:600;
position:relative;
z-index:1000;
}
/* =========================
   HERO
========================= */

.hero{
min-height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 8%;

background:
url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=80");

background-size:cover;
background-position:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.88)
);
}

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

.hero-tag{
color:var(--red);
font-size:.95rem;
letter-spacing:2px;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-size:clamp(3rem,8vw,6rem);
font-weight:900;
line-height:1.05;
margin-bottom:20px;
}

.hero h1 span{
display:block;
color:var(--red);
}

.hero-description{
max-width:700px;
margin:auto;
font-size:1.2rem;
line-height:1.8;
color:var(--text);
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.primary-btn{
background:var(--red);
color:white;
text-decoration:none;
padding:16px 34px;
border-radius:999px;
font-weight:700;
transition:.3s;
}

.primary-btn:hover{
transform:translateY(-4px);
box-shadow:
0 0 25px rgba(220,38,38,.35);
}

.secondary-btn{
border:1px solid var(--red);
padding:16px 34px;
border-radius:999px;
text-decoration:none;
color:white;
transition:.3s;
}

.secondary-btn:hover{
background:rgba(255,255,255,.05);
}

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

.stats{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-card{
background:var(--card);
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid var(--border);
}

.stat-card h2{
font-size:3rem;
color:var(--red);
margin-bottom:10px;
}

.stat-card p{
color:var(--text);
}

/* =========================
   SECTIONS
========================= */

.section{
padding:120px 8%;
}

.dark-section{
background:#0b1220;
}

.section-header{
max-width:700px;
margin:auto;
text-align:center;
margin-bottom:70px;
}

.section-header h2{
font-size:3rem;
margin-bottom:15px;
}

.section-header p{
color:var(--text);
line-height:1.8;
}

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

.services-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
background:var(--card);
padding:35px;
border-radius:20px;
border:1px solid var(--border);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
border-color:rgba(220,38,38,.5);

box-shadow:
0 0 30px rgba(220,38,38,.15),
0 0 60px rgba(220,38,38,.08);
}

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

.service-card p{
line-height:1.8;
color:var(--text);
}

/* =========================
   BENEFITS
========================= */

.benefits-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.benefit-card{
background:var(--card);
padding:35px;
border-radius:20px;
border:1px solid var(--border);
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-8px);
}

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

.benefit-card p{
color:var(--text);
line-height:1.8;
}

/* =========================
   SPECIALS
========================= */

.specials-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.special-card{
background:
linear-gradient(
135deg,
var(--red),
#991b1b
);

padding:45px;
border-radius:20px;
text-align:center;
font-weight:700;
font-size:1.2rem;
}
.special-card p{
margin-top:10px;
opacity:.9;
font-size:.95rem;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.testimonial-card{
background:var(--card);
padding:35px;
border-radius:20px;
border:1px solid var(--border);
}

.testimonial-card p{
line-height:1.8;
margin-bottom:15px;
color:var(--text);
}

.testimonial-card h4{
color:var(--red);
}

/* =========================
   CONTACT
========================= */

.contact-section{
padding:120px 8%;
text-align:center;
}

.contact-section h2{
font-size:3rem;
margin-bottom:20px;
}

.contact-section p{
color:var(--text);
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

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

footer{
padding:50px 8%;
text-align:center;
border-top:1px solid var(--border);
}

.footer-info{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:20px;
color:var(--text);
}

.copyright{
color:#64748b;
}

/* =========================
   REVEAL
========================= */

.reveal{
opacity:0;
transform:translateY(40px);
transition:.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* =========================
   ACTIVE NAV
========================= */

.nav-links a.active{
color:var(--red);
}

/* =========================
   PARTICLES
========================= */

.particle{
position:fixed;
bottom:-20px;
background:var(--red);
border-radius:50%;
pointer-events:none;
z-index:-1;
animation:floatParticle linear forwards;
}

@keyframes floatParticle{

from{
transform:translateY(0);
opacity:1;
}

to{
transform:translateY(-120vh);
opacity:0;
}

}

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

@media(max-width:950px){

.nav-links{
display:none;
}

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

.hero h1{
font-size:3rem;
}

.section-header h2,
.contact-section h2{
font-size:2.3rem;
}

.footer-info{
flex-direction:column;
gap:10px;
}

}