* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Playfair Display", serif;
    background: #fff;
  }
  .container-1680 {
    max-width: 1680px;
    margin: auto;
    padding: 0 40px;
  }
  /* ================= HEADER ================= */
  
  .main-header {
    width: 100%;
    padding: 10px 0 0;
    background: #fff;
  }
  
  .header-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* LOGO FIX */
  .logo img {
    max-height: 130px;      /* 🔴 IMPORTANT */
    width: auto;
    display: block;
  }
  
  /* DESKTOP NAV */
  .main-nav {
    display: flex;
    gap: 28px;
  }
  
  .main-nav a {
    text-decoration: none;
    font-size: 19px;
    color: #333;
  }
  
  /* SOCIAL */
  .header-social {
    display: flex;
    gap: 14px;
  }
  
  .header-social a {
    color: #111;
    font-size: 19px;
  }
  
  /* TOGGLE */
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  /* ================= MOBILE MENU ================= */
  
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.35s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
   
  }
  
  .close-btn {
    font-size: 22px;
    cursor: pointer;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-nav a {
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
  }
  
  /* OVERLAY */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.3s;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media (max-width: 991px) {
    .main-nav,
    .header-social {
        display: none;
    }
  
    .menu-toggle {
        display: block;
    }
  
    .logo img {
        max-width: 149px;
        margin-left: -30px;
    }
  }




  /* ================= FOOTER ================= */

.site-footer {
    background: #f8f8f8;
    padding: 90px 0 30px;
    font-family: "Playfair Display", serif;
}

.footer-container {
    max-width: 1680px;      /* 🔴 IMPORTANT */
    margin: auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr) 1.2fr;
    align-items: start;
}

/* LOGO */
.footer-logo img {
    max-width: 160px;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-links a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
}

/* SOCIAL */
.footer-social h4 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 22px;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
    max-width: 1680px;
    margin: 60px auto 0;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    color: #555;
}

/* ================= RESPONSIVE ================= */

/* LAPTOP */
@media (max-width: 1280px) {
    .footer-container {
        padding: 0 40px;
        grid-template-columns: 1fr repeat(3, 1fr) 1fr;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        gap: 16px;
    }
}


.contact-modal {
    padding: 40px;
    border-radius: 0;
}

.modal-title {
    font-size: 36px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.modal-desc {
    color: #777;
    max-width: 500px;
    margin: auto;
}

.custom-input,
.custom-textarea {
    border: 2px solid #ddd;
    padding: 14px 16px;
    border-radius: 0;
    font-size: 12px;
}

.custom-input:focus,
.custom-textarea:focus {
    border-color: #ff2f63;
    box-shadow: none;
}

.btn-request {
    background: #ff2f63;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-request:hover {
    background: #e52656;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
}
.hero-ornament {
    margin: 18px 0 28px;
  }
  
  .hero-ornament img {
    width: 70px;          /* desktop perfect */
    height: auto;
    display: block;
  }


  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
  }
  
  @media (max-width: 575px) {
    .whatsapp-float {
      width: 52px;
      height: 52px;
      right: 16px;
      bottom: 16px;
    }
  }
  