/*
====================================
BALLOONFIX PREMIUM STYLESHEET
====================================
*/

:root{
--pink:#ff4fa3;
--purple:#8a3ffc;
--cyan:#19c7e5;
--gold:#d4af37;

--dark:#222222;
--light:#fff8fd;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#333;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ==========================
HEADER
========================== */

.header{
background:#fff;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #f0f0f0;
box-shadow:0 2px 15px rgba(0,0,0,.04);
}

.header .container{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 0;
}

.logo a{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
font-size:26px;
font-weight:700;
color:#222;
}

.logo img{
width:55px;
height:55px;
object-fit:contain;
}

.nav ul{
display:flex;
list-style:none;
gap:25px;
}

.nav a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
}

.nav a:hover{
color:var(--pink);
}

/* ==========================
CART BUTTON
========================== */

.cart-btn{
display:flex;
align-items:center;
gap:8px;

background:linear-gradient(
135deg,
var(--pink),
var(--purple)
);

color:#fff;
padding:10px 18px;

border-radius:30px;

text-decoration:none;
font-weight:600;

transition:.3s;
}

.cart-btn:hover{
transform:translateY(-2px);
}

.cart-icon{
font-size:18px;
}

.cart-count{
background:#fff;
color:var(--purple);

padding:2px 8px;

border-radius:50px;

font-size:12px;
font-weight:700;
}

/* ==========================
HERO
========================== */

.hero{
padding:90px 0;
background:linear-gradient(
180deg,
#ffffff,
#fff5fb
);
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-content{
flex:1;
}

.hero-tag{
display:inline-block;

padding:8px 16px;

background:#ffe8f4;

color:var(--purple);

border-radius:50px;

font-weight:600;

margin-bottom:20px;
}

.hero-content h1{
font-size:58px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content h1 span{
color:var(--pink);
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
color:#666;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:linear-gradient(
135deg,
var(--pink),
var(--purple)
);

color:#fff;

padding:14px 28px;

border-radius:50px;

text-decoration:none;

font-weight:600;
}

.btn-secondary{
border:2px solid var(--purple);

color:var(--purple);

padding:14px 28px;

border-radius:50px;

text-decoration:none;

font-weight:600;
}

.hero-image{
flex:1;
}

.hero-image img{
width:100%;
max-height:500px;
object-fit:cover;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ==========================
SECTION TITLE
========================== */

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
margin-bottom:10px;
}

.section-title p{
color:#777;
}

/* ==========================
PACKAGES
========================== */

.packages-section{
padding:90px 0;
}

.package-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.package-card{
background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.3s;
}

.package-card:hover{
transform:translateY(-8px);
}

.package-card img{
width:100%;
height:280px;
object-fit:cover;
display:block;
}

.package-card-content{
padding:20px;
}

.package-card h3{
margin-bottom:10px;
}

.package-card p{
margin-bottom:15px;
color:#666;
}

.package-card h4{
font-size:26px;
color:var(--pink);
margin-bottom:15px;
}

.package-card a{
color:var(--purple);
font-weight:600;
text-decoration:none;
}

/* ==========================
WHY US
========================== */

.why-us{
padding:90px 0;
background:#fff8fd;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.why-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.why-card h3{
margin-bottom:10px;
}

/* ==========================
HOW IT WORKS
========================== */

.how-it-works{
padding:90px 0;
}

.steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.step{
text-align:center;
padding:20px;
}

.step-number{
width:60px;
height:60px;

background:linear-gradient(
135deg,
var(--pink),
var(--purple)
);

color:#fff;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;
font-weight:700;

margin:auto;
margin-bottom:15px;
}

/* ==========================
TESTIMONIALS
========================== */

.testimonials{
padding:90px 0;
background:#fff8fd;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.testimonial{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* ==========================
CTA
========================== */

.cta{
padding:90px 0;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:15px;
}

.cta p{
margin-bottom:25px;
}

/* ==========================
FOOTER
========================== */

.footer{
background:#111;
color:#fff;
padding:70px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer h3{
margin-bottom:15px;
}

.footer ul{
list-style:none;
}

.footer ul li{
margin-bottom:8px;
}

.footer a{
color:#fff;
text-decoration:none;
}

.copyright{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
}

/* ==========================
WHATSAPP FLOAT
========================== */

.whatsapp-float{
position:fixed;

right:20px;
bottom:20px;

background:#25D366;

color:#fff;

padding:15px 25px;

border-radius:50px;

text-decoration:none;

font-weight:600;

z-index:999;
}

/* ==========================
TABLET
========================== */

@media(max-width:991px){

.hero-container{
flex-direction:column;
}

.package-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr 1fr;
}

.steps{
grid-template-columns:1fr 1fr;
}

.testimonial-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:42px;
}

}

/* ==========================
MOBILE
========================== */

@media(max-width:768px){

.header .container{
display:block;
text-align:center;
}

.logo{
margin-bottom:15px;
}

.logo a{
justify-content:center;
font-size:20px;
}

.logo img{
width:45px;
height:45px;
}

.nav{
margin-top:15px;
}

.nav ul{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

.cart-btn{
display:inline-flex;
margin-top:15px;
padding:8px 12px;
}

.cart-text{
display:none;
}

.hero-content h1{
font-size:34px;
}

.hero-buttons{
justify-content:center;
}

.why-grid{
grid-template-columns:1fr;
}

.steps{
grid-template-columns:1fr;
}

}