/*==========================
RESET
===========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#f6f5f2;
color:#222;
overflow-x:hidden;
line-height:1.6;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:min(92%,1280px);
margin:auto;

}

/*==========================
COLORS
===========================*/

:root{

--primary:#b22222;
--secondary:#202020;
--green:#25D366;
--white:#fff;
--light:#fafafa;
--shadow:0 20px 60px rgba(0,0,0,.12);

}

/*==========================
BUTTONS
===========================*/

.btn{

display:inline-flex;
align-items:center;
gap:12px;

padding:18px 36px;

border-radius:60px;

font-size:17px;

font-weight:600;

transition:.35s;

}

.red{

background:var(--primary);
color:#fff;

}

.green{

background:var(--green);
color:#fff;

}

.red:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(178,34,34,.3);

}

.green:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(37,211,102,.25);

}

/*==========================
HEADER
===========================*/

.header{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:95%;

z-index:999;

}

.header .container{

background:rgba(255,255,255,.94);

backdrop-filter:blur(18px);

padding:18px 30px;

display:flex;

align-items:center;

justify-content:space-between;

border-radius:22px;

box-shadow:0 15px 50px rgba(0,0,0,.08);

}

.logo{

display:flex;

align-items:center;

gap:18px;

color:#111;

}

.logo img{

width:68px;

}

.logo h2{

font-size:34px;

color:var(--primary);

font-weight:700;

line-height:1;

}

.logo p{

color:#666;

font-size:15px;

margin-top:5px;

}

nav ul{

display:flex;

gap:38px;

}

nav a{

color:#222;

font-weight:500;

position:relative;

}

nav a::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

width:0;

height:2px;

background:var(--primary);

transition:.4s;

}

nav a:hover::after{

width:100%;

}

.header-btn a{

background:var(--primary);

color:#fff;

padding:16px 30px;

border-radius:60px;

display:flex;

align-items:center;

gap:10px;

font-weight:600;

transition:.3s;

}

.header-btn a:hover{

background:#931616;

}

.mobile-menu{

display:none;

font-size:28px;

cursor:pointer;

}

/*==========================
HERO
===========================*/

.hero{

height:760px;

position:relative;

overflow:hidden;

display:flex;

align-items:center;

}

.hero-image{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(0,0,0,.72),

rgba(0,0,0,.35)

);

}

.hero-wrapper{

position:relative;

z-index:2;

display:grid;

grid-template-columns:1fr 520px;

align-items:center;

gap:80px;

margin-top: 110px;

}

.hero-left{

color:#fff;

}

.hero-left span{

display:inline-block;

background:rgba(255,255,255,.15);

padding:12px 22px;

border-radius:50px;

margin-bottom:25px;

backdrop-filter:blur(10px);

}

.hero-left h1{

font-size:82px;

line-height:.95;

font-weight:800;

margin-bottom:30px;

letter-spacing:-2px;

}

.hero-left p{

font-size:20px;

max-width:620px;

opacity:.95;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

/*==========================
HERO CARD
===========================*/

.hero-card{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:0 30px 70px rgba(0,0,0,.22);

}

.hero-card img{

object-fit:contain;

}

.hero-card-content{

padding:30px;

}

.hero-card-content h3{

font-size:28px;

margin-bottom:10px;

}

.hero-card-content p{

color:#666;

}

/*==========================
SCROLL
===========================*/

.scroll-down{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

z-index:5;

font-size:24px;

color:#fff;

animation:down 2s infinite;

}

@keyframes down{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}

/*==========================
ABOUT
===========================*/

.about{

padding:120px 0;
background:#fff;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title h2{

font-size:54px;
font-weight:700;
color:#222;
margin-bottom:12px;

}

.section-title p{

font-size:18px;
color:#777;

}

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-image{

border-radius:28px;
overflow:hidden;
box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-image img{

height:600px;
object-fit:cover;
transition:.6s;

}

.about-image:hover img{

transform:scale(1.08);

}

.about-content h3{

font-size:48px;
line-height:1.2;
margin-bottom:25px;

}

.about-content p{

font-size:18px;
color:#666;
margin-bottom:30px;

}

.about-content ul{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:40px;

}

.about-content li{

display:flex;
align-items:center;
gap:12px;
font-size:17px;
font-weight:500;

}

.about-content li i{

color:var(--primary);
font-size:20px;

}

/*==========================
GALLERY
===========================*/

.gallery-section{

padding:120px 0;
background:#f7f7f7;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}

.gallery-item{

border-radius:26px;
overflow:hidden;
position:relative;
background:#fff;
box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.gallery-item img{

width:100%;
height:330px;
object-fit:cover;
transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item::after{

content:"";
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.25),transparent);
opacity:0;
transition:.4s;

}

.gallery-item:hover::after{

opacity:1;

}

/*==========================
VIDEO
===========================*/

.video-section{

padding:120px 0;
background:#fff;

}

.video-wrapper{

max-width:1050px;
margin:auto;
overflow:hidden;
border-radius:30px;
box-shadow:0 35px 80px rgba(0,0,0,.15);

}

.video-wrapper video{

width:100%;
display:block;
max-height:600px;
object-fit:cover;
background:#000;

}

/*==========================
FEATURES
===========================*/

.features{

padding:120px 0;
background:#f5f5f5;

}

.feature-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.feature-box{

background:#fff;
padding:45px 30px;
border-radius:24px;
text-align:center;
transition:.35s;
box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box i{

width:90px;
height:90px;
margin:auto;
margin-bottom:25px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:#fdeeee;

color:var(--primary);

font-size:36px;

}

.feature-box h3{

font-size:24px;
margin-bottom:15px;

}

.feature-box p{

color:#666;
font-size:16px;

}

/*==========================
EMERGENCY CTA
===========================*/

.emergency{

padding:100px 0;

background:linear-gradient(135deg,#b22222,#8c1515);

color:#fff;

}

.emergency-wrap{

display:flex;
justify-content:space-between;
align-items:center;
gap:50px;

}

.emergency h2{

font-size:58px;
margin-bottom:15px;

}

.emergency p{

font-size:20px;
opacity:.95;

}

.cta-buttons{

display:flex;
gap:18px;
flex-wrap:wrap;

}

.emergency .red{

background:#fff;
color:#b22222;

}

.emergency .green{

background:#25D366;
color:#fff;

}
/*=========================================
FOOTER
=========================================*/

footer{

background:#111;
color:#fff;
padding:80px 0 30px;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr;
gap:80px;
align-items:start;

}

.footer-logo{

width:80px;
margin-bottom:20px;

}

footer h3{

font-size:34px;
margin-bottom:15px;

}

footer h4{

font-size:24px;
margin-bottom:20px;

}

footer p{

color:#bbb;
font-size:16px;
line-height:1.8;

}

footer ul{

display:flex;
flex-direction:column;
gap:15px;

}

footer ul a{

color:#ddd;
display:flex;
align-items:center;
gap:12px;
transition:.3s;

}

footer ul a:hover{

color:#fff;
padding-left:8px;

}

footer ul i{

color:var(--primary);

}

.copyright{

margin-top:60px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.12);
text-align:center;
font-size:15px;
color:#999;

}

/*=========================================
FLOATING BUTTONS
=========================================*/

.floating-buttons{

position:fixed;
right:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;

}

.floating-buttons a{

width:65px;
height:65px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

font-size:28px;

color:#fff;

box-shadow:0 15px 35px rgba(0,0,0,.18);

transition:.35s;

}

.floating-buttons .call{

background:#b22222;

}

.floating-buttons .whatsapp{

background:#25D366;

}

.floating-buttons a:hover{

transform:translateY(-8px) scale(1.08);

}

/*=========================================
HEADER SCROLL
=========================================*/

.header.active{

top:10px;

}

.header.active .container{

padding:15px 28px;
box-shadow:0 20px 60px rgba(0,0,0,.15);

}

/*=========================================
ANIMATIONS
=========================================*/

.fade-up{

opacity:0;
transform:translateY(70px);
transition:1s;

}

.fade-up.show{

opacity:1;
transform:translateY(0);

}

.gallery-item,
.about-image,
.hero-card,
.feature-box,
.video-wrapper{

transition:.45s;

}

.gallery-item:hover,
.about-image:hover,
.hero-card:hover{

transform:translateY(-10px);

}

.feature-box:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*=========================================
MOBILE MENU
=========================================*/

@media(max-width:1100px){

.mobile-menu{

display:block;

}

nav{

position:absolute;
top:105%;
left:0;

width:100%;

background:#fff;

border-radius:20px;

padding:25px;

display:none;

box-shadow:0 20px 60px rgba(0,0,0,.12);

}

nav.active{

display:block;

}

nav ul{

flex-direction:column;
gap:20px;

}

.header-btn{

display:none;

}

.hero-wrapper{

grid-template-columns:1fr;
text-align:center;

}

.hero-left{

display:flex;
flex-direction:column;
align-items:center;

}

.hero-right{

margin-top:40px;

}

.hero-card{

max-width:420px;
margin:auto;

}

.about-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.emergency-wrap{

flex-direction:column;
text-align:center;

}

.footer-grid{

grid-template-columns:1fr;
text-align:center;

}

footer ul{

align-items:center;

}

}

/*=========================================
TABLET
=========================================*/

@media(max-width:768px){


.foot-img {
        text-align: -webkit-center;
}

.hero{

height:auto;
padding:140px 0 80px;

}

.hero-image{

height:100%;

}

.hero-left h1{

font-size:52px;

}

.hero-left p{

font-size:17px;

}

.hero-card img{

height:340px;

}

.section-title h2{

font-size:38px;

}

.about-content h3{

font-size:34px;

}

.about-image img{

height:400px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item img{

height:280px;

}

.feature-grid{

grid-template-columns:1fr;

}

.emergency h2{

font-size:38px;

}

.cta-buttons{

justify-content:center;

}

.footer-grid{

gap:40px;

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:576px){

.container{

width:92%;

}

.header{

width:96%;

}

.header .container{

padding:14px 18px;

}

.logo img{

width:50px;

}

.logo h2{

font-size:24px;

}

.logo p{

font-size:12px;

}

.hero{

padding:120px 0 60px;

}

.hero-left span{

font-size:13px;

padding:10px 18px;

}

.hero-left h1{

font-size:38px;
letter-spacing:0;

}

.hero-left p{

font-size:15px;

margin-bottom:30px;

}

.hero-buttons{

flex-direction:column;
width:100%;

}

.hero-buttons .btn{

width:100%;
justify-content:center;

}

.hero-card{

display:none;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:30px;

}

.about{

padding:70px 0;

}

.about-content ul{

grid-template-columns:1fr;

}

.video-wrapper{

border-radius:18px;

}

.emergency{

padding:70px 0;

}

.emergency h2{

font-size:30px;

}

.emergency p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons .btn{

width:100%;
justify-content:center;

}

.floating-buttons{

right:15px;
bottom:15px;

}

.floating-buttons a{

width:56px;
height:56px;
font-size:22px;

}

}
/* Ripple */

.btn{

position:relative;
overflow:hidden;

}

.ripple{

position:absolute;
border-radius:50%;
background:rgba(255,255,255,.4);
transform:scale(0);
animation:ripple .6s linear;
pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);
opacity:0;

}

}