/* ------------------------------
   Global Reset & Base Styles
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #323232;
}

/* ------------------------------
   Slider Section
------------------------------ */
.slider-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.carousel-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(15, 15, 15, 0.5);
  z-index: 1;
}

.slider-overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(15, 15, 15, 0.65);
  padding: 18px 15px;
  border-radius: 10px;
  max-width: 800px;
  width: 95%;
  z-index: 2;
  color: white;
  text-align: center;
}

.slider-overlay-box h5,
.slider-overlay-box h2 {
  color: white;
}

.slider-overlay-box .fs-5 {
  font-size: 1.05rem;
}

/* ------------------------------
   Popup Overlay
------------------------------ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

.popup-content {
  width: 90%;
  max-width: 500px;
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  flex-direction: row;
  max-height: 98vh;
}

.popup-left {
  width: 20%;
  background: #f9f5ee;
  color: #d0a33c;
  padding: 20px;
  text-align: center;
}

.popup-left h5 {
  font-weight: bold;
  margin-bottom: 12px;
}

.popup-icon {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.popup-icon span {
  font-size: 14px;
  margin-top: 5px;
  color: #d0a33c;
}

.popup-right {
  width: 100%;
  padding: 10px 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

.popup-logo {
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.popup-right h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.popup-right p {
  font-size: 11px;
  margin-bottom: 15px;
  text-align: center;
}

.highlight {
  color: #e53935;
  font-weight: bold;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row select {
  width: 40%;
}

.phone-row input {
  width: 60%;
}

.gold-btn {
  background: linear-gradient(to right, #aa8e47, #d9b85c);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.consent-text {
  font-size: 8px;
  color: #333;
  margin-top: 10px;
}

.footer-contact {
  background-color: #aa8e47;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    width: 95%;
    max-width: 95%;
    max-height: 95vh;
    overflow-y: auto;
  }

  .popup-left {
    display: none;
  }

  .popup-right {
    padding: 20px 15px;
  }

  .popup-logo {
    max-width: 160px;
    margin: 0 auto 15px;
  }

  .phone-row {
    flex-direction: column;
  }

  .phone-row select,
  .phone-row input {
    width: 100%;
  }

  .gold-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .consent-text {
    font-size: 11px;
    text-align: justify;
  }

  .footer-contact {
    font-size: 14px;
  }

  .close-btn {
    top: 8px;
    right: 12px;
    font-size: 24px;
  }
}

/* ------------------------------
   Swiper Styles
------------------------------ */
.swiper-slide {
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  border: 2px solid #a0792d;
  border-radius: 50%;
  background-color: transparent;
  color: #a0792d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #a0792d;
  color: white;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

/* ------------------------------
   Theme Colors
------------------------------ */
:root {
  --primary: #ac8a3f !important;
  --bs-primary: #ac8a3f !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* ------------------------------
   Other UI Components
------------------------------ */
.text-pink {
  color: #e83e8c;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 40px;
  text-decoration: none;
  z-index: 9999;
}