*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* TOP BAR */

.top-bar{
background:#0a1628;
font-size:13px;
}

.top-bar-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 20px;
}

.top-bar a{
color:#fff;
text-decoration:none;
margin-right:18px;
display:flex;
gap:6px;
align-items:center;
}

.top-bar a:hover{
color:#f0c060;
}


/* HEADER */

.header{
background:#fff;
box-shadow:0 2px 30px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:999;
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:70px;
}

/* LOGO */

.logo img{
height:60px;
}


/* MENU */

.nav-menu ul{
display:flex;
gap:25px;
list-style:none;
align-items:center;
}

.nav-menu a{
text-decoration:none;
font-size:14px;
font-weight:500;
color:#1a1a2e;
}

.nav-menu a:hover{
color:#c9993a;
}

/* DROPDOWN */

.menu-item{
position:relative;
}

.nav-menu .dropdown{
position:absolute;
top:100%;
left:0;
min-width:220px;
background:#fff;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
border-radius:8px;
display:none;
}

.dropdown li{
list-style:none;
}

.dropdown a{
display:block;
padding:10px 18px;
border-bottom:1px solid #eee;
}

.menu-item:hover .dropdown{
display:block;
}

/* BUTTON */

.quote-btn{
background:linear-gradient(135deg,#c9993a,#f0c060);
padding:10px 20px;
border-radius:40px;
text-decoration:none;
color:#000;
font-weight:600;
}

/* MOBILE */

.menu-toggle{
display:none;
background:none;
border:none;
font-size:22px;
cursor:pointer;
}

.mobile-menu{
display:none;
position:fixed;
top:70px;
left:0;
right:0;
bottom:0;
background:#fff;
padding:20px;
overflow:auto;
}

.mobile-menu a{
display:block;
padding:14px 0;
border-bottom:1px solid #eee;
text-decoration:none;
color:#1a1a2e;
}

.mobile-title{
font-size:12px;
color:#777;
margin-top:15px;
}

.mobile-cta{
background:#c9993a;
padding:12px;
border-radius:10px;
text-align:center;
margin-top:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

.nav-menu{
display:none;
}
.nav-right {
	display: flex;
}
.menu-toggle{
display:block;
}

.mobile-menu.active{
display:block;
}

}


/*Hero*/
.hero{
position:relative;
min-height:90vh;
display:flex;
align-items:center;
background:url(images/banner.jpeg)
center/cover no-repeat;
padding:120px 20px;
color:white;
overflow:hidden;
}

/* overlay */

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(10,22,40,0.9),
rgba(10,22,40,0.6)
);
}

/* grid */

.hero-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 420px;
gap:70px;
position:relative;
z-index:2;
}

/* text */

.hero-badge{
background:rgba(255,255,255,0.1);
padding:6px 14px;
border-radius:20px;
font-size:12px;
display:inline-block;
margin-bottom:20px;
}

.hero-content h1{
font-size:56px;
line-height:1.1;
margin-bottom:20px;
}

.hero-content h1 span{
color:#f0c060;
display:block;
}

.hero-content p{
opacity:.85;
margin-bottom:30px;
line-height:1.6;
}

/* buttons */

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
}

.btn{
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
position:relative;
overflow:hidden;
display:inline-block;
}

/* CALL BUTTON */

.btn-call{
background:#f0c060;
color:#0a1628;
}

.btn-call::before{
content:"";
position:absolute;
left:-100%;
top:0;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.5),
transparent
);
transition:.6s;
}

.btn-call:hover::before{
left:100%;
}

.btn-call:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* OUTLINE BUTTON */

.btn-outline{
border:1px solid white;
color:white;
}

.btn-outline::before{
content:"";
position:absolute;
inset:0;
background:#c9993a;
transform:scaleX(0);
transform-origin:left;
transition:.4s;
z-index:-1;
}

.btn-outline:hover::before{
transform:scaleX(1);
}

.btn-outline:hover{
color:#0a1628;
}

/* stats */

.hero-stats{
display:flex;
gap:40px;
}

.stat strong{
font-size:28px;
color:#f0c060;
display:block;
}

.stat span{
font-size:12px;
opacity:.8;
}

/* form */

.hero-form{
background:white;
padding:30px;
border-radius:14px;
color:#222;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.hero-form h3{
margin-bottom:20px;
}

.hero-form input,
.hero-form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.hero-form button{
width:100%;
padding:14px;
background:#0a1628;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.hero-form button:hover{
background:#c9993a;
color:black;
}

/* reveal animation */

.reveal{
opacity:0;
transform:translateY(40px);
}

/* responsive */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:40px;
}

.form-row{
grid-template-columns:1fr;
}

}

/**/

.trust-section{
padding:80px 20px;
background:#f5f7fb;
}

.container{
max-width:1200px;
margin:auto;
}

/* GRID */

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-bottom:40px;
}

/* CARD */

.trust-box{
background:white;
padding:30px;
border-radius:14px;
text-align:center;
transition:.4s;
position:relative;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.trust-box:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ICON */

.trust-icon{
width:65px;
height:65px;
margin:auto;
margin-bottom:15px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
background:linear-gradient(135deg,#c9993a,#f0c060);
color:#0a1628;
position:relative;
transition:.4s;
}

.trust-box:hover .trust-icon{
transform:scale(1.2) rotate(8deg);
}

/* TEXT */

.trust-box h3{
font-size:17px;
margin-bottom:5px;
color:#0a1628;
}

.trust-box p{
font-size:13px;
color:#666;
}

/* LOCATION */

.trust-location{
background:linear-gradient(135deg,#0a1628,#1a3a6e);
padding:35px;
border-radius:16px;
display:flex;
gap:20px;
align-items:center;
color:white;
box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.location-icon{
width:60px;
height:60px;
border-radius:50%;
background:#f0c060;
color:#0a1628;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
flex-shrink:0;
}

.trust-location h3{
margin-bottom:6px;
}

/* RESPONSIVE */

@media(max-width:900px){

.trust-grid{
grid-template-columns:1fr 1fr;
}

.trust-location{
flex-direction:column;
text-align:center;
}

}

@media(max-width:500px){

.trust-grid{
grid-template-columns:1fr;
}
.logo img {
	height: 40px;
}

}

/**/
.about-section{
padding:100px 20px;
background:#f8f9fc;
}

.container{
max-width:1200px;
margin:auto;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* IMAGE */

.about-image{
position:relative;
}

.about-image img{
width:100%;
border-radius:16px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* EXPERIENCE BADGE */

.about-experience{
position:absolute;
bottom:-20px;
right:20px;
background:linear-gradient(135deg,#c9993a,#f0c060);
padding:25px;
border-radius:12px;
text-align:center;
color:#0a1628;
font-weight:bold;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.about-experience span{
font-size:34px;
display:block;
}

/* CONTENT */

.about-tag{
color:#c9993a;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
display:inline-block;
}

.about-content h2{
font-size:38px;
margin-bottom:20px;
color:#0a1628;
}

.about-content h2 span{
color:#c9993a;
}

.about-content p{
color:#555;
margin-bottom:16px;
line-height:1.7;
}

/* FEATURES */

.about-features{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin:30px 0;
}

.feature{
display:flex;
gap:14px;
background:white;
padding:16px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.feature:hover{
transform:translateY(-5px);
}

.feature-icon{
width:45px;
height:45px;
background:linear-gradient(135deg,#0a1628,#1a3a6e);
display:flex;
align-items:center;
justify-content:center;
border-radius:8px;
color:#f0c060;
font-size:18px;
}

/* BUTTON */

.about-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:#c9993a;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
color:#0a1628;
font-weight:600;
transition:.3s;
}

.about-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */

@media(max-width:900px){

.about-wrapper{
grid-template-columns:1fr;
}

.about-content h2{
font-size:30px;
}

.about-features{
grid-template-columns:1fr;
}

}
.reveal-left{
opacity:0;
transform:translateX(-60px);
transition:.7s;
}

.reveal-right{
opacity:0;
transform:translateX(60px);
transition:.7s;
}

.reveal-left.active,
.reveal-right.active{
opacity:1;
transform:translateX(0);
}

.why-section{
padding:100px 20px;
background:#f6f7fb;
}

.why-header{
text-align:center;
margin-bottom:60px;
}

.why-header h2{
font-size:36px;
color:#0a1628;
margin-bottom:10px;
}

.why-header p{
color:#666;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:#fff;
padding:35px 25px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.4s;
position:relative;
overflow:hidden;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.why-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:15px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#0a1628,#1a3a6e);
color:#f0c060;
font-size:26px;
transition:.4s;
}

.why-card:hover .why-icon{
transform:rotate(10deg) scale(1.1);
}

.why-card h4{
margin-bottom:8px;
color:#0a1628;
font-size:17px;
}

.why-card p{
font-size:13px;
color:#666;
line-height:1.5;
}

/* animation */

.reveal{
opacity:0;
transform:translateY(40px);
transition:0.7s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* responsive */

@media(max-width:1000px){
.why-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.why-grid{
grid-template-columns:1fr;
}
}


.services-section{
padding:100px 20px;
background:#fff;
}

.container{
max-width:1200px;
margin:auto;
}

.services-header{
text-align:center;
margin-bottom:60px;
}

.section-tag{
color:#c9993a;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
}

.services-header h2{
font-size:36px;
margin:10px 0;
color:#0a1628;
}

.services-header h2 span,.text_hilight{
color:#c9993a;
}

.services-header p{
color:#666;
max-width:600px;
margin:auto;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.service-img{
height:200px;
overflow:hidden;
}

.service-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.service-card:hover img{
transform:scale(1.08);
}

.service-content{
padding:25px;
}

.service-content h3{
font-size:18px;
margin-bottom:10px;
color:#0a1628;
}

.service-content p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.service-content a{
color:#c9993a;
font-weight:600;
text-decoration:none;
}

.service-content a:hover{
text-decoration:underline;
}

/* responsive */

@media(max-width:900px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}


/**/
.why-unique{
padding:110px 20px;
background:#f7f8fb;
}

.why-wrap{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* LEFT IMAGE */

.why-visual{
position:relative;
}

.why-visual img{
width:100%;
border-radius:18px;
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

.why-badge{
position:absolute;
bottom:-25px;
right:20px;
background:#c9993a;
color:#0a1628;
padding:22px 28px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 35px rgba(0,0,0,0.25);
}

.why-badge strong{
font-size:28px;
display:block;
}

/* FEATURES */

.why-features{
display:flex;
flex-direction:column;
gap:25px;
}

.why-row{
display:flex;
gap:18px;
padding:20px;
border-radius:12px;
background:white;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.35s;
}

.why-row:hover{
transform:translateX(8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.why-row i{
width:48px;
height:48px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
background:#0a1628;
color:#f0c060;
font-size:20px;
flex-shrink:0;
}

.why-row h4{
margin-bottom:5px;
color:#0a1628;
}

.why-row p{
font-size:14px;
color:#666;
}

/* stagger effect */

.offset{
margin-left:40px;
}

/* responsive */

@media(max-width:900px){

.why-wrap{
grid-template-columns:1fr;
}

.offset{
margin-left:0;
}

}

/**/
.process-zigzag{
padding:100px 20px;
background:#fff;
}

.container{
max-width:1100px;
margin:auto;
}

.process-head{
text-align:center;
margin-bottom:60px;
}

.process-head h2{
font-size:36px;
color:#0a1628;
margin-bottom:10px;
}

.process-head p{
color:#666;
}

.process-flow{
position:relative;
}

.process-flow::before{
content:"";
position:absolute;
left:50%;
top:0;
height:0;
width:4px;
background:#c9993a;
transform:translateX(-50%);
transition:height 1.2s ease;
}

/* when active */

.process-flow.active::before{
height:100%;
}

.step{
display:flex;
align-items:center;
margin-bottom:60px;
position:relative;
}

.step-left{
justify-content:flex-start;
}

.step-right{
justify-content:flex-end;
}

.step-content{
width:45%;
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.3s;
}

.step-content:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.step-content i{
font-size:28px;
color:#c9993a;
margin-bottom:10px;
}

.step-number{
position:absolute;
left:50%;
transform:translateX(-50%);
background:#c9993a;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
font-size:18px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
.step-number{
animation:pulseDot 2s infinite;
}

@keyframes pulseDot{

0%{box-shadow:0 0 0 0 rgba(201,153,58,0.6)}

70%{box-shadow:0 0 0 15px rgba(201,153,58,0)}

100%{box-shadow:0 0 0 0 rgba(201,153,58,0)}

}
.process-flow::after{
content:"🚚";
position:absolute;
left:50%;
top:0;
transform:translateX(-50%);
animation:moveTruck 5s linear infinite;
}

@keyframes moveTruck{

0%{top:0}

100%{top:100%}

}
/* responsive */

@media(max-width:768px){

.process-flow::before,
.process-flow::after{
left: 0;
}

.step{
justify-content:center;
}

.step-content{
width:100%;
}

.step-number {
	position: relative;
	margin-bottom: 10px;
	left: 0;
	flex: 0 0 60px;
}

}

/**/
.gallery-section{
padding:100px 20px;
background:#f7f8fb;
}

.container{
max-width:1200px;
margin:auto;
}

.gallery-head{
text-align:center;
margin-bottom:60px;
}

.gallery-head h2{
font-size:36px;
color:#0a1628;
}

.gallery-head p{
color:#666;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
grid-auto-rows:220px;
gap:15px;
}

.gallery-item{
display:block;
overflow:hidden;
border-radius:12px;
position:relative;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.tall{
grid-row:span 2;
}

.wide{
grid-column:span 2;
}

@media(max-width:900px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.gallery-grid{
grid-template-columns:1fr;
}
.btn{font-size: 12px;padding: 11px 23px;}
.hero {
	padding-left: 0;
	padding-right: 0;
}
.why-header h2,.about-content h2,.services-header h2,
.process-head h2,.gallery-head h2,
.testimonial-head h2 {font-size: 28px;}

}



.testimonial-section{
padding:110px 20px;
background:#fff;
background: linear-gradient(160deg, #fdf8f0 0%, #eef3fb 100%);
}

.container{
max-width:1200px;
margin:auto;
}

.testimonial-head{
text-align:center;
margin-bottom:60px;
}

.testimonial-head h2{
font-size:36px;
color:#0a1628;
margin-bottom:10px;
}

.testimonial-head p{
color:#666;
}

.testimonial-card{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.4s;
position:relative;
}

.testimonial-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-stars{
color:#f4b400;
font-size:18px;
margin-bottom:15px;
}

.testimonial-card p{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

.testimonial-user{
display:flex;
align-items:center;
gap:12px;
}

.testimonial-user img{
width:50px;
height:50px;
border-radius:50%;
object-fit:cover;
}

.testimonial-user h4{
margin:0;
font-size:16px;
color:#0a1628;
}

.testimonial-user span{
font-size:13px;
color:#888;
}

/**/
.cta-map-section{
padding:100px 20px;
background:linear-gradient(135deg,#0a1628,#1c3d6b);
color:white;
}

.cta-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.cta-left h2{
font-size:40px;
margin-bottom:15px;
}

.cta-left p{
color:#d3d8e5;
line-height:1.7;
margin-bottom:30px;
}

.cta-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.cta-btn{
padding:14px 28px;
border-radius:40px;
font-weight:600;
text-decoration:none;
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
}

.call-btn{
background:#c9993a;
color:#0a1628;
}

.call-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.whatsapp-btn{
background:#25D366;
color:white;
}

.whatsapp-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* map */

.cta-map iframe{
width:100%;
height:350px;
border-radius:16px;
border:none;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* responsive */

@media(max-width:900px){

.cta-container{
grid-template-columns:1fr;
}

.cta-map iframe{
height:300px;
}

}
/**/
.footer{

background:#0a1628;
color:#d6dbe6;
padding:80px 20px 0;

}

.footer-container{

max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;

}

.footer-logo{

width:160px;
margin-bottom:15px;

}

.footer-col h3{

color:#ffffff;
margin-bottom:20px;

}

.footer-col p{

line-height:1.7;
font-size:14px;

}

.footer-col ul{

list-style:none;
padding:0;

}

.footer-col ul li{

margin-bottom:10px;

}

.footer-col ul li a{

color:#d6dbe6;
text-decoration:none;
transition:0.3s;

}

.footer-col ul li a:hover{

color:#c9993a;
padding-left:5px;

}

/* social */

.footer-social{

margin-top:15px;
display:flex;
gap:10px;

}

.footer-social a{

width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
background:#1b2d4a;
border-radius:50%;
color:white;
transition:0.3s;
font-size: 0;
}

.footer-social a:hover{

background:#c9993a;
transform:translateY(-3px);

}
.footer-social a:hover i{color: #fff;}

/* contact icons */

.footer-col i{

color:#c9993a;
margin-right:0px;
font-size: 12px;

}

/* bottom */

.footer-bottom{

margin-top:50px;
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:20px;
font-size:14px;

}

/* responsive */

@media(max-width:900px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.footer-container{

grid-template-columns:1fr;

}

}

/**/
.quote-popup{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
backdrop-filter:blur(6px);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;

opacity:0;
visibility:hidden;
transition:0.4s;

}

.quote-popup.active{

opacity:1;
visibility:visible;

}

.popup-container{

background:#fff;
padding:35px;
width:90%;
max-width:420px;
border-radius:14px;
position:relative;
box-shadow:0 30px 80px rgba(0,0,0,0.3);
animation:popupAnim 0.4s ease;

}

.popup-logo img {
	height: 40px;
}
.popup-logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 14px;
	margin-bottom: 15px;
}
@keyframes popupAnim{

from{
transform:translateY(40px);
opacity:0;
}

to{
transform:translateY(0);
opacity:1;
}

}

.popup-close{

position:absolute;
top:12px;
right:15px;
font-size:26px;
background:none;
border:none;
cursor:pointer;
color:#888;

}

.popup-close:hover{

color:#000;

}

.popup-container h2{

margin-bottom:8px;
color:#0a1628;

}

.popup-container p{

font-size:14px;
color:#666;
margin-bottom:20px;

}

.form-group{

margin-bottom:12px;

}

.form-group input,
.form-group textarea{

width:100%;
padding:11px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;

}

.form-group textarea{

min-height:70px;
resize:vertical;

}

.popup-submit{

width:100%;
padding:12px;
background:#c9993a;
border:none;
border-radius:6px;
color:#fff;
font-weight:600;
cursor:pointer;

}

.popup-submit:hover{

background:#b5872d;

}

/**/
/* MENU BUTTON */

.menu-toggle{
display:none;
font-size:22px;
background:none;
border:none;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{

position:fixed;
top:0;
right:-100%;
width:280px;
height:100%;
background:#fff;
box-shadow:-5px 0 30px rgba(0,0,0,0.2);
padding:30px 20px;
transition:0.4s;
z-index:9999;
overflow-y:auto;

}

/* OPEN STATE */

.mobile-menu.active{
right:0;
}

/* LINKS */

.mobile-menu a{
display:block;
padding:12px 0;
text-decoration:none;
color:#333;
font-size:15px;
border-bottom:1px solid #eee;
}

/* TITLE */

.mobile-title{
margin-top:20px;
font-weight:700;
font-size:13px;
color:#999;
text-transform:uppercase;
}

/* CTA BUTTON */

.mobile-cta{
background:#c9993a;
color:#fff !important;
text-align:center;
padding:12px;
margin-top:20px;
border-radius:6px;
font-weight:600;
}

/* OVERLAY */

.menu-overlay{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(3px);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:9998;

}

.menu-overlay.active{

opacity:1;
visibility:visible;

}

/* MOBILE BREAKPOINT */

@media(max-width:900px){

.menu-toggle{
display:block;
}

}

.floating-contact{

position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;

}

.float-btn{

width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
text-decoration:none;
box-shadow:0 8px 25px rgba(0,0,0,0.25);
transition:0.3s;

}

/* CALL BUTTON */

.float-btn.call{

background:#0a1628;

}

/* WHATSAPP BUTTON */

.float-btn.whatsapp{

background:#25D366;

}

/* HOVER EFFECT */

.float-btn:hover{

transform:scale(1.1);

}

/* PULSE ANIMATION */

.float-btn.whatsapp{

animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.6);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}