*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  list-style:none;
  text-decoration:none;
}

html, body{
overflow-x:hidden;
max-width:100%;
} 

body{
  font-family:'Poppins', sans-serif;
  background:#FDECEF;
  margin: 0;
    padding: 0;
    overflow-x:hidden;
}

/* ==================== Navbar ====================== */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 4%;
  background:#FFFFFF;
  border: #383737;
  box-shadow:0 0 15px rgba(0,0,0,0.5);
  position:relative;
  z-index:1000;
}

.logo img{
    width: 3rem;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links li{
  list-style:none;
}

.nav-links li a{
  color:#5C4033;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-links li a::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background:#D4AF37;
  transition:0.4s;
}

.nav-links li a:hover::after{
  width:100%;
}

.nav-links li a:hover{
  color:#6B8E6E;
}

.logo h2{
  color: #c89b3c;
  font-size: 20px;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:#6B8E6E;
  cursor:pointer;
}

/* Floating Buttons */

.floating-buttons{
position:fixed;
right:15px;
bottom:30px;
display:flex;
flex-direction:column;
gap:2px;
z-index:999;
}

.call-btn,
.whatsapp-btn{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
border-radius:50%;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
transition:.4s;
}

.call-btn{
background:#19d9b9;
}

.whatsapp-btn{
background:#25D366;
}

.call-btn:hover{
transform:translateY(-5px);
background:#b8962e;
}

.whatsapp-btn:hover{
transform:translateY(-5px);
background:#1ebe5d;
}

@media(max-width:600px){

.call-btn,
.whatsapp-btn{
width:48px;
height:48px;
font-size:18px;
}

}

/* ================= HERO SECTION ================= */
.hero{
position:relative;
height: 100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
opacity:0;
transition:opacity 1.5s ease-in-out;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.hero-content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
color:white;
max-width:550px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:65px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content span{
color:#c89b3c;
}

.hero-content p{
font-size:18px;
margin-bottom:35px;
line-height:1.6;
}

.hero-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
text-decoration:none;
border-radius:40px;
font-size:16px;
}

/* <!-- ================= ABOUT US SECTION ================= --> */
.about{
padding:120px 8%;
background:#fffaf4;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.about-images{
flex:1;
position:relative;
min-width:300px;
}

.about-images img{
width:80%;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:0;
border:8px solid white;
}

.about-content{
flex:1;
min-width:300px;
}

.section-tag{
color:#c89b3c;
font-weight:500;
letter-spacing:2px;
margin-bottom:15px;
}
.about-content h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
color:#222;
}

.about-content span{
color:#c89b3c;
}

.about-content p{
font-size:17px;
line-height:1.8;
color:#555;
margin-bottom:25px;
}

.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-bottom:35px;
}

.feature{
background:white;
padding:15px 20px;
border-radius:40px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
font-size:15px;
}

.about-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
text-decoration:none;
border-radius:40px;
font-size:16px;
transition:.4s;
}

.about-btn:hover{
background:#a67c29;
}

/* <!-- ================= SERVICES SECTION ================= --> */
.services{
padding:50px 8%;
background:#fffaf4;
text-align:center;
}

.services h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.services-subtitle{
max-width:600px;
margin:0 auto 60px;
color:#666;
font-size:16px;
}

.services h2 span{
color:#c89b3c;
}

.services-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:50px 30px;
border-radius:30px;
transition:.45s ease;
position:relative;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.service-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,#c89b3c22,#ffffff);
opacity:0;
transition:.4s;
}

.service-card:hover::after{
opacity:1;
}

.service-card:hover{
transform:translateY(-12px) scale(1.02);
box-shadow:0 25px 50px rgba(0,0,0,0.18);
}

.service-icon{
width:85px;
height:85px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 25px;
font-size:38px;
background:linear-gradient(135deg,#c89b3c,#e6c06a);
color:white;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
transition:.4s;
}

.service-card:hover .service-icon{
transform:rotate(10deg) scale(1.08);
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
font-family:'Playfair Display',serif;
}

.service-card p{
font-size:15px;
color:#666;
line-height:1.7;
}

/* ================= GALLERY ================= */
.gallery{
padding:80px 8%;
background:white;
text-align:center;
}

.gallery h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.gallery h2 span{
color:#c89b3c;
}

.gallery-subtitle{
max-width:650px;
margin:0 auto 60px;
color:#666;
font-size:16px;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.gallery-card{
position:relative;
overflow:hidden;
border-radius:25px;
cursor:pointer;
}

.gallery-card img{
width:100%;
height:380px;
/* object-fit:cover; */
transition:.6s ease;
}

.gallery-overlay{
position:absolute;
inset:0;
background:linear-gradient(transparent,#00000090);
display:flex;
align-items:flex-end;
padding:25px;
opacity:0;
transition:.5s;
}

.gallery-overlay h4{
color:white;
font-size:20px;
font-family:'Playfair Display',serif;
}

.gallery-card:hover img{
transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}

/* ================= WHY CHOOSE US ================= */
.why-choose{
padding:80px 8%;
background:#fffaf4;
}

.why-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.why-content{
flex:1;
min-width:300px;
}

.why-content h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.why-content h2 span{
color:#c89b3c;
}

.why-content p{
color:#666;
line-height:1.8;
margin-bottom:35px;
}

.why-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.why-box{
background:white;
padding:22px 25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.4s;
}

.why-box:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.why-box h4{
font-size:15px;
margin-bottom:6px;
font-family:'Playfair Display',serif;
}

.why-box span{
color:#c89b3c;
margin-right:8px;
}

.why-image{
flex:1;
min-width:300px;
}

.why-image img{
width:100%;
border-radius:30px;
box-shadow:0 15px 45px rgba(0,0,0,0.15);
}

/* ================= CONTACT US ================= */
.contact{
padding:120px 8%;
background:white;
}

.contact-container{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
}

.contact-info{
flex:1;
min-width:300px;
}

.contact-info h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.contact-info h2 span{
color:#c89b3c;
}

.contact-info p{
color:#666;
margin-bottom:35px;
line-height:1.8;
}

.contact-details div{
margin-bottom:20px;
font-size:16px;
color:#444;
}

.contact-details span{
color:#c89b3c;
font-weight:600;
margin-right:8px;
}

.contact-form{
flex:1;
min-width:300px;
background:#fffaf4;
padding:45px 35px;
border-radius:30px;
box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px 18px;
margin-bottom:20px;
border:none;
border-radius:40px;
font-size:15px;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.contact-form textarea{
height:130px;
border-radius:20px;
resize:none;
}

.contact-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
border:none;
border-radius:40px;
font-size:16px;
cursor:pointer;
transition:.4s;
}

.contact-btn:hover{
background:#a67c29;
}

/* ================= FOOTER ================= */
.unique-footer{
position:relative;
padding:100px 8%;
background:url("/images/footer.png") center/cover no-repeat;
color:white;
overflow:hidden;
}

.unique-footer::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.55); 
z-index:0;
}

.footer-wrapper,
.footer-bottom{
position:relative;
z-index:1;
}

.footer-wrapper{
position:relative;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-brand h2{
font-family:'Playfair Display',serif;
font-size:28px;
margin-bottom:15px;
color:#D4AF37;
}

.footer-brand p{
font-size:15px;
line-height:1.7;
max-width:320px;
}

.footer-links h4{
margin-bottom:18px;
font-size:18px;
font-family:'Playfair Display',serif;
}

.footer-links a{
display:block;
margin-bottom:10px;
color:white;
font-size:14px;
transition:.3s;
}

.footer-links a:hover{
color:#D4AF37;
padding-left:6px;
}

.footer-contact p{
font-size:14px;
margin-bottom:10px;
}

.footer-social{
margin-top:15px;
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
margin-right:10px;
background:#D4AF37;
color:white;
border-radius:50%;
transition:.4s;
}

.footer-social a:hover{
background:white;
color:#6B8E6E;
transform:translateY(-4px);
}

.footer-bottom{
margin-top:50px;
text-align:center;
font-size:14px;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:18px;
}


/* ========================= Responsive ========================= */

/* 1024px */
@media screen and (max-width:1024px){
  .navbar{
    padding: 22px 4%;
  }
    .nav-links{
    gap:25px;
  }

  .hero{
    height: 85vh;
  }

  .hero-content h1{
font-size:48px;
}

.about-content h2{
font-size:36px;
}

.gallery-container{
grid-template-columns:repeat(3,1fr);
}

}

/* 768px */
@media(max-width:768px){
  .navbar{
    padding: 15px 4%;
  }
  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    display:none;
    padding:30px;
    gap:1.5rem;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    height: 80vh;
  }
  .hero-content{
left:5%;
max-width:90%;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:0;
border:8px solid white;
}

.logo h2{
  color: #c89b3c;
  font-size: 18px;
}

.services-container{
grid-template-columns:repeat(2,1fr);
}

.services h2{
font-size:36px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

.gallery h2{
font-size:36px;
}

.why-content h2{
font-size:36px;
}

.why-features{
grid-template-columns:1fr 1fr;
}

.contact-info h2{
font-size:36px;
}

.footer-wrapper{
grid-template-columns:1fr 1fr;
}
}

/* 480px */
@media(max-width:480px){
  .logo h2{
    font-size: 15px;
  }

  .navbar{
    padding:10px 5%;
  }

  .hero{
    height: 45vh;
  }
  .hero-content h1{
font-size:30px;
}

.hero-btn{
padding:12px 30px;
font-size:14px;
}

.about{
padding:60px 6%;
}

.section-tag{
color:#c89b3c;
font-weight:500;
letter-spacing:2px;
margin-bottom:15px;
}
.about-content h2{
  font-size: 25px;
margin-bottom:10px;
}

.about-content span{
color:#c89b3c;
}

.about-content p{
font-size: 12px;
margin-bottom:15px;
}

.about-features{
grid-template-columns:1fr;
gap:10px;
}

.feature{
padding:10px 15px;
font-size:12px;
}

.about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:20px;
border:8px solid white;
}

.about-btn{
padding:12px 30px;
font-size:12px;
}

.services{
padding:40px 6%;
}

.services-container{
grid-template-columns:1fr;
}

.services h2{
font-size:30px;
}

.service-card{
padding:30px 30px;
}

.service-card h3{
  font-size: 20px;
}

.service-card p{
  font-size: 12px;
}

.gallery{
padding:50px 6%;
}

.gallery-container{
grid-template-columns:1fr;
}

.gallery h2{
font-size:30px;
}

.gallery-card img{
height: 400px;
}

.why-choose{
padding:50px 6%;
}

.why-features{
grid-template-columns:1fr;
}

.why-content h2{
font-size:30px;
}

.contact{
padding:50px 6%;
}

.contact-info h2{
font-size:30px;
}

.unique-footer{
background:url("/images/download.png") center/cover no-repeat;
text-align: left;
}

.unique-footer{
padding:60px 7% 20px;
}

.footer-wrapper{
grid-template-columns:1fr;
text-align:left;
}

.footer-brand p{
margin:auto;
}
}

@media(max-width:375px){
    .hero{
        height: 40vh;
    }
}

@media(max-width:320px){
    .hero{
        height: 35vh;
    }
}