.plan-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.plan-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* HOVER EFFECT */
.plan-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* CONTENT AREA */
.plan-content {
  padding: 15px;
  text-align: center;
}

.plan-content p {
  font-size: 20px !important;
  color: #000 !important;
}

/* TITLE */
.plan-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

/* BUTTON */
.plan-btn {
  background: linear-gradient(45deg, #ab6547, #d4af37);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.plan-btn:hover {
  background: linear-gradient(45deg, #8c7423, #c19b2e);
  transform: scale(1.05);
}

.left-content {
  display: none;
}

.animated-btn {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  color: rgb(158 129 48);
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}
/* TEXT ABOVE */
.animated-btn span {
  position: relative;
  z-index: 2;
}

/* BORDER LINES */
.animated-btn::before,
.animated-btn::after {
  content: "";
  position: absolute;
  background: #dab436;
  transition: 0.5s;
}

/* TOP LINE */
.animated-btn::before {
  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  animation: topLine 2s linear infinite;
}

/* BOTTOM LINE */
.animated-btn::after {
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  animation: bottomLine 2s linear infinite;
}

/* LEFT + RIGHT using span */
.animated-btn span::before,
.animated-btn span::after {
  content: "";
  position: absolute;
  background: #dab436;
}

/* LEFT */
.animated-btn span::before {
  width: 2px;
  height: 100%;
  left: -6px;
  top: -100%;
  animation: leftLine 2s linear infinite;
}

/* RIGHT */
.animated-btn span::after {
  width: 2px;
  height: 100%;
  right: -6px;
  bottom: -100%;
  animation: rightLine 2s linear infinite;
}

/* ANIMATIONS */
@keyframes topLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes bottomLine {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

@keyframes leftLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes rightLine {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

/* HOVER EFFECT */
.animated-btn:hover {
  background: #876805;
  color: #fff;
}

.animated-btn {
  position: relative;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(158 129 48);
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  letter-spacing: 1px;
}

/* TEXT */
.animated-btn span {
  position: relative;
  z-index: 2;
}

/* BORDER ANIMATION */
.animated-btn::before,
.animated-btn::after {
  content: "";
  position: absolute;
  background: #dab436;
}

/* TOP */
.animated-btn::before {
  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  animation: topMove 2s linear infinite;
}

/* BOTTOM */
.animated-btn::after {
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  animation: bottomMove 2s linear infinite;
}

/* LEFT + RIGHT */
.animated-btn span::before,
.animated-btn span::after {
  content: "";
  position: absolute;
  background: #dab436;
}

/* LEFT */
.animated-btn span::before {
  width: 2px;
  height: 100%;
  left: 0;
  top: -100%;
  animation: leftMove 2s linear infinite;
}

/* RIGHT */
.animated-btn span::after {
  width: 2px;
  height: 100%;
  right: 0;
  bottom: -100%;
  animation: rightMove 2s linear infinite;
}

/* ANIMATIONS */
@keyframes topMove {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes bottomMove {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

@keyframes leftMove {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes rightMove {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

/* HOVER */
.animated-btn:hover {
  background: #836b0c;
  color: #fff;
  box-shadow: 0 0 15px rgba(186, 159, 23, 0.5);
}

/* SECTION PREMIUM LOOK */
#highlight {
  background: #f9f9f9;
  padding: 20px 0;
}

/* IMAGE UPGRADE */
.img100 {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* BUTTON GROUP */
.premium-btn-group {
  display: flex;
  gap: 25px;

  margin-top: 20px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* GOLD BORDER BUTTON */
.animated-btn {
  position: relative;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(158 129 48);

  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

/* TEXT */
.animated-btn span {
  position: relative;
  z-index: 2;
}

/* RUNNING BORDER */
.animated-btn::before,
.animated-btn::after {
  content: "";
  position: absolute;
  background: #dab436;
}

.animated-btn::before {
  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  animation: topMove 2s linear infinite;
}

.animated-btn::after {
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  animation: bottomMove 2s linear infinite;
}

.animated-btn span::before,
.animated-btn span::after {
  content: "";
  position: absolute;
  background: #dab436;
}

.animated-btn span::before {
  width: 2px;
  height: 100%;
  left: 0;
  top: -100%;
  animation: leftMove 2s linear infinite;
}

.animated-btn span::after {
  width: 2px;
  height: 100%;
  right: 0;
  bottom: -100%;
  animation: rightMove 2s linear infinite;
}

/* FILLED BUTTON (MAIN CTA) */
.filled-btn {
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(45deg, #b67a39, #d4a15b);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.filled-btn:hover {
  box-shadow: 0 10px 20px rgba(182, 122, 57, 0.4);
  transform: translateY(-2px);
}

.animated-btn:hover {
  background: #6a6a09;
  color: #fff;
}

/* ANIMATIONS */
@keyframes topMove {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes bottomMove {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

@keyframes leftMove {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes rightMove {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.divider {
  width: 100%;
  height: 2px;
  background: #d6a354;
  margin: 10px 0 15px;
  opacity: 0.6;
}

.size {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #9b7438;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #7d5d2d;
}

/* Responsive */

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card a {
  min-width: 160px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  background: rgb(159, 129, 20);
  text-align: center;
  justify-content: center;
}

.hero {
  min-height: 100vh; /* better than fixed height */
  width: 100%;

  background-image: url("../img/lodha-banner.jpg");
  background-size: cover; /* responsive & no stretch */
  background-position: center center; /* perfect alignment */
  background-repeat: no-repeat;

  background-color: #000; /* fallback */

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px; /* mobile spacing */
}
/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(22 10 5 / 69%), rgb(67 87 58/28%));
  /* deep navy overlay */
}

/* CONTENT */
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
  color: #fff;
}

/* LEFT SIDE */
.left {
  max-width: 600px;
}

.top-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #23092f, #451960);
  /* royal blue gradient */
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff;
  /* white headline */
}

.location {
  display: inline-block;
  background: #8e7f4b;
  /* royal blue solid */
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  color: #e5e7eb;
  /* light text */
}

.info {
  margin-bottom: 10px;
  opacity: 0.85;
}

/* PRICE TAG */
.price {
  margin-top: 25px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.price span {
  color: #ffc400;
  /* warm gold accent */
  font-weight: bold;
}

/* RIGHT FORM */
/* RIGHT FORM */
.form-box {
  width: 350px !important;
  background: linear-gradient(180deg, #938142 0%, rgb(118 116 121) 100%);

  padding: 30px;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 100px;
  overflow: visible;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-boxs {
  display: none;
}

.form-header {
  background: #177896;
  /* deep royal blue */
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.form-body {
  padding: 20px;
}

.form-body input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px !important;
  border: none;
  outline: none;
  background: rgb(255 255 255/80);
  /* background: rgba(224, 216, 216, 0.8); */
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #473c14, #9e8130);
  /* royal blue gradient */
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.note {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.7;
  color: #e5e7eb;
}

@media (max-width: 1199px) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 100px 0 70px;
  }

  .hero-content {
    max-width: 100%;
    padding: 30px 24px;
    gap: 30px;
    align-items: center;
  }

  .left {
    max-width: 540px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 22px;
    line-height: 1.4;
    color: #333;
  }

  .form-box {
    width: 320px;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 90px 0 60px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 30px 20px;
  }

  .left {
    max-width: 100%;
  }

  .top-line {
    margin: 0 auto 20px;
  }

  h1 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .info {
    font-size: 15px;
    line-height: 1.7;
  }

  .price {
    margin-top: 20px;
  }

  .form-box {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 80px 0 50px;
    background-position: center center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgb(22 10 5 / 78%), rgb(65 24 7 / 68%));
  }

  .hero-content {
    padding: 25px 16px;
    gap: 28px;
  }

  .top-line {
    width: 90px;
    margin: 0 auto 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .location {
    font-size: 13px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .info {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .price {
    padding: 10px 14px;
    font-size: 14px;
    margin-top: 16px;
  }

  .form-box {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  .form-header {
    padding: 14px 12px;
    font-size: 15px;
  }

  .form-body {
    padding: 18px 16px;
  }

  .form-body input {
    padding: 11px 12px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  .note {
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 70px 0 40px;
  }

  .hero-content {
    padding: 20px 14px;
    gap: 24px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .top-line {
    display: none;
  }

  .left {
    display: none;
  }

  .hero {
    height: 345px;
  }

  .left-content {
    display: block;
    padding: 42px 23px;
    background: #e1e1c4;
  }

  .price {
    color: #fff;
  }

  .price span {
    color: gold;
  }

  .lefts h1 {
    font-size: 26px;
  }

  .price {
    background: #867a50;
  }

  .lefts {
    max-width: 100%;
  }

  .lefts {
    max-width: 540px;
  }

  .lefts {
    max-width: 600px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgb(22 10 5 / 28%), rgb(65 24 7 / 18%));
  }

  .location {
    font-size: 12px;
    padding: 5px 10px;
  }

  .form-box {
    display: none;
  }

  .form-body {
    background: #5a4419;
  }

  .lux-section {
    padding: 25px 20px !important;
  }

  /* .form-box {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
      } */

  /* .form-box {
        width: 100%;
        max-width: 420px;
      } */

  .subtitle {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .info {
    font-size: 13px;
  }

  .price {
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 5px;
  }

  .form-box {
    border-radius: 8px;
  }

  .form-header {
    padding: 12px 10px;
    font-size: 14px;
  }

  .form-body {
    padding: 15px 14px;
  }

  .form-body input {
    padding: 10px 11px;
    font-size: 13px;
    border-radius: 5px;
  }

  .submit-btn {
    padding: 11px;
    font-size: 13px;
    border-radius: 5px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 65px 0 35px;
  }

  .hero-content {
    padding: 18px 12px;
  }

  h1 {
    font-size: 21px;
  }

  .subtitle {
    font-size: 15px;
  }

  .info {
    font-size: 12px;
    line-height: 1.5;
  }

  .price {
    font-size: 12px;
    padding: 8px 10px;
  }

  .form-header {
    font-size: 13px;
  }

  .form-body {
    padding: 14px 12px;
  }

  .form-body input {
    font-size: 12px;
  }

  .submit-btn {
    font-size: 12px;
  }

  .note {
    font-size: 10px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left {
    max-width: 100%;
  }

  .form-box {
    width: 100%;
  }
}

/* SECTION */
.lux-section {
  background: #f1f3f6;
  /* light cool gray */
  padding: 60px 20px;
}

.lux-container {
  max-width: 1200px;
  margin: auto;
}

.lux-header-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 50, 0.08);
  /* subtle navy shadow */
  margin-bottom: 40px;
}

/* TOP */
.lux-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lux-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #212529;
  /* deep navy */
}

.lux-location {
  color: #4b5563;
  /* slate gray */
  font-size: 14px;
}

/* PRICE BOX */
.lux-price-box {
  background: rgb(158 129 48);
  /* royal blue gradient */
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  min-width: 160px;
}

.lux-price-box span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.lux-price-box strong {
  font-size: 15px;
}

/* INFO ROW */
.lux-info-row {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.chat-header h4 i {
  color: #857015;
}

.lux-pill {
  background: #e5e7eb;
  /* soft gray pill */
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  /* navy text */
}

/* BUTTONS */
.lux-btn-group {
  display: flex;
  margin-top: 16px;
  gap: 15px;
  flex-wrap: wrap;
}

.lux-btn-outline {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #43573a;
  /* navy border */
  background: transparent;
  color: #c0800a;
  cursor: pointer;
  transition: 0.3s;
}

.lux-btn-outline:hover {
  background: #43573a;
  color: #fff;
}

.lux-btn-fill {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  border: none;
  background: rgb(158 129 48);
  /* royal blue gradient */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lux-btn-fill:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .lux-header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .lux-price-box {
    width: 100%;
    text-align: left;
  }
}

/* GRID */
.lux-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT */
.lux-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.lux-heading {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
}

.lux-subheading {
  color: #43573a;
  /* royal blue */
  font-weight: 600;
  margin: 10px 0;
}

.lux-text {
  color: #4b5563;
  /* dark gray text */
  line-height: 1.6;
}

/* RIGHT FEATURES */
.lux-right {
  max-height: fit-content !important;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lux-feature {
  padding: 12px 15px;
  border-radius: 10px;
  background: #e5e7eb;
  /* light gray feature */
  transition: 0.3s;
  font-size: 14px;
  color: #212529;
}

.lux-feature:hover {
  background: #9e8130;
  /* navy hover */
  color: #fff;
  transform: translateX(5px);
}
.lux-feature:hover .check i {
  color: #fff;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .lux-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #212529;
}

.gallery-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* IMAGE CARD */
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  cursor: pointer;
  object-fit: cover;
  height: 200px;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 75%;
  max-height: 70%;
  /* border-radius: 12px; */
  margin-top: 80px;
  transition: transform 0.3s;
}

.lightbox .closes {
  position: absolute;
  top: 98px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #1e40af;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.lightbox-img:hover {
  transform: scale(1.05);
}

.lux-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.check i {
  color: #69530b;
  font-size: 18px;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    width: 100%;
    height: 106px !important;
  }

  .plan-content {
    display: flex;
    flex-direction: column !important;
  }

  .lightbox .prev,
  .lightbox .next {
    top: 55%;
    font-size: 26px;
    cursor: pointer;
  }

  .lux-btn-group {
    margin-top: 15px;
  }
}

.options {
  background: #efefef;
  padding: 15px;
  border-radius: 15px;
}

.options button {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 30px;
  border: 1px solid #d8d8d8;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.options button:hover {
  background: rgb(158 129 48);
  color: #fff;
  border-color: #c0800a;
}

.user-input {
  margin-top: 10px;
}

.user-input input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
  outline: none;
  font-size: 14px;
}

.user-input input:focus {
  border-color: rgb(36 110 133);
  box-shadow: 0 0 0 3px rgba(159, 129, 20, 0.15);
}

.user-input button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #473c14, #9e8130);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.user-input button:hover {
  background: linear-gradient(90deg, #5a4a1a, #caa23a);
  box-shadow: 0 0 15px rgba(58, 222, 255, 0.6);
}

/* SECTION */
.pricing-section {
  max-width: 1200px;
  margin: auto;
  padding: 5px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.plan-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.plan-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  display: block;
  filter: blur(2px);
  opacity: 0.8;
}

/* OVERLAY TEXT */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* CONTENT */
.plan-content {
  padding: 15px 5px 5px;
}

.plan-content span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.plan-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

/* OUTLINE STYLE () */
.outline-btn {
  border: 1px solid #999;
  color: #333;
  cursor: pointer;
  background: transparent;
}

.outline-btn:hover {
  background: #3f7eaf;
  color: #fff;
  border-color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Default: Hide everywhere */
.form-boxss {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .form-boxss {
    display: block;
    padding: 25px 20px !important;
  }
}

@media (max-width: 480px) {
  .form-boxss {
    display: block;
    padding: 25px 20px !important;
  }

  .gallery-section {
    padding: 20px 20px;
  }

  .pricing-section {
    padding: 20px 20px;
  }

  .gallery-title {
    margin-bottom: 2px !important;
  }

  .pricing-title {
    margin-bottom: 0px;
  }
}
/* Container */
.estate105-amenities-split {
  background: #a6945b;
  padding: 20px 20px 60px 20px;
  text-align: center;
  color: #e0e5eb;
  font-family: "Arial", sans-serif;
}

.estate105-amenities-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Image */
.estate105-amenities-left {
  flex: 1 1 480px;
}

.estate105-amenities-left img {
  width: 100%;
  height: 628px;
  /* border-radius: 16px; */
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Right Content */
.estate105-amenities-right {
  flex: 1 1 480px;
}

/* Text Section */
.estate105-amenities-subtitle {
  color: #443505;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.estate105-amenities-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px !important;
  color: #000;
}

.estate105-amenities-description {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  max-width: 700px;
  /* margin-bottom: 40px; */
  color: #000;
}

/* Amenities Grid */
.estate105-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #654f11;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.amenity-card i {
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.amenity-card span {
  font-size: 15px;
  font-weight: 600;
  color: #e0e5eb;
}

/* Hover effect */
.amenity-card:hover {
  background: linear-gradient(135deg, #696208, #88670d);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(252, 163, 17, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .estate105-amenities-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .estate105-amenities-title {
    font-size: 28px;
  }

  .estate105-amenities-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .estate105-amenities-title {
    font-size: 24px;
  }

  .estate105-amenities-left img {
    height: 346px;
  }

  .estate105-amenities-left {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .estate105-amenities-description {
    font-size: 14px;
  }

  .amenity-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 10px;
  }

  .amenity-card i {
    margin-bottom: 8px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay text */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  transition: 0.3s;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}
@media (max-width: 768px) {
  /* force hidden by default */
  .overlay {
    transform: translateY(100%);
  }
}
