.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(135deg, #ff7001, #ff7001);
  transform: scale(1.05);
}

.left-content {
  display: none;
}
.lux-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}
.animated-btn {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  color: #10203f;
  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: #6f5f53;
  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: #6f5f53;
}

/* 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: #6f5f53;
  color: #fff;
}

.animated-btn {
  position: relative;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  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: #6f5f53;
}

/* TOP */
.animated-btn::before {
  height: 3px;
  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: #6f5f53;
}

/* 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: #6f5f53;
  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: #333;

  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: #6f5f53;
}

.animated-btn::before {
  height: 3px;
  width: 100%;
  top: 0;
  left: -100%;
  animation: topMove 2s linear infinite;
}

.animated-btn::after {
  height: 3px;
  width: 100%;
  bottom: 0;
  right: -100%;
  animation: bottomMove 2s linear infinite;
}

.animated-btn span::before,
.animated-btn span::after {
  content: "";
  position: absolute;
  background: #6f5f53;
}

.animated-btn span::before {
  width: 3px;
  height: 100%;
  left: 0;
  top: -100%;
  animation: leftMove 1s 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: #6f5f53;
  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/banner.52.webp");
  background-size: cover;
  /* responsive & no stretch */
  background-position: top 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 */
}
.h2,
h3 {
  text-transform: capitalize !important;
}
/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 60%), rgb(16 16 16 / 22%));
  /* deep navy overlay */
}

/* CONTENT */
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 20px 20px 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: #000000;
  /* 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: #ffffff !important;
  /* warm gold accent */
  font-weight: bold;
}

/* RIGHT FORM */
/* RIGHT FORM */
.form-box {
  width: 350px !important;
  background: linear-gradient(180deg, #56646d 0%, #dddddc 100%);
  padding: 30px;
  border-radius: 24px;

  color: #3f3f46;
  box-shadow: 0 20px 50px rgba(124, 45, 18, 0.15);
  border: 1px solid #f3e8d7;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 100px;
  overflow: visible;

  overflow: hidden;
  border: 1px solid rgba(73, 67, 67);
}

.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(135deg, #2e2e2e, #8b705a);
  /* 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 {
    /* background-image: url("../img/mobile.png"); */
    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 {
    height: auto !important;
    min-height: 60vh;
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    padding: 20px 14px;
    gap: 24px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .top-line {
    display: none;
  }

  .left {
    display: none;
  }

  .hero {
    height: 545px;
  }

  .left-content {
    display: block;
    padding: 42px 23px;
    background: #cbc5c04f;
  }

  .price {
    color: #fff;
  }

  .price span {
    color: gold;
  }

  .lefts h1 {
    text-align: left;
    font-size: 26px;
  }

  .price {
    background: #2e2e2e;
  }

  .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: #2e2e2e;
  /* 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: 15px;
  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: #b6972c;
}

.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: #2e2e2e;
  /* royal blue gradient */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lux-btn-fill:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .lux-btn-fill {
    font-size: 14px;
  }
}

/* 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: #2e2e2e;
  /* navy hover */
  color: #fff;
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lux-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-section {
  background: #0b0b0c;
  padding: 60px 80px;
  color: #fff;
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header span {
  color: #c8a96a;
  letter-spacing: 3px;
  font-size: 12px;
}

.gallery-header h2 {
  font-size: 42px;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 15px;
}

/* DEFAULT ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* BIG CENTER IMAGE */
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* OVERLAY */
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 14px;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}
/* ACTIVE BIG IMAGE ANIMATION */
.gallery-item.big img {
  transform: scale(1);
  transition: transform 1s ease;
}

.gallery-item.big.active img {
  transform: scale(1.08);
}

/* SMOOTH FADE */
.gallery-item.big {
  transition: all 0.6s ease;
}

/* SUBTLE SHADOW FOR DEPTH */
.gallery-item.big {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* MOBILE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 26px;
  }
}
/* 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: #615750;
  font-size: 18px;
  margin-top: 3px;
}
.lux-feature:hover .check i {
  color: #fff;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .gallery-grid img {
    width: 100% !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: #b6972c;
  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: #b6972c;
  box-shadow: 0 0 0 3px rgba(159, 129, 20, 0.15);
}

.user-input button {
  width: 100%;
  padding: 12px;
  background: #b6972c;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.user-input button:hover {
  background: #b6972c;
  box-shadow: 0 0 15px rgba(58, 222, 255, 0.6);
}

/* SECTION */
.pricing-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 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: linear-gradient(135deg, rgb(106, 95, 89), rgb(67, 64, 63));
  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 0px !important;
  }

  .pricing-section {
    padding: 20px 20px;
  }

  .gallery-title {
    margin-bottom: 2px !important;
  }

  .pricing-title {
    margin-bottom: 0px;
  }
}
/* SECTION */
.arch-section {
  width: 100%;
  padding: 0;
  background: #f7f7f7;
}

/* WRAPPER - 50/50 GRID */
.arch-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* LEFT CONTENT */
.arch-content {
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.arch-content h3 {
  font-size: 32px;
  margin-bottom: 15px; /* ❌ removed negative margin */
  color: #111;
}

.arch-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

/* RIGHT IMAGE */
.arch-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}

.arch-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.arch-image img:hover {
  transform: scale(1.05);
}

/* =========================
   TABLET (iPad / Medium)
========================= */
@media (max-width: 1024px) {
  .arch-content {
    padding: 40px 40px;
  }

  .arch-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .arch-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* DEFAULT ORDER */
  .arch-content {
    order: 1;
  }

  .arch-image {
    order: 0;
  }

  /* SECOND SECTION REVERSE FIX */
  .arch-wrapper:nth-child(2) .arch-image {
    order: 2;
  }

  .arch-wrapper:nth-child(2) .arch-content {
    order: 1;
  }
}
/* =========================
   MOBILE LANDSCAPE
========================= */
@media (max-width: 768px) {
  .arch-wrapper {
    grid-template-columns: 1fr;
  }

  .arch-content {
    padding: 35px 25px;
  }

  .arch-image {
    height: 300px;
  }

  .arch-content h3 {
    font-size: 24px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .arch-content {
    padding: 25px 18px;
  }

  .arch-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .arch-image {
    height: 240px;
  }

  .arch-content h3 {
    font-size: 22px;
  }
}
/* Container */
.estate105-amenities-split {
  background: #ecb48633;
  padding: 0px 20px 0px 0px;
  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: 420px !important; */
  /* border-radius: 16px; */
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.estate105-amenities-lefts img {
  width: 100%;
  height: 392px;
  /* 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 !important;
}

/* Text Section */
.estate105-amenities-subtitle {
  color: #10203f;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.estate105-amenities-title {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0px !important;
  color: #212529;
}

.estate105-amenities-description {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  max-width: 700px;
  /* margin-bottom: 40px; */
  color: #212529;
}

/* 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: #72390b;
  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, #8b5a2b, #4a2508);
  transform: translateY(-4px);
  color: #3f3f46 !important;
  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: 18px;
  }
  .estate105-amenities-right {
    padding: 0px 15px !important;
  }
  .estate105-amenities-split {
    padding: 0px !important;
  }
  .estate105-amenities-left img {
    height: 346px;
  }
  .estate105-amenities-lefts 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:hover .overlay {
  transform: translateY(0);
} */

@media (max-width: 768px) {
  /* force hidden by default */
  .overlay {
    transform: translateY(100%);
  }
}

@media (max-width: 600px) {
  .lux-btn-fill {
    font-size: 14px !important;
  }
}

@media (max-width: 575px) {
  .animated-btn {
    padding: 12px 8px !important;
    font-size: 12px !important;
  }
}

.amenities-pro {
  background: #0b0b0c;
  padding: 80px 20px;
  color: #fff;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

/* TOP TAG */
.header .tag {
  display: inline-block;
  color: #c8a96a;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.header h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: -15px !important;
}

.header h2 span {
  color: #c8a96a;
}

/* DESCRIPTION */
.header p {
  color: #aaa;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 576px) {
  .header h2 {
    font-size: 26px;
    margin-bottom: -10px;
  }

  .header p {
    font-size: 14px;
  }
}

/* LAYOUT */
.amenities-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

/* LEFT IMAGE */
.preview-box {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.preview-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

/* RIGHT LIST */
.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 420px;
  overflow-y: auto;
}

/* ITEM */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

/* THUMB IMAGE */
.amenity-item img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT */
.amenity-item span {
  font-size: 15px;
}

/* HOVER / ACTIVE */
.amenity-item:hover {
  background: #c8a96a;
  color: #000;
}

/* SCROLLBAR HIDE */
.amenities-list::-webkit-scrollbar {
  width: 4px;
}

.amenities-list::-webkit-scrollbar-thumb {
  background: #444;
}

/* MOBILE */
@media (max-width: 992px) {
  .amenities-wrapper {
    grid-template-columns: 1fr;
  }

  .preview-box img {
    height: 250px;
  }

  .amenities-list {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
  }

  .amenity-item {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .amenities-wrapper {
    display: block;
  }

  /* BIG IMAGE FULL WIDTH */
  .preview-box img {
    height: 280px;
    border-radius: 15px;
  }

  /* HORIZONTAL PREMIUM SCROLL */
  .amenities-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  /* CARD STYLE */
  .amenity-item {
    flex: 0 0 75%;
    scroll-snap-align: center;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 12px;
  }

  /* IMAGE BIGGER */
  .amenity-item img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
  }

  /* TEXT */
  .amenity-item span {
    margin-top: 8px;
    font-size: 16px;
  }

  /* REMOVE SCROLLBAR */
  .amenities-list::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    flex: 0 0 85%;
    height: 220px;
    scroll-snap-align: center;
    border-radius: 15px;
  }

  .gallery-item.big {
    flex: 0 0 85%;
    grid-column: unset;
    grid-row: unset;
  }

  .gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  /* overlay always visible on mobile */
  .gallery-item .overlay {
    opacity: 1;
    font-size: 13px;
  }

  .gallery-header h2 {
    font-size: 26px;
    margin-bottom: -35px !important;
  }
}

.gallery-dots {
  display: none !important;
  justify-content: center !important;
  margin-top: 15px !important;
  gap: 6px !important;
}

.gallery-dots span {
  width: 6px !important;
  height: 6px !important;
  background: #777 !important;
  border-radius: 50% !important;
  transition: 0.3s !important;
}

.gallery-dots span.active {
  width: 18px !important;
  background: #c8a96a !important;
  border-radius: 10px !important;
}

/* show only on mobile */
@media (max-width: 768px) {
  .gallery-dots {
    display: flex !important;
  }
}
/* SECTION FULL WIDTH */
.project-block {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #f7f7f7;
}

.project-block.alt {
  background: #ffffff;
}

/* FULL WIDTH GRID */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
}

/* IMAGE - FULL EDGE */
.project-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.project-image img:hover {
  transform: scale(1.05);
}

/* TEXT SIDE */
.project-text {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TYPOGRAPHY */
.project-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 600;
}

.project-text .sub-title {
  margin-top: 25px;
  font-size: 22px;
}

.project-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15.5px;
}

/* BUTTON */
.project-btn {
  margin-top: 25px;
}

.project-btn button {
  padding: 14px 28px;
  background: #c8a96a;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.project-btn button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ALT SECTION REVERSE */
.project-block.alt .project-card {
  direction: rtl;
}

.project-block.alt .project-text {
  direction: ltr;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-text {
    padding: 40px 25px;
  }

  .project-image {
    height: 320px;
  }
}

:root {
  --gold-primary: #b38e44;
  --gold-light: #d4c4a8;
  --text-dark: #2c2c2c;
  --bg-soft: #fcfaf7;
}

.luxury-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 40px;
  background-color: var(--bg-soft);
  background-image: url("https://www.transparenttextures.com/patterns/marble-similar.png"); /* Subtle texture */
  border: 1px solid #eee;
}

.content-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE */
.image-section {
  flex: 1.3;
}

.main-image-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.logo {
  font-family: "Playfair Display", serif;
  color: var(--gold-primary);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 25px;
}

h1 span {
  font-weight: 400;
  font-style: italic;
  color: #555;
  font-size: 2rem;
}

.description p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* RIGHT SIDE */
.info-section {
  flex: 0.8;
  position: sticky;
  top: 20px;
}

/* Form Container Styling */
.form-container {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

/* ICON GRID SYSTEM */
.luxury-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circular Ornament */
.icon-circle-wrapper {
  width: 75px;
  height: 75px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.icon-circle-wrapper::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border: 0.5px dashed var(--gold-light);
  border-radius: 50%;
  opacity: 0.5;
}

.icon-inner-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 8px rgba(179, 142, 68, 0.1);
}

/* FontAwesome Gold Icon Styling */
.icon-inner-circle i {
  font-size: 22px;
  background: linear-gradient(135deg, #b38e44 0%, #8a6d32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-label {
  margin-top: 15px;
  font-size: 9px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }
  .info-section {
    position: static;
  }
}

/* --- MOBILE OPTIMIZATION (iPhone & Android) --- */
@media (max-width: 768px) {
  .luxury-container {
    padding: 20px; /* Reduce padding for smaller screens */
    margin: 10px auto;
  }

  .content-wrapper {
    flex-direction: column; /* Stack left and right sections */
    gap: 25px;
  }

  /* Left Side Adjustments */
  .image-section {
    order: 1; /* Keep image at top */
  }

  h1 {
    font-size: 1.8rem; /* Smaller heading for mobile */
    text-align: center;
  }

  h1 span {
    font-size: 1.4rem;
  }

  .logo {
    text-align: center;
    font-size: 1.1rem;
  }

  .description p {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Right Side Adjustments */
  .info-section {
    order: 2;
    width: 100%;
  }

  .form-container {
    padding: 20px;
    margin-bottom: 30px;
  }

  /* Icon Grid Optimization */
  .luxury-features-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2x2 grid is better for thumb-tapping */
    gap: 20px;
    padding: 0 10px;
  }

  .icon-circle-wrapper {
    width: 65px; /* Slightly smaller icons for mobile */
    height: 65px;
  }

  .icon-inner-circle {
    width: 52px;
    height: 52px;
  }

  .icon-inner-circle i {
    font-size: 18px;
  }

  .feature-label {
    font-size: 8px; /* Compact labels */
    margin-top: 10px;
  }
}

/* Extra Small Screens (iPhone SE / Small Androids) */
@media (max-width: 380px) {
  h1 {
    font-size: 1.5rem;
  }

  .luxury-features-grid {
    grid-template-columns: 1fr; /* Single column if screen is very narrow */
  }
}
