/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.logo {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #83a17e;
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.login {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.book-btn {
  background: #83a17e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #83a17e;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("your-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 80px;
}
.overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)); */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #4e4d4b;
}

.hero h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 50px !important;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #fff !important;
}

/* Search Bar */
.search-bar {
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #333;
  padding: 8px 10px;
}

.search-bar i {
  color: #555;
  font-size: 18px;
}

/* Wedding Dreams Section */
.dreams {
  text-align: center;
  padding: 80px 20px;
}

.dreams h2 {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 400;
  color: #4e4d4b;
  margin-bottom: 20px;
}

.dreams p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-size: 16px;
  color: #4e4d4b;
}

.dream-btn {
  background: #83a17e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.dream-btn:hover {
  background: #caa94d;
}
/* Destination Section */
.destination {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
}

.destination h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 40px;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.destination p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Chat Button */
.chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #83a17e;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: 28px;
  }
  .dreams h2 {
    font-size: 30px;
  }
}
/* ---------- WEDDING FESTIVITIES ---------- */
.wedding-section {
  text-align: center;
  background: linear-gradient(to bottom, #fdeaea, #fff);
  padding: 4rem 2rem;
}

.wedding-section h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #3a2b2b;
}

.wedding-section p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5b4a4a;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tabs button {
  background: transparent;
  border: none;
  /* font-family: 'Playfair Display', serif; */
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  color: #604020;
  padding: 0.5rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tabs button:hover,
.tabs .active {
  border-bottom: 2px solid #b8996f;
  color: #b8996f;
}

.image-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
}

.image-container h2 {
  /* font-family: 'Playfair Display', serif; */
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  color: #4e4d4b;
  font-size: 1.3rem;
}

/* ---------- DESTINATION WEDDINGS ---------- */
.destination-section {
  background: linear-gradient(to bottom, #fff, #fdeaea);
  text-align: center;
  padding: 4rem 2rem;
}

.destination-section h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.destination-section p {
  max-width: 750px;
  margin: 0 auto 3rem;
  color: #4e4d4b;
  font-size: 1.1rem;
}

.destination-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.destination-gallery .left,
.destination-gallery .right {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.destination-gallery h3 {
  /* font-family: 'Playfair Display', serif; */
  color: #604020;
}

.destination-gallery button {
  border: 1px solid #b8996f;
  background: transparent;
  color: #b8996f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.destination-gallery button:hover {
  background: #b8996f;
  color: #fff;
}

.destination-gallery .center {
  flex: 2;
  max-width: 600px;
}

.destination-gallery img {
  width: 100%;
  border-radius: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
  }

  .destination-gallery {
    flex-direction: column;
  }

  .image-container h2 {
    font-size: 1.1rem;
  }
}
/*-----*/

.pageHero.-type-2 {
  position: relative;
  display: flex;
  align-items: center;
  height: 70vh;
  z-index: 0;
}
.bg-light-1 {
  background: #ffffef !important;
  padding-bottom: 40px !important;
  margin: 20px 0px;
}

.hero.-type-4 {
  padding-top: 0px;
}

.venue {
  padding-top: 40px;
}

.venue-1 {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .layout-pt-lg {
    padding-top: 16px;
  }

  .venue {
    padding-top: 16px;
  }

  .venue-1 {
    padding-top: 80px;
  }

  .hero.-type-4 {
    padding-top: 20px;
  }
}

.venue-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 405px;
}

.venue-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  color: #fff;
  z-index: 2;
}

.venue-overlay h5 {
  font-weight: 400;
  color: #fff;
}

.venue-overlay small {
  color: #ddd;
}

.venue-overlay p {
  color: #ccc;
  font-size: 0.95rem;
}

.venue-overlay * {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.venue-card {
  background-color: #1f1f1f;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Needed for overlay */
  overflow: hidden;
}

.venue-card:hover {
  transform: scale(1.02);
}

.venue-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay is now absolute over the image */
.venue-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  z-index: 1;
}

@media (max-width: 768px) {
  .venue-img-wrapper {
    height: 200px;
  }
}

.tall-img {
  height: 834.64px;
  /* You can increase this further if you want */
}

@media (max-width: 768px) {
  .venue-img-wrapper {
    height: 250px;
  }

  .tall-img {
    height: 525.59px;
  }
  .dreams p {
    text-align: justify !important;
    color: #4e4d4b;
  }
}

.hero-about-slider .swiper-slide {
  margin-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
}

.hero-about-slider .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-wrapper {
  width: 100%;
  max-width: 100%;
  /* margin: -80px auto; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* border:0.1px solid #b8956a59; */
  border-top: 1px solid #83a17e !important;
  border-bottom: 1px solid #83a17e !important;
  position: relative;
  overflow: hidden;
  background: #180a0a00;
  border-radius: 10px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.slide-container {
  display: flex;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  width: 300%;
}

.slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 60px;
  opacity: 0.3;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  max-width: 900px;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 1s ease;
}

.slide.active img {
  transform: scale(1.03);
}

.caption {
  margin-top: 30px;
  padding: 20px;
}

.caption h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.caption p {
  /* font-family: "Poppins", sans-serif; */
  font-size: 16px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .side {
    display: none;
  }
  .slide img {
    height: 380px;
  }
  .caption h2 {
    font-size: 22px;
  }
  .caption p {
    font-size: 15px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .caption h2 {
    font-size: 20px;
  }
  .caption p {
    font-size: 14px;
    line-height: 1.6;
  }
  .slide img {
    height: 250px;
  }
}
.nav-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #83a17e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #83a17e;
  transform: scale(1.1);
  color: white;
}

.arrow {
  font-size: 24px;
  color: #ffff !important;
  transition: color 0.3s ease;
}

.nav-button:hover .arrow {
  color: #fff;
}
/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* Popup box */
.popup {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 250px auto;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #b89b5e;
  border-radius: 6px;
}

.popup h2 {
  text-align: center;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

input,
select,
textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid lightgrey !important;
  outline: none;
  font-size: 1rem;
  background: transparent;
  margin: 20px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #b89b5e;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkbox-row label {
  margin: 0;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 18px;
  color: #333 !important;
  cursor: pointer;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #b89b5e;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #9c834f;
}

/* Responsive */
@media (max-width: 600px) {
  .form-group {
    flex: 1 1 100%;
  }

  .side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 25%;
    height: 80vh;
  }
}
/* -------------------------------------------------
   GLOBAL RESET
-------------------------------------------------*/

/* -------------------------------------------------
   NAVBAR
-------------------------------------------------*/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.logo {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #83a17e;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.book-btn {
  background: #83a17e;
  padding: 10px 18px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background: #caa94d;
}

/* -------------------------------------------------
   HERO SECTION
-------------------------------------------------*/
.hero {
  height: 100vh;
  position: relative;
  background: url("your-image.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-content {
  color: #4e4d4b;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  /* font-family: 'Playfair Display'; */
  font-size: 50px;
  margin-bottom: 30px;
}

/* Search Bar */
.search-bar {
  background: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  width: 90%;
  margin: auto;
  display: flex;
  padding: 10px 20px;
  border-radius: 6px;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
}

/* -------------------------------------------------
   WEDDING DREAMS SECTION
-------------------------------------------------*/
.dreams {
  padding: 80px 20px;
  /* background: linear-gradient(#fae9da, #fff); */
  text-align: center;
}

.dreams h2 {
  /* font-family: 'Playfair Display'; */
  font-size: 42px;
  margin-bottom: 20px;
}

.dreams p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
}

.dream-btn {
  padding: 12px 24px;
  background: #83a17e;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
}

/* -------------------------------------------------
   POPUP FORM
-------------------------------------------------*/
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup {
  max-width: 1200px;
  margin: 200px auto;
  background: #fff;
  padding: 40px;
  border-top: 3px solid #b89b5e;
  border-radius: 6px;
  position: relative;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 45%;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  margin-bottom: 20px;
  outline: none;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

/* -------------------------------------------------
   RESPONSIVE MEDIA QUERIES
-------------------------------------------------*/

/* ---- TABLETS (<=1024px) ---- */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .side {
    display: none;
  }

  .slide img {
    max-width: 650px;
    height: 380px;
  }
}

/* ---- TABLETS (<=768px) ---- */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .slide img {
    height: 300px;
  }

  .slider-wrapper {
    margin: 50px auto;
  }
}

/* ---- MOBILE (<=480px) ---- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .dreams h2 {
    font-size: 28px;
  }

  .slide {
    padding: 0 20px;
  }

  .slide img {
    height: 240px;
  }

  .caption h2 {
    font-size: 20px;
  }

  .caption p {
    font-size: 14px;
  }
}
/* Side panels */
.side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 25%;
  height: 80vh;
  background: #932c2c00;
  backdrop-filter: blur(6px);
  transition: all 0.8s ease;
}

.side-left {
  left: 0;
  border-top: 1px solid rgb(191 174 0) !important;
  border-bottom: 1px solid #83a17e !important;
  border-right: 1px solid #83a17e !important;
  /* border-right: 4px solid #83a17e; */
}

.side-right {
  right: 0;
  border-top: 1px solid rgb(191 174 0) !important;
  border-bottom: 1px solid #83a17e !important;
  border-left: 1px solid #83a17e !important;
  /*border-right: 4px solid #b8956a;*/
}

.side-text {
  font-size: 18px;
  color: #83a17e;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.des-areas {
  margin: 20px 100px !important;
}

.offers-section {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
  color: white;
  text-align: center;
  background-image: #e7e6e600 !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: #e7e6e600 !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(200px) brightness(0.1);
  z-index: 0;
  color: white;
}

.offers-section * {
  position: relative;
  z-index: 1;
}

.offers-title {
  color: #fefffd !important;
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 38px;
  margin: 0;
  text-transform: uppercase;
}

span {
  font-size: 22px;
  color: #83a17e !important;
  letter-spacing: 1px;
}

.offers-section {
  padding: 60px 20px;
  background-color: #ffffef00 !important;
  overflow: hidden;
  position: relative;
  border-top: 0.7px solid #83a17e;
  border-bottom: 0.7px solid #83a17e;
}

/* ---------- Heading ---------- */
.offer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px !important;
}

.offers-title {
  color: #83a17e !important;
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 38px;
  margin: 0;
  text-transform: uppercase;
}

.view-all-btn {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
  background-color: #83a17e;
  padding: 10px 22px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  color: #fff !important;
  background-color: #444;
}

/* ---------- Carousel ---------- */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 80%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-item {
  flex: 0 0 100%;
  margin-right: 40px;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 250px;
  border-radius: 4px;
}

.carousel-item:last-child {
  margin-right: 0;
}

.offer-text {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.offer-text h4 {
  font-size: 26px;
  font-weight: 400 !important;
  color: #83a17e;
  margin-bottom: 15px;
}

.offer-text p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.offer-text .btn {
  color: #fff;
  background-color: #83a17e;
  border-radius: 0;
  font-weight: 500;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.offer-text .btn:hover {
  background-color: #444;
}

.offer-img {
  flex: 1.5;
  height: 100%;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Nav ---------- */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #83a17e;
  color: #fff;
  border: none;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background-color: #444;
}

/* ---------- Responsive ---------- */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .offers-title {
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .view-all-btn {
    margin: 10px auto 0;
  }

  .carousel-item {
    flex-direction: column;
    margin-right: 0;
    min-height: auto;
  }

  .offer-text {
    padding: 25px;
  }

  .offer-text h4 {
    font-size: 24px;
  }

  .offer-text p {
    font-size: 15px;
  }

  .carousel-nav {
    margin-top: 25px;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .offers-section {
    padding: 40px 15px;
  }

  .carousel-item {
    margin-right: 0 !important;
    /* ✅ Fix spacing issue */
  }

  .offer-text {
    padding: 20px;
  }

  .offer-text h4 {
    font-size: 20px;
  }

  .offer-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .view-all-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .slide-indicator {
    font-size: 13px;
  }
}

/* -----------------------------------------------
   LARGE LAPTOPS / SMALL DESKTOP ( ≤ 1400px )
------------------------------------------------*/
@media (max-width: 1400px) {
  .slide img {
    max-width: 750px;
    height: 450px;
  }

  .navbar {
    padding: 20px 40px;
  }

  .side {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 25%;
    height: 65vh;
    border: 1px solid rgba(184, 149, 106, 0.4);
    /* border-right: 1px solid rgba(184, 149, 106, 0.4)!important;  */
    /* border-bottom: 1px solid rgba(184, 149, 106, 0.4); */
    background: #932c2c00;
    backdrop-filter: blur(6px);
    transition: all 0.8s ease;
  }

  .slide img {
    width: 100%;
    max-width: 600px !important;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 1s ease;
  }
}

.wedding-mobile-slider {
  display: none !important;
}

/* -----------------------------------------------
   LAPTOP & TABLET LANDSCAPE ( ≤ 1024px )
------------------------------------------------*/
/* Responsive */
@media (max-width: 1024px) {
  .slide img {
    width: 100%;
    max-width: 600px !important;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 1s ease;
  }

  .side {
    position: absolute !important;
    top: 35% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    width: 25% !important;
    height: 65vh !important;
    border: 1px solid rgba(184, 149, 106, 0.4) !important;
    /* border-right: 1px solid rgba(184, 149, 106, 0.4)!important;  */
    /* border-bottom: 1px solid rgba(184, 149, 106, 0.4); */
    background: #932c2c00 !important;
    backdrop-filter: blur(6px) !important;
    transition: all 0.8s ease !important;
  }

  .slide img {
    height: 380px !important;
  }

  .caption h2 {
    font-size: 18px !important;
  }

  .caption p {
    font-size: 15px;
    padding: 0 20px;
  }

  .wedding-mobile-slider {
    padding: 40px 0;
    display: block !important;
  }

  .wedding-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }

  .wedding-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

  .wedding-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    text-align: center;
  }

  .wedding-overlay h3 {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #fff;
  }

  .wedding-overlay p {
    font-size: 13px;
    opacity: 0.9;
    color: #fff;
    text-align: center;
  }

  /* Pagination dots */
  .weddingSwiper .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
  }

  .weddingSwiper .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

.wed-slider-section {
  display: block;
}

@media (max-width: 768px) {
  .wed-slider-section {
    display: none;
  }

  .slider-wrapper {
    margin: 50px auto;
    padding: 0;
  }

  .side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 25%;
    height: 80vh;
    border: none !important;
    background: none !important;
    backdrop-filter: none !important;
    transition: none !important;
  }

  .slide img {
    height: 300px !important;
  }

  .caption p {
    display: none !important;
  }

  .nav-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #83a17e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .des-areas {
    margin: 10px !important;
    text-align: justify !important;
  }

  body {
    background-image: url("../images/wedding/wed-mobile.jpg") !important;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 0vh;
  }

  main {
    background: none !important;
  }
  .hero {
    background: none !important;
  }
}

.arrow-btn {
  font-size: 25px;
  color: #83a17e;
  border: 1px solid #83a17e;
  border-radius: 8% !important;
  background: #83a17e;
  padding: 12px 24px;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 90px !important;
}

.js-slider3-next,
.js-slider3-prev:focus {
  border-image: none;
  background: none;
}
/* ===== Overlay ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

/* Popup overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.popup {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 150px auto;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #83a17e;
  border-radius: 6px;
}

/* Form styling */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border-bottom: 1px solid lightgrey !important;
  margin-top: 20px;
  width: 100%;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #83a17e;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.submit-btn:hover {
  background: #83a17e;
}
.corporate-para {
  text-align: justify !important;
  margin-top: 15px !important;
}
.crop-para {
  width: 75%;
}
@media (max-width: 768px) {
  .crop-para {
    width: 100%;
    text-align: justify !important;
  }
  #enq {
    padding: 6px 16px !important;
    font-size: 12px !important;
    text-align: center;
  }
  .pt-2 {
    text-align: center !important;
  }
  .crop-para {
    width: 100% !important;
    padding: 2px 20px !important;
  }
  .layout-pt-lg {
    padding-top: 15px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 5px !important;
    border-bottom: 1px solid lightgrey !important;
    margin-top: 0px;
    width: 100%;
  }
  .row_forms {
    padding: 0px !important;
  }
  /* ===== Overlay ===== */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
  }

  /* ===== Popup ===== */
  .popup {
    background: #fff;
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* ===== Heading ===== */
  .popup h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }

  /* ===== Close Button ===== */
  .popup .close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
  }

  /* ===== Form Inputs ===== */
  .popup .form-control {
    width: 100%;
    height: 45px;
    font-size: 14px;
  }

  /* ===== Submit Button ===== */
  .submit-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
  }

  /* ===== MOBILE FIXES ===== */
  @media (max-width: 768px) {
    .popup {
      padding: 20px 15px;
      max-width: 100%;
      border-radius: 10px;
    }

    .popup h2 {
      font-size: 18px;
    }

    .row_forms > div {
      padding-left: 6px;
      padding-right: 6px;
    }

    .popup .form-control {
      height: 35px;
      font-size: 12px;
    }

    .g-recaptcha {
      transform: scale(0.85);
      transform-origin: left top;
    }
  }

  /* ===== SMALL MOBILE ===== */
  @media (max-width: 480px) {
    .popup {
      max-height: 95vh;
      margin: 20px 0px;
    }

    .popup h2 {
      font-size: 14px;
      width: 80%;
    }

    .submit-btn {
      font-size: 15px;
    }
  }
}
