*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
scroll-behavior:smooth;
}

:root{
--black:#050505;
--blue:#00a2ff;
--silver:#c0c0c0;
--white:#ffffff;
}

body{
background:var(--black);
color:white;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.85);
backdrop-filter:blur(15px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
height:70px;
}

nav{
display:flex;
gap:25px;
}

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

nav a:hover{
color:var(--blue);
}

.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
}

.hero-content{
position:relative;
z-index:5;
text-align:center;
padding:20px;
}

.hero-content h1{
font-size:70px;
font-weight:900;
max-width:900px;
margin:auto;
}

.hero-content p{
margin-top:20px;
font-size:22px;
color:var(--silver);
}

.btn{
display:inline-block;
margin-top:35px;
padding:16px 35px;
background:linear-gradient(90deg,var(--blue),#006dff);
color:white;
text-decoration:none;
font-weight:700;
border-radius:50px;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 30px rgba(0,162,255,.5);
}

.coverage{
padding:100px 8%;
text-align:center;
}

.coverage h2{
color:var(--blue);
font-size:40px;
margin-bottom:20px;
}

.coverage p{
max-width:900px;
margin:auto;
line-height:1.8;
color:var(--silver);
}

section{
padding:100px 8%;
}

section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:var(--blue);
}

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

.card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
padding:30px;
border-radius:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:var(--blue);
box-shadow:0 0 30px rgba(0,162,255,.2);
}

.card h3{
margin-bottom:15px;
font-size:24px;
}

.card p{
color:var(--silver);
line-height:1.6;
}

#giftcards{
text-align:center;
}

.gift-btn{
display:inline-block;
margin-top:30px;
padding:18px 40px;
background:linear-gradient(90deg,var(--blue),#005fff);
color:white;
font-weight:700;
text-decoration:none;
border-radius:50px;
}

form{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
select,
textarea{
padding:18px;
border:none;
outline:none;
border-radius:12px;
background:#111;
color:white;
border:1px solid #222;
}

textarea{
height:160px;
resize:none;
}

button{
padding:18px;
background:linear-gradient(90deg,var(--blue),#005fff);
border:none;
border-radius:12px;
color:white;
font-weight:700;
cursor:pointer;
font-size:16px;
}

button:hover{
opacity:.9;
}

footer{
padding:60px 20px;
text-align:center;
background:#020202;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo{
height:90px;
margin-bottom:20px;
}

footer p{
margin:10px 0;
color:var(--silver);
}

.call-button{
position:fixed;
right:20px;
bottom:20px;
z-index:9999;
}

.call-button a{
background:linear-gradient(90deg,#00a2ff,#004cff);
padding:18px 30px;
border-radius:12px;
color:white;
text-decoration:none;
font-weight:800;
letter-spacing:1px;
border:1px solid rgba(255,255,255,.15);
box-shadow:0 0 30px rgba(0,162,255,.4);
transition:.3s;
}

.call-button a:hover{
transform:translateY(-3px);
box-shadow:0 0 40px rgba(0,162,255,.8);
}

@media(max-width:768px){

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

header{
flex-direction:column;
padding:10px;
}

nav{
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
}

.logo{
height:55px;
}

section h2{
font-size:32px;
}

}

.review-btn{
display:inline-block;
margin-top:25px;
padding:18px 35px;
background:linear-gradient(90deg,#00a2ff,#005fff);
border-radius:50px;
text-decoration:none;
font-weight:700;
color:white;
}

.why-us{
padding:100px 8%;
background:#080808;
}

.why-content{
max-width:1000px;
margin:auto;
text-align:center;
}

.why-content h2{
font-size:48px;
margin-bottom:25px;
color:#00a2ff;
}

.why-content p{
font-size:18px;
line-height:1.9;
color:#c0c0c0;
margin-bottom:20px;
}

.quote-btn{
display:inline-block;
margin-top:25px;
padding:18px 40px;
background:linear-gradient(90deg,#00a2ff,#005fff);
color:#fff;
text-decoration:none;
font-weight:800;
border-radius:50px;
transition:.3s;
box-shadow:0 0 25px rgba(0,162,255,.4);
}

.quote-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 35px rgba(0,162,255,.7);
}

.steps{
padding:100px 8%;
text-align:center;
background:#050505;
}

.steps h2{
font-size:48px;
margin-bottom:60px;
color:#00a2ff;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1300px;
margin:auto;
}

.step-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:40px 30px;
border-radius:20px;
backdrop-filter:blur(10px);
transition:.3s;
}

.step-card:hover{
transform:translateY(-10px);
border-color:#00a2ff;
box-shadow:0 0 35px rgba(0,162,255,.25);
}

.step-icon{
font-size:60px;
margin-bottom:20px;
}

.step-card h3{
font-size:24px;
margin-bottom:15px;
color:#ffffff;
}

.step-card p{
color:#c0c0c0;
line-height:1.8;
}

.steps .quote-btn{
display:inline-block;
margin-top:50px;
padding:18px 40px;
background:linear-gradient(90deg,#00a2ff,#005fff);
color:white;
text-decoration:none;
font-weight:800;
border-radius:50px;
box-shadow:0 0 25px rgba(0,162,255,.4);
transition:.3s;
}

.steps .quote-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 40px rgba(0,162,255,.8);
}
.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-top:35px;
}

.book-btn{
background:transparent;
border:2px solid #00a2ff;
}

.book-btn:hover{
background:#00a2ff;
box-shadow:0 0 30px rgba(0,162,255,.6);
}

.trust-bar{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:35px 8%;
background:#0a0a0a;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
border-bottom:1px solid rgba(255,255,255,.08);
}

.trust-bar div{
font-weight:700;
font-size:18px;
}

.trust-bar i{
color:#00a2ff;
margin-right:10px;
}

.payments{
text-align:center;
padding:100px 8%;
}

.payment-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin-top:40px;
}

.payment-grid div{
padding:25px;
background:rgba(255,255,255,.04);
border-radius:15px;
font-weight:700;
}

.review-text{
margin-top:20px;
font-size:18px;
color:#c0c0c0;
}

.card,
.step-card,
.btn,
.quote-btn,
.gift-btn,
.review-btn{
transition:.4s cubic-bezier(.22,.61,.36,1);
}

.card:hover,
.step-card:hover{
transform:translateY(-12px);
}

.price{
font-size:24px;
font-weight:800;
color:#00a2ff;
margin-top:20px;
text-align:center;
}

.instagram-section{
padding:100px 8%;
text-align:center;
background:#080808;
}

.instagram-icon{
font-size:80px;
margin-bottom:20px;
background:linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.instagram-section p{
max-width:700px;
margin:20px auto;
color:#c0c0c0;
font-size:18px;
line-height:1.8;
}

.instagram-btn{
display:inline-block;
margin-top:25px;
padding:18px 40px;
border-radius:50px;
text-decoration:none;
font-weight:800;
color:white;
background:linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);
transition:.3s;
}

.instagram-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 35px rgba(220,39,67,.5);
}

.payment-logos{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:40px;
margin-top:40px;
}

.payment-logos img{
height:60px;
width:auto;
filter:brightness(.95);
transition:.3s;
}

.payment-logos img:hover{
transform:scale(1.08);
}

.faq{
padding:100px 8%;
max-width:1100px;
margin:auto;
}

.faq-item{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:30px;
margin-bottom:20px;
border-radius:20px;
}

.faq-item h3{
color:#00a2ff;
margin-bottom:15px;
font-size:22px;
}

.faq-item p{
color:#c0c0c0;
line-height:1.8;
}

.payments{
padding:120px 8%;
text-align:center;
background:#070707;
}

.payment-subtitle{
color:#c0c0c0;
font-size:18px;
margin-top:-20px;
margin-bottom:50px;
}

.payment-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.payment-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(12px);
border-radius:20px;
padding:30px;
display:flex;
justify-content:center;
align-items:center;
height:140px;
transition:.4s;
}

.payment-card:hover{
transform:translateY(-10px);
border-color:#00a2ff;
box-shadow:0 0 35px rgba(0,162,255,.25);
}

.payment-card img{
max-width:120px;
max-height:60px;
width:auto;
height:auto;
object-fit:contain;
}