/*========== GOOGLE FONT ==========*/
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

:root{
--primary:#0f3d91;
--secondary:#1f5fd4;
--gold:#d4af37;
--dark:#0d1526;
--light:#f7f9fc;
--white:#fff;
--shadow:0 15px 35px rgba(0,0,0,.12);
}

body{
background:var(--white);
color:#333;
line-height:1.7;
overflow-x:hidden;
}

img{
width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:min(1150px,90%);
margin:auto;
}

section{
padding:90px 0;
}

/*========== HEADER ==========*/

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.97);
backdrop-filter:blur(8px);
box-shadow:0 2px 15px rgba(0,0,0,.08);
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
height:85px;
}

.logo img{
height:120px;
width:auto;
}

nav{
display:flex;
gap:35px;
font-weight:500;
}

nav a{
transition:.3s;
}

nav a:hover{
color:var(--primary);
}

.btn,
.btn-outline{
display:inline-block;
padding:14px 30px;
border-radius:50px;
font-weight:600;
transition:.35s;
}

.btn{
background:linear-gradient(135deg,var(--primary),var(--secondary));
color:#fff;
box-shadow:var(--shadow);
}

.btn:hover{
transform:translateY(-3px);
}

.btn-outline{
border:2px solid var(--primary);
color:var(--primary);
margin-left:12px;
}

.btn-outline:hover{
background:var(--primary);
color:#fff;
}

/*========== HERO ==========*/

.hero{
padding-top:150px;
background:linear-gradient(to right,#edf4ff,#ffffff);
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
align-items:center;
gap:70px;
}

.tag{
display:inline-block;
padding:8px 18px;
background:#dce8ff;
color:var(--primary);
border-radius:30px;
font-size:.9rem;
margin-bottom:20px;
}

.hero h1{
font-size:3.2rem;
line-height:1.15;
color:var(--dark);
margin-bottom:25px;
}

.hero p{
margin-bottom:30px;
font-size:1.05rem;
}

.hero-image img{
border-radius:25px;
box-shadow:var(--shadow);
}

.hero-buttons{
margin-bottom:40px;
}

.stats{
display:flex;
gap:35px;
}

.stats h2{
color:var(--primary);
font-size:2rem;
}

.stats p{
margin:0;
font-size:.9rem;
}

/*========== TITLES ==========*/

.title{
text-align:center;
max-width:700px;
margin:auto auto 60px;
}

.title h2{
font-size:2.4rem;
color:var(--dark);
margin-bottom:15px;
position:relative;
}

.title h2::after{
content:'';
display:block;
width:80px;
height:4px;
background:var(--gold);
margin:15px auto 0;
border-radius:10px;
}

/*========== CARDS ==========*/

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
padding:35px;
background:#fff;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
}

.card i{
font-size:2.5rem;
color:var(--gold);
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
}

/*========== SERVICES ==========*/

.dark{
background:var(--dark);
color:#fff;
}

.dark .title h2{
color:#fff;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.service-grid div{
background:#1b2742;
padding:22px;
border-left:5px solid var(--gold);
border-radius:12px;
transition:.3s;
font-weight:500;
}

.service-grid div:hover{
background:var(--primary);
transform:translateY(-5px);
}

/*========== GALLERY ==========*/

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery img{
height:260px;
object-fit:cover;
border-radius:15px;
transition:.35s;
box-shadow:var(--shadow);
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.04);
}

/*========== CTA ==========*/

.cta{
background:linear-gradient(135deg,var(--primary),var(--secondary));
color:#fff;
text-align:center;
}

.cta h2{
font-size:2.4rem;
margin-bottom:15px;
}

.cta p{
margin-bottom:35px;
}

/*========== CONTACT ==========*/

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-grid h3{
margin-bottom:25px;
color:var(--primary);
}

.contact-grid p{
margin-bottom:20px;
}

.contact-grid i{
color:var(--gold);
margin-right:10px;
}

form{
display:flex;
flex-direction:column;
gap:18px;
}

input,
textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:1rem;
outline:none;
}

textarea{
height:170px;
resize:none;
}

button{
border:none;
cursor:pointer;
}

/*========== FOOTER ==========*/

footer{
background:#08101d;
color:#bbb;
text-align:center;
padding:40px 0;
}

footer img{
height:70px;
width:auto;
margin:auto auto 15px;
}

/*========== WHATSAPP ==========*/

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:1.8rem;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/*========== RESPONSIVE ==========*/

@media(max-width:900px){

nav{
display:none;
}

.hero-grid,
.cards,
.contact-grid,
.gallery{
grid-template-columns:1fr;
}

.hero{
text-align:center;
}

.hero h1{
font-size:2.4rem;
}

.stats{
justify-content:center;
}

.btn-outline{
margin-left:0;
margin-top:15px;
display:inline-block;
}

.gallery img{
height:220px;
}

}

/* Reveal Animation */
.hidden{
opacity:0;
transform:translateY(40px);
transition:.8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* Gallery Popup */
.popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.85);
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
padding:20px;
}

.popup-content{
position:relative;
max-width:900px;
width:100%;
}

.popup-content img{
width:100%;
border-radius:15px;
box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.close{
position:absolute;
top:-15px;
right:-15px;
width:40px;
height:40px;
background:#fff;
color:#000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:bold;
cursor:pointer;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:992px){

.container{
width:92%;
}

.hero-grid,
.cards,
.contact-grid,
.gallery{
grid-template-columns:1fr;
gap:35px;
}

.hero{
padding-top:120px;
text-align:center;
}

.hero-image{
order:-1;
}

.hero-image img{
max-width:500px;
margin:auto;
}

.stats{
justify-content:center;
flex-wrap:wrap;
}

.gallery{
grid-template-columns:repeat(2,1fr);
}

}


/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

section{
padding:70px 0;
}

header{
padding:8px 0;
}

.nav{
height:70px;
}

.logo img{
height:70px;
}

nav{
display:none;
}

.btn{
padding:14px 26px;
font-size:.95rem;
}

.hero{
padding-top:100px;
}

.hero h1{
font-size:2rem;
line-height:1.25;
}

.hero p{
font-size:.95rem;
}

.hero-buttons{
display:flex;
flex-direction:column;
gap:15px;
align-items:center;
}

.btn-outline{
margin:0;
}

.stats{
gap:25px;
margin-top:20px;
}

.stats h2{
font-size:1.6rem;
}

.title{
margin-bottom:40px;
}

.title h2{
font-size:1.9rem;
}

.cards{
gap:20px;
}

.card{
padding:28px;
}

.service-grid{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
gap:18px;
}

.gallery img{
height:230px;
}

.contact-grid{
gap:40px;
}

input,
textarea{
font-size:16px;
padding:14px;
}

textarea{
height:150px;
}

footer img{
height:55px;
}

.whatsapp{
width:58px;
height:58px;
right:18px;
bottom:18px;
font-size:1.6rem;
}

.popup{
padding:15px;
}

.close{
top:-10px;
right:-10px;
}

}


/* ===========================
   SMALL PHONES
=========================== */

@media (max-width:480px){

.container{
width:94%;
}

.hero{
padding-top:90px;
}

.hero h1{
font-size:1.7rem;
}

.hero p{
font-size:.9rem;
}

.tag{
font-size:.75rem;
padding:6px 14px;
}

.title h2{
font-size:1.6rem;
}

.card{
padding:24px;
}

.gallery img{
height:200px;
}

.cta h2{
font-size:1.6rem;
}

.stats{
flex-direction:column;
gap:15px;
}

.stats div{
background:#fff;
padding:15px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
width:180px;
margin:auto;
}

.whatsapp{
width:55px;
height:55px;
}

}