/* style.css */

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

body{
font-family:'Montserrat',sans-serif;
background:#f5f7fb;
color:#222;
overflow-x:hidden;
line-height:1.6;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(8,15,30,0.92);
backdrop-filter:blur(10px);
padding:18px 0;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:34px;
font-weight:800;
color:#fff;
}

.logo span{
color:#ff3c38;
}

.menu{
display:flex;
gap:28px;
}

.menu a{
text-decoration:none;
color:#fff;
font-weight:600;
transition:0.3s;
}

.menu a:hover{
color:#ff3c38;
}

/* HERO */

.hero{
position:relative;
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url('hero-desktop.jpg');
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0 20px;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,0.20);
}

.hero-content{
position:relative;
z-index:2;
max-width:950px;
color:#fff;
}

.hero-content h1{
font-size:76px;
font-weight:800;
line-height:1.05;
margin-bottom:20px;
text-shadow:0 8px 25px rgba(0,0,0,0.45);
}

.hero-subtitle{
font-size:24px;
font-weight:600;
margin-bottom:25px;
color:#ffffff;
}

.hero-content p{
font-size:22px;
line-height:1.9;
margin-bottom:35px;
color:#f1f1f1;
text-shadow:0 4px 18px rgba(0,0,0,0.45);
}

/* BUTTONS */

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

.btn{
padding:17px 36px;
border-radius:14px;
font-weight:700;
text-decoration:none;
font-size:17px;
transition:0.3s;
}

.btn:hover{
transform:translateY(-5px);
}

.call{
background:#ff3c38;
color:#fff;
}

.whatsapp{
background:#25d366;
color:#fff;
}

/* SECTIONS */

.services,
.trust-section,
.videos,
.about,
.contact{
padding:110px 0;
}

.title{
text-align:center;
margin-bottom:70px;
}

.title h2{
font-size:48px;
font-weight:800;
margin-bottom:15px;
color:#0d1b2a;
}

.title p{
font-size:18px;
color:#666;
}

/* CARDS */

.cards,
.trust-grid,
.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.card,
.trust-card,
.video-card{
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.4s;
}

.card:hover,
.trust-card:hover,
.video-card:hover{
transform:translateY(-10px);
}

.card h3,
.video-card h3{
font-size:24px;
margin-bottom:15px;
font-weight:800;
color:#0d1b2a;
}

.card p,
.video-card p{
color:#666;
line-height:1.8;
}

/* TRUST */

.trust-section{
background:linear-gradient(135deg,#f7f9fc,#eef2f7);
}

.trust-card.dark{
background:#0d1b2a;
color:#fff;
}

.trust-card.dark p{
color:#ddd;
}

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

/* VIDEO */

.custom-video-player{
border-radius:24px;
overflow:hidden;
background:#000;
margin-bottom:20px;
}

.custom-video-player video{
width:100%;
height:520px;
object-fit:cover;
display:block;
background:#000;
}

/* ABOUT */

.about{
background:#0d1b2a;
color:#fff;
text-align:center;
}

.about h2{
font-size:44px;
margin-bottom:30px;
}

.about p{
max-width:900px;
margin:auto;
font-size:19px;
line-height:2;
color:#d8d8d8;
}

/* MAP */

.map iframe{
width:100%;
height:450px;
border:none;
}

/* CONTACT */

.contact{
text-align:center;
}

.contact h2{
font-size:42px;
margin-bottom:30px;
}

.contact p{
font-size:20px;
margin-bottom:15px;
}

/* FLOATING BUTTONS */

.floating{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.float-btn{
width:65px;
height:65px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:28px;
color:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.float-btn:hover{
transform:scale(1.08);
}

.phone{
background:#ff3c38;
}

.wp{
background:#25d366;
}

/* FOOTER */

footer{
background:#09111f;
padding:35px;
text-align:center;
color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.menu{
display:none;
}

.hero{
height:100svh;
background:
linear-gradient(rgba(0,0,0,0.50),rgba(0,0,0,0.50)),
url('hero-mobile.jpg');

background-size:cover;
background-position:center center;
padding-top:90px;
}

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

.hero-subtitle{
font-size:18px;
}

.hero-content p{
font-size:17px;
line-height:1.8;
}

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

.custom-video-player video{
height:420px;
}

.title h2{
font-size:34px;
}

.contact p{
font-size:18px;
}

.float-btn{
width:58px;
height:58px;
font-size:24px;
}

}
