/* ================================ */
/* RESET & GLOBAL STYLES            */
/* ================================ */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; }
html { scroll-behavior: smooth; }
body { background:#fff; color:#333; line-height:1.6; font-size:16px; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:#b76e79; transition:0.3s; }
a:hover { color:#a15a64; }

/* ================================ */
/* CONTAINERS                        */
/* ================================ */
.container { width:90%; max-width:1200px; margin:0 auto; }
.section { padding:80px 0; }

/* ================================ */
/* TYPOGRAPHY                        */
/* ================================ */
h1,h2,h3,h4,h5,h6 { color:#b76e79; font-weight:700; margin-bottom:15px; }
h1 { font-size:3rem; }
h2 { font-size:2.5rem; }
h3 { font-size:2rem; }
p { color:#555; margin-bottom:15px; }

/* ================================ */
/* BUTTONS                            */
/* ================================ */
button, .btn { background:#b76e79; color:#fff; border:none; border-radius:5px; padding:12px 25px; cursor:pointer; font-size:16px; transition:0.3s; }
button:hover, .btn:hover { background:#a15a64; }

/* ================================ */
/* HEADER                            */
/* ================================ */
header { width:100%; background:#fff; padding:15px 0; position:sticky; top:0; z-index:1000; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
header .header-container { display:flex; justify-content:space-between; align-items:center; }
header .logo { max-width:150px; height:auto; display:block; }
nav ul { list-style:none; display:flex; gap:25px; }
nav ul li a { font-weight:500; padding:5px 10px; }
nav ul li a.active { background:#b76e79; color:#fff; border-radius:5px; }

/* ================================ */
/* HAMBURGER MENU                     */
/* ================================ */
.hamburger { display:none; font-size:28px; cursor:pointer; }
.nav-links.active { display:flex; flex-direction:column; position:absolute; top:70px; right:20px; background:#fff; padding:15px; border-radius:5px; box-shadow:0 2px 10px rgba(0,0,0,0.1); }
.nav-links.active li { margin:10px 0; }

/* ================================ */
/* HERO SECTION                       */
/* ================================ */
.hero { min-height:60vh; display:flex; align-items:center; justify-content:center; position:relative; background-size:cover; background-position:center; }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); }
.hero-content { position:relative; text-align:center; color:#fff; padding:20px; max-width:900px; }

/* ================================ */
/* FOOTER                             */
/* ================================ */
footer { background:#f7f7f7; padding:50px 0; text-align:center; }
footer .footer-logo { max-width:120px; height:auto; display:block; margin-bottom:20px; }
footer .footer-links { display:flex; justify-content:center; gap:15px; flex-wrap:wrap; margin-bottom:15px; }
footer .footer-links a.active { background:#b76e79; color:#fff; padding:5px 10px; border-radius:5px; }
footer .footer-contact, footer .footer-social { margin-bottom:15px; }
footer .footer-social a { margin:0 10px; font-size:20px; color:#b76e79; transition:0.3s; }
footer .footer-social a:hover { color:#a15a64; }

/* ================================ */
/* PLACEHOLDER IMAGE CLASSES           */
/* ================================ */
.img-hero { width:100%; height:400px; object-fit:cover; border-radius:10px; }
.img-service { width:100%; height:200px; object-fit:cover; border-radius:10px; }
.img-gallery { width:100%; height:250px; object-fit:cover; border-radius:10px; }
.img-review { width:80px; height:80px; border-radius:50%; object-fit:cover; margin-bottom:10px; }

/* ================================ */
/* MEDIA QUERIES HEADER/FOOTER        */
/* ================================ */
@media(max-width:1024px){ nav ul { gap:15px; } }
@media(max-width:768px){
  .hamburger { display:block; }
  nav ul { display:none; flex-direction:column; position:absolute; top:70px; right:20px; background:#fff; padding:15px; border-radius:5px; box-shadow:0 2px 10px rgba(0,0,0,0.1); }
  nav ul li { margin:10px 0; }
}
/* ================================ */
/* SERVICES SECTION                  */
/* ================================ */
.services-section { padding:80px 0; text-align:center; background:#fff; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; margin-top:40px; }
.service-card { background:#fff; border-radius:15px; padding:25px; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,0.05); transition:0.3s; }
.service-card:hover { transform:translateY(-8px); box-shadow:0 8px 25px rgba(0,0,0,0.1); }
.service-card i { font-size:50px; color:#b76e79; margin-bottom:15px; display:block; }
.service-card h3 { font-size:1.5rem; margin-bottom:10px; color:#333; }
.service-card p { font-size:0.95rem; color:#555; }

/* ================================ */
/* GALLERY SECTION                   */
/* ================================ */
.gallery-section { padding:80px 0; background:#fdfdfd; text-align:center; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; margin-top:40px; }
.gallery-grid img { width:100%; height:250px; object-fit:cover; border-radius:15px; transition:0.3s; cursor:pointer; }
.gallery-grid img:hover { transform:scale(1.05); box-shadow:0 5px 20px rgba(0,0,0,0.15); }

/* ================================ */
/* BOOKING FORM SECTION              */
/* ================================ */
.booking-section { padding:80px 0; background:#fff; text-align:center; }
.booking-form { display:flex; flex-direction:column; gap:20px; max-width:500px; margin:0 auto; }
.booking-form input, .booking-form select, .booking-form button { padding:14px 15px; font-size:16px; border-radius:8px; border:1px solid #ccc; width:100%; }
.booking-form button { background:#b76e79; color:#fff; border:none; cursor:pointer; transition:0.3s; }
.booking-form button:hover { background:#a15a64; }

/* ================================ */
/* REVIEWS SECTION                   */
/* ================================ */
.reviews-section { padding:80px 0; background:#fdfdfd; text-align:center; }
.review-cards { display:flex; flex-wrap:wrap; justify-content:center; gap:25px; margin-top:40px; }
.review-card { background:#fff; border-radius:15px; padding:25px; max-width:300px; box-shadow:0 4px 15px rgba(0,0,0,0.05); transition:0.3s; }
.review-card:hover { transform:translateY(-5px); box-shadow:0 6px 20px rgba(0,0,0,0.1); }
.review-card p { color:#555; font-size:0.95rem; margin-bottom:10px; }
.review-card h4 { color:#333; margin-top:15px; font-weight:600; font-size:1.1rem; }
.stars { margin-bottom:10px; }
.stars i { color:#FFD700; margin-right:3px; font-size:16px; }

/* ================================ */
/* CONTACT SECTION                   */
/* ================================ */
.contact-section { padding:80px 0; background:#fff; text-align:center; }
.contact-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; margin-top:40px; }
.contact-card { background:#fff; border-radius:15px; padding:25px; box-shadow:0 4px 15px rgba(0,0,0,0.05); transition:0.3s; }
.contact-card:hover { transform:translateY(-5px); box-shadow:0 6px 20px rgba(0,0,0,0.1); }
.contact-card i { font-size:40px; color:#b76e79; margin-bottom:15px; display:block; }

/* ================================ */
/* PLACEHOLDER IMAGES & ICONS        */
/* ================================ */
.img-service, .img-gallery, .img-review, .img-contact { border-radius:15px; object-fit:cover; width:100%; }
.service-icon, .contact-icon { font-size:40px; color:#b76e79; display:block; margin-bottom:10px; }
/* ================================ */
/* FLOATING WHATSAPP BUTTON          */
/* ================================ */
.whatsapp-float {
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  padding:18px;
  font-size:26px;
  z-index:1000;
  box-shadow:0 4px 15px rgba(0,0,0,0.3);
  transition:0.3s;
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 20px rgba(0,0,0,0.4); }

/* ================================ */
/* BUTTONS & LINK HOVER ANIMATIONS   */
/* ================================ */
button, .btn, a:hover {
  transition:all 0.3s ease;
}
button:hover, .btn:hover {
  transform:translateY(-3px);
}

/* ================================ */
/* ANIMATIONS & FADE-IN EFFECTS      */
/* ================================ */
.fade-in { opacity:0; animation:fadeIn 1s forwards ease-in-out; }
@keyframes fadeIn { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

.service-card, .review-card, .contact-card, .gallery-grid img { transition:all 0.3s ease; }
.service-card:hover, .review-card:hover, .contact-card:hover, .gallery-grid img:hover { transform:translateY(-5px) scale(1.03); }

/* ================================ */
/* MEDIA QUERIES                     */
/* ================================ */
@media(max-width:1200px){
  h1 { font-size:2.5rem; }
  h2 { font-size:2rem; }
}

@media(max-width:992px){
  .services-grid, .gallery-grid, .review-cards, .contact-grid { grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); }
}

@media(max-width:768px){
  header nav ul { display:none; flex-direction:column; background:#fff; position:absolute; top:70px; right:20px; padding:15px; border-radius:5px; box-shadow:0 4px 20px rgba(0,0,0,0.1);}
  .hamburger { display:block; }
  .hero { min-height:50vh; }
  .services-grid, .gallery-grid, .review-cards, .contact-grid { grid-template-columns:1fr; gap:20px; }
}

@media(max-width:480px){
  h1 { font-size:2rem; }
  h2 { font-size:1.7rem; }
  .service-card i, .contact-card i { font-size:35px; }
  .booking-form input, .booking-form select, .booking-form button { font-size:14px; padding:12px; }
}

/* ================================ */
/* SCROLL ANIMATIONS                 */
/* ================================ */
[data-animate] { opacity:0; transform:translateY(30px); transition:all 0.8s ease-out; }
[data-animate].animate { opacity:1; transform:translateY(0); }