
*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      background:#fff;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    ul{
      list-style:none;
    }

    /* ================= NAVBAR ================= */



.navbar{
  width:100%;
  height:90px;
  position:fixed;
  top:0;
  left:0;
  background:#fff;
  z-index:1000;
  padding:10px 7%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-side{
  width:33.33%;
  display:flex;
  align-items:center;
}

.nav-left{
  justify-content:flex-start;
}

.nav-right{
  justify-content:flex-end;
}


/* LOGO IMAGE */
.logo{
  display:flex;
  align-items:center;
 
}

.logo img{
    height: 135px;
    width: auto;
    object-fit: contain;
}

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
  padding:0;
  margin:0;
}


.nav-links a{
  color:#111;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  transition:.3s;
}

.nav-links a:hover{
  color:#c89b3c;
}

.book-btn{
  padding:12px 28px;
  border:2px solid #0d1b3f;
  border-radius:40px;
  color:#0d1b3f;
  font-weight:600;
  text-decoration:none;
  transition:.4s;
}

.book-btn:hover{
  background:#0d1b3f;
  color:#fff;
}

    .logo .gold{
      color:#c89b3c;
      font-size:14px;
      font-weight:700;
    }

    .logo span{
      color:#c89b3c;
    }

    .nav-links{
      display:flex;
      gap:35px;
    }

    .nav-links a{
      color:#111;
      font-size:15px;
      font-weight:500;
      transition:.3s;
    }

    .nav-links a:hover{
      color:#c89b3c;
    }

    .book-btn{
      padding:12px 28px;
      border:2px solid #0d1b3f;
      border-radius:40px;
      color:#0d1b3f;
      font-weight:600;
      transition:.4s;
    }

    .book-btn:hover{
      background:#0d1b3f;
      color:#fff;
    }

    /* ================= HERO SECTION ================= */

    .hero{
      width:100%;
      height:100vh;
      background:
      linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
      url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1974&auto=format&fit=crop');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:0 20px;
    }

    .hero-content h1{
      color:#fff;
      font-size:75px;
      font-weight:800;
      line-height:1.1;
      margin-bottom:20px;
      text-transform:uppercase;
    }

    .hero-content p{
      color:#fff;
      font-size:18px;
      max-width:800px;
      margin:auto;
      line-height:1.8;
    }

    .hero-btns{
      margin-top:35px;
    }

    .hero-btns a{
      display:inline-block;
      padding:14px 35px;
      background:#c89b3c;
      color:#fff;
      font-weight:600;
      border-radius:5px;
      transition:.4s;
    }

    .hero-btns a:hover{
      background:#fff;
      color:#111;
    }

    /* ================= BOOKING SECTION ================= */

    .booking{
      width:85%;
      background:#fff;
      margin:-60px auto 0;
      position:relative;
      z-index:10;
      padding:35px;
      box-shadow:0 10px 30px rgba(0,0,0,0.1);
      border-radius:10px;
    }

    .booking-form{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:20px;
    }

    .booking-form input,
    .booking-form select{
      width:100%;
      height:60px;
      padding:0 15px;
      border:1px solid #ddd;
      outline:none;
      font-size:15px;
    }

    .booking-form button{
      border:none;
      background:#000;
      color:#fff;
      font-size:16px;
      font-weight:600;
      cursor:pointer;
      transition:.4s;
    }

    .booking-form button:hover{
      background:#c89b3c;
    }

    /* ================= ABOUT ================= */

    .about{
      padding:120px 7%;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:50px;
      align-items:center;
    }

    .about img{
      width:100%;
      border-radius:10px;
    }

    .about-text h2{
      font-size:45px;
      margin-bottom:20px;
      color:#111;
    }

    .about-text p{
      color:#666;
      line-height:1.9;
      margin-bottom:20px;
    }

    /* ================= SERVICES ================= */

    .services{
      padding:100px 7%;
      background:#f8f8f8;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:45px;
      color:#111;
    }

    .service-box{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
    }

    .service-card{
      background:#fff;
      overflow:hidden;
      border-radius:10px;
      transition:.4s;
      box-shadow:0 5px 20px rgba(0,0,0,0.06);
      display:flex;
      flex-direction:column;
    }

    .service-card:hover{
      transform:translateY(-10px);
      box-shadow:0 15px 35px rgba(0,0,0,0.15);
    }

    .service-image{
      width:100%;
      height:250px;
      overflow:hidden;
    }

    .service-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.4s;
    }

    .service-card:hover .service-image img{
      transform:scale(1.1);
    }

    .service-card h3{
      margin-bottom:10px;
      font-size:22px;
      padding:20px 20px 0 20px;
      color:#111;
    }

    .service-card p{
      color:#666;
      line-height:1.8;
      padding:0 20px;
      margin-bottom:15px;
      font-size:14px;
    }

    .service-btn{
      margin:10px 20px 20px 20px;
      padding:12px 25px;
      background:#c89b3c;
      color:#fff;
      border:none;
      border-radius:5px;
      font-weight:600;
      cursor:pointer;
      transition:.4s;
      font-size:14px;
    }

    .service-btn:hover{
      background:#0d1b3f;
      transform:scale(1.05);
    }

    /* ================= GALLERY ================= */

    .gallery{
      padding:100px 7%;
    }

    .gallery-box{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }

    .gallery-item{
      position:relative;
      width:100%;
      height:300px;
      overflow:hidden;
      border-radius:10px;
      cursor:pointer;
    }

    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.4s;
    }

    .gallery-item:hover img{
      transform:scale(1.1);
    }

    .gallery-overlay{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:rgba(200,155,60,0.8);
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      transition:.4s;
    }

    .gallery-item:hover .gallery-overlay{
      opacity:1;
    }

    .gallery-overlay h4{
      color:#fff;
      font-size:22px;
      font-weight:700;
      text-align:center;
      text-transform:uppercase;
      letter-spacing:1px;
    }
    /* ================= TESTIMONIALS ================= */

.testimonials{
  padding:100px 7%;
  background:#f8f8f8;
  overflow:hidden;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:45px;
  color:#111;
  margin-bottom:10px;
}

.section-title p{
  color:#666;
  font-size:16px;
}

.testimonials-container{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding-bottom:10px;
}

.testimonials-container::-webkit-scrollbar{
  display:none;
}

.testimonial-card{
  min-width:350px;
  background:#fff;
  border-radius:20px;
  padding:35px;
  flex:0 0 auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.4s;
  border:1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover{
  transform:translateY(-10px);
}

.testimonial-stars{
  display:flex;
  gap:5px;
  color:#c89b3c;
  margin-bottom:20px;
  font-size:18px;
}

.testimonial-quote{
  font-size:15px;
  color:#444;
  line-height:1.9;
  margin-bottom:25px;
  font-style:italic;
}

.testimonial-user{
  display:flex;
  align-items:center;
  gap:15px;
}

.testimonial-user img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-user h4{
  font-size:17px;
  color:#111;
  margin-bottom:4px;
}

.testimonial-user span{
  color:#777;
  font-size:14px;
}

/* MOBILE */

/* @media(max-width:768px){

  .testimonial-card{
    min-width:280px;
    padding:25px;
  }

  .section-title h2{
    font-size:34px;
  }

} */

  
    /* ================= FAQ SECTION ================= */

.faq{
  padding:100px 7%;
  background:#fff;
}

.faq-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.05);
}

.faq-question{
  width:100%;
  padding:22px 25px;
  background:#fff;
  border:none;
  outline:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:17px;
  font-weight:600;
  color:#111;
  transition:.3s;
}

.faq-question:hover{
  background:#f8f8f8;
}

.faq-icon{
  font-size:24px;
  color:#c89b3c;
  font-weight:700;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  background:#fff;
}

.faq-answer p{
  padding:0 25px 22px;
  color:#666;
  line-height:1.8;
  font-size:15px;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

/* MOBILE */

@media(max-width:768px){

  .faq{
    padding:80px 5%;
  }

  .faq-question{
    font-size:15px;
    padding:18px 20px;
  }

  .faq-answer p{
    font-size:14px;
    padding:0 20px 18px;
  }

}



  
    /* ================= CONTACT ================= */

    .contact{

      padding:100px 7%;
      background:#111;
      color:#fff;
      text-align:center;
    }

    .contact h2{
      font-size:45px;
      margin-bottom:50px;
    }

    .contact-container{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      margin-bottom:60px;
      align-items:start;
    }

    .contact-info{
      display:flex;
      flex-direction:column;
      gap:30px;
      text-align:left;
    }

    .info-item{
      display:flex;
      gap:20px;
      align-items:flex-start;
      background:rgba(255,255,255,0.05);
      padding:25px;
      border-radius:10px;
      border-left:4px solid #c89b3c;
    }

    .info-item i{
      font-size:28px;
      color:#c89b3c;
      flex-shrink:0;
      margin-top:5px;
    }

    .info-item div{
      flex:1;
    }

    .info-item h4{
      font-size:18px;
      margin-bottom:8px;
      color:#fff;
    }

    .info-item p{
      color:#ddd;
      font-size:14px;
      margin:0;
    }

    .copy-btn{
      background:none;
      border:none;
      color:#c89b3c;
      cursor:pointer;
      font-size:16px;
      padding:5px 10px;
      margin-left:10px;
      transition:.3s;
      display:inline-block;
    }

    .copy-btn:hover{
      transform:scale(1.2);
      color:#fff;
    }

    .contact-form-wrapper{
      background:rgba(255,255,255,0.05);
      padding:35px;
      border-radius:10px;
      text-align:left;
    }

    .contact-form-wrapper h3{
      font-size:24px;
      margin-bottom:25px;
      color:#fff;
    }

    .contact-form{
      display:flex;
      flex-direction:column;
      gap:15px;
    }

    .contact-form input,
    .contact-form textarea{
      width:100%;
      padding:15px;
      background:#222;
      border:1px solid #c89b3c;
      border-radius:5px;
      color:#fff;
      font-family:'Poppins',sans-serif;
      font-size:14px;
      outline:none;
      transition:.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus{
      border-color:#fff;
      background:#333;
    }

    .contact-form textarea{
      resize:vertical;
    }

    .submit-btn{
      padding:14px 28px;
      background:#c89b3c;
      color:#111;
      border:none;
      border-radius:5px;
      font-weight:600;
      cursor:pointer;
      font-size:16px;
      transition:.4s;
    }

    .submit-btn:hover{
      background:#fff;
    }

    #formStatus{
      margin-top:15px;
      font-size:14px;
      text-align:center;
      min-height:20px;
    }

    .form-success{
      color:#4ade80;
    }

    .form-error{
      color:#f87171;
    }

    .social-links{
      margin-top:40px;
      padding-top:40px;
      border-top:1px solid rgba(255,255,255,0.1);
    }

    .social-links h4{
      font-size:18px;
      margin-bottom:20px;
      color:#fff;
    }

    .social-links a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:50px;
      height:50px;
      background:#c89b3c;
      color:#111;
      border-radius:50%;
      margin:0 10px;
      transition:.4s;
      font-size:20px;
    }

    .social-links a:hover{
      background:#fff;
      transform:translateY(-5px);
    }

    /* ================= FOOTER ================= */

    footer{
      background:linear-gradient(135deg, #000 0%, #1a1a1a 100%);
      color:#fff;
      padding:60px 7%;
      font-size:14px;
    }

    .footer-container{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:40px;
      margin-bottom:40px;
      max-width:1400px;
      margin-left:auto;
      margin-right:auto;
    }

    .footer-section h3{
      font-size:20px;
      font-weight:700;
      margin-bottom:20px;
      color:#c89b3c;
    }

    .footer-section p{
      color:#ddd;
      line-height:1.8;
      margin-bottom:12px;
      font-size:14px;
    }

    .footer-section ul{
      list-style:none;
    }

    .footer-section ul li{
      margin-bottom:12px;
    }

    .footer-section ul li a{
      color:#ddd;
      transition:.3s;
      text-decoration:none;
    }

    .footer-section ul li a:hover{
      color:#c89b3c;
      padding-left:5px;
    }

    .footer-social{
      display:flex;
      gap:15px;
      margin-top:20px;
    }

    .footer-social a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:45px;
      height:45px;
      background:#c89b3c;
      color:#000;
      border-radius:50%;
      transition:.4s;
      font-size:18px;
    }

    .footer-social a:hover{
      background:#fff;
      transform:translateY(-5px);
    }

    .footer-section i{
      color:#c89b3c;
      margin-right:10px;
      font-size:16px;
    }

    .footer-bottom{
      text-align:center;
      padding-top:30px;
      border-top:1px solid rgba(255,255,255,0.1);
      color:#999;
    }

    .footer-bottom p{
      margin:0;
    }

    .footer-bottom a{
      color:#c89b3c;
      text-decoration:none;
      transition:.3s;
    }

    .footer-bottom a:hover{
      color:#fff;
    }

    /* ================= MOBILE ================= */

 /* ================= MOBILE NAVBAR FIX ================= */

.menu-toggle{
  display:none;
}

@media(max-width:768px){

  /* NAVBAR */
  .navbar{
    width:100%;
    height:80px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction:row !important;
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    z-index:9999;
  }

  /* LOGO LEFT */
  .logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
  }

  .logo img{
    height:70px;
    width:auto;
    object-fit:contain;
  }

  /* TOGGLE RIGHT */
  .menu-toggle{
    display:block !important;
    font-size:32px;
    color:#111;
    cursor:pointer;
    z-index:10000;
  }

  /* HIDE DESKTOP MENU */
  .nav-left,
  .nav-right{
    display:none;
  }

  /* SHOW MENU */

  /* MENU LINKS */
  /* .nav-links{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
  } */

  /* .nav-links li{
    list-style:none;
  } */

  /* .nav-links a{
    color:#111;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
  } */ */
/* ================= MOBILE RESPONSIVE FIX ================= */

.menu-toggle{
  display:none;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* NAVBAR */
  .navbar{
    width:100%;
    height:80px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    z-index:9999;
  }

  /* LOGO */
  .logo{
    display:flex;
    align-items:center;
  }

  .logo img{
    height:65px;
    width:auto;
  }

  /* TOGGLE */
  .menu-toggle{
    display:block;
    font-size:32px;
    color:#111;
    cursor:pointer;
    z-index:10000;
  }

  /* MENU */
  .nav-side{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:20px 0;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
  }

  .nav-side.active{
    display:block;
  }

  /* LINKS */
  .nav-links{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
    width:100%;
  }

  .nav-links li{
    list-style:none;
  }

  .nav-links a{
    font-size:18px;
    font-weight:600;
    color:#111;
    text-decoration:none;
  }

  /* BOOK NOW */
  .book-btn{
    display:inline-block;
    padding:12px 24px;
    border:2px solid #0d1b3f;
    border-radius:40px;
  }

  /* HERO */
  .hero{
    padding-top:80px;
  }

  .hero-content h1{
    font-size:42px;
    line-height:1.2;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  /* SERVICES */
  .service-box{
    grid-template-columns:1fr;
  }

  /* ABOUT */
  .about{
    grid-template-columns:1fr;
  }

  /* GALLERY */
  .gallery-box{
    grid-template-columns:1fr;
  }

  /* TESTIMONIALS */
  .testimonial-card{
    min-width:280px;
  }

  /* CONTACT */
  .contact-container{
    grid-template-columns:1fr;
  }

  /* FOOTER */
  .footer-container{
    grid-template-columns:1fr;
  }

}
  /* BOOK BUTTON */
  .book-btn{
    display:inline-block !important;
    padding:12px 24px;
    border:2px solid #0d1b3f;
    border-radius:40px;
    margin-top:10px;
  }

  /* HERO SECTION */
  .hero{
    padding-top:80px;
  }

  .hero-content h1{
    font-size:48px;
    line-height:1.1;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.7;
  }

  /* FLOATING ICONS */
  .floating{
    width:55px;
    height:55px;
    right:15px;
  }

  .call{
    bottom:90px;
  }

  .whatsapp{
    bottom:20px;
  }

}
    /* FLOATING ICONS */
.floating{
  position:fixed;
  right:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 15px rgba(0, 0, 0, 0.96);
  z-index:9999;
  transition:0.3s ease;
  animation:float 2s ease-in-out infinite;
}

/* WHATSAPP */
.whatsapp{
  bottom:20px;
  background:#25D366;
}

/* CALL */
.call{
  bottom:95px;
  background:#0935a6;
}

/* ICON SIZE */
.floating img{
  width:28px;
  height:28px;
}

/* HOVER EFFECT */
.floating:hover{
  transform:scale(1.12);
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-8px);
  }
  100%{
    transform:translateY(0px);
  }
}
.map-section{
  width:100%;
  overflow:hidden;
}

.map-section iframe{
  width:100%;
  display:block;
  filter:grayscale(10%);
}
