.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: 4px 12px;
  border-radius: 30px;
  margin-top: 10px !important;
  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: #925220;
  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: #925220;
}

/* 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: #a51624;
  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: #925220;
}

/* 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: #925220;
}

/* 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: #a51624;
  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: #925220;
}

.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: #925220;
}

.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: #574b74;
  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.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 */
}

.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: 1140px;
  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: rgb(116 88 0);
  /* 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: 370px !important;
  background: linear-gradient(180deg, #916f07 0%, #39424a 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 linear-gradient(180deg, #887129 0%, #000000 100%);
}

.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, #29081c, #29081c);
  /* 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/puri-aravallis-mobile-banner.webp");
    height: auto;
    background-position: left 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;
  }

  .about-senior-wrap {
    padding: 25px 18px !important;
  }

  .hero {
    height: auto !important;
    min-height: 68vh !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .about-senior-title {
    margin-top: -68px !important;
    font-size: 19px !important;
    font-weight: 650 !important;
    margin-bottom: -18px !important;
    text-align: left !important;
  }

  .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: #fff;
  }

  .price {
    color: #fff;
  }

  .price span {
    color: gold;
  }

  .lefts h1 {
    font-size: 26px;
    text-align: left;
  }

  .price {
    background: rgb(116 88 0);
  }

  .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: 30px 33px;
}

.lux-container {
  max-width: 1140px;
  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: linear-gradient(135deg, rgb(5 5 5), rgb(0 0 0));
  /* 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: #ff9800;
}

.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: linear-gradient(135deg, rgb(5 5 5), rgb(0 0 0));
  /* 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;
}

.lux-news {
  text-align: center;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #212529;
}

@media (max-width: 575px) {
  .lux-news {
    margin-left: 5px !important;
    text-align: left !important;
  }
}

/* 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: #634800;
  /* navy hover */
  color: #fff;
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lux-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-section {
  /* background: #0b0b0c; */
  background: #fff;
  padding: 50px 112px;
  color: #000;
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header span {
  color: #c8a96a;
  letter-spacing: 3px;
  font-size: 12px;
}

.gallery-header h2 {
  margin-bottom: -12px;
  padding-top: 10px;
  font-size: 42px;
}

@media (max-width: 768px) {
  .gallery-header {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* 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: #634800;
  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;
}

.uaer-input button:hover {
  background: #b6972c;
  box-shadow: 0 0 15px rgba(205, 217, 27, 0.6);
}

/* SECTION */
.pricing-section {
  /* max-width: 1200px; */
  background: #f7f7f7 !important;
  margin: auto;
  padding: 60px 110px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 600;
  /* margin-bottom: 40px; */
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* updated */
.plan-details {
  display: flex;
  justify-content: space-between;
  margin-top: -20px;
  gap: 10px;
}

.detail-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px;
  border-radius: 10px;
  text-align: center;
}

/* Label (Size / Price) */
.label {
  display: block;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Value (On Request) */
.value {
  display: block !important;
  font-size: 13px !important;
  /* 👈 reduced */
  font-weight: 500 !important;
  /* 👈 less bold */
  color: #222 !important;
}

/* 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 {
  cursor: pointer;
  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: 55%;
  width: 109px;
  background: rgba(2, 2, 2, 0.4);
  padding: 7px 6px;
  transform: translate(-62%, -53%);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

/* CONTENT */
.plan-content {
  padding: 15px 5px 5px;
}

.plan-content span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.plan-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 4px 12px;
  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: #634800;
  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;
  }

  .outline-btn {
    width: fit-content;
    text-align: center;

    margin-top: 5px;
  }

  .gallery-section {
    padding: 20px 0px !important;
  }

  .pricing-section {
    padding: 20px 20px;
  }

  .gallery-title {
    margin-bottom: 2px !important;
  }

  .pricing-title {
    margin-bottom: 0px;
    font-size: 26px;
    /* font-weight: 600; */
  }
}

/* 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 50px 90px;
  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: 9px;
}

/* RIGHT IMAGE */
.arch-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 5px;
  border: 3px solid #faf8f8;
  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;
  }
}

/* =========================
   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;
  }
}

@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;
  }
}

/* =========================
   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: #e2eaf3;
  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: 520px !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;
}

header .container {
  position: relative !important;
}

.estate105-amenities-title {
  margin-left: -18px;
  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;
}

@media (max-width: 576px) {
  .estate105-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(180deg, #933300 0%, #650d00 100%);
  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(180deg, #326d30 0%, #584c44 100%);
  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 {
    margin-top: 21px;
    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: #ffffff;
  padding: 40px 20px;
  color: #fff;
}

@media (max-width: 575px) {
  .amenities-pro {
    padding: 1px 1px !important;
  }
}

.header {
  text-align: center;
  margin-bottom: 50px !important;
}

/* TOP TAG */
.header .tag {
  display: inline-block;
  color: #c8a96a;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .header .tag {
    margin-top: 33px !important;
  }
}

/* MAIN TITLE */
.header h2 {
  color: #000;
  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: rgb(105, 108, 107);
  color: #fff;
}

/* 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: -25px !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 */
  }
}

.about-senior-wrap {
  padding: 80px 40px;
  /* thoda side spacing maintain rakho */
  background: #f8fafc;
}

.about-senior-container {
  width: 100%;
  /* full width */
  max-width: 100%;
  /* restriction hata diya */
  margin: 0;
  /* center align hata diya */
}

.about-senior-title {
  font-size: 32px;
  font-weight: 650;
  margin-bottom: 25px;
  color: #2f3034;
  text-align: center;
  /* title center hi rahe */
}

/* @media (max-width: 576px) {
  .about-senior-title {
    margin-top: -83px;
    font-size: 19px;
    font-weight: 650;
    margin-bottom: 2px;
    text-align: left;
  }
} */

.about-senior-content {
  max-width: 1400px;
  /* optional: readability ke liye */
  margin: auto;
}

.about-senior-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  text-align: left;

  margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 576px) {
  .about-senior-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: left;
  }
}

/* FAQ */
.faq-wrap {
  padding: 80px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 25px;
}

.faq-item {
  background: #fff;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  text-align: left;
  border: none;
  background: #e9e9e9;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 18px;
}

.faq-answer p {
  padding: 0px 0 0px;
}

@media (max-width: 576px) {
  .faq-title {
    margin-top: -97px;
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px;
    text-align: left;
  }
}

/* Snippets */
/* 
.location-section {
  padding: 35px 20px;
  background: #000;
  color: #fff;
  text-align: center;
} */

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 50px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card i {
  font-size: 30px;
  color: rgb(134, 24, 90);
  margin-bottom: 15px;
}

.location-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.location-card p {
  font-size: 14px;
  color: #94a3b8;
}

/* 🔥 Hover Effect */
.location-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgb(5 5 5), rgb(0 0 0));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= SECTION ================= */
.faq-main {
  padding: 70px 20px;
  background: #ffffff;
}

/* ================= FLEX LAYOUT ================= */
.faq-flex {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.faq-left {
  flex: 0 0 50%;
}

/* RIGHT */
.faq-right {
  flex: 0 0 50%;
}

/* ================= TITLES ================= */
.why-title {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 25px;
}

@media (max-width: 576px) {
  .why-title {
    font-size: 20px;
    margin-bottom: 11px;
  }
}

/* ================= FAQ ================= */
.faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #f1f5f9;
  font-size: 14px;
  color: #475569;
}

/* ================= RIGHT BOX ================= */

/* RIGHT ITEMS */

.why-mini:last-child {
  border-bottom: none;
}

/* ================= WHY SECTION (GRID PART) ================= */
.why-section {
  padding: 60px 20px;
  background: #ffffff;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.why-item i {
  font-size: 16px;
  color: #1e3a8a;
}

.why-item p {
  font-size: 14px;
  margin: 0;
  color: #334155;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .faq-flex {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .faq-flex {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    flex: 100%;
  }
}

/* RIGHT BOX */
.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 50, 0.08);
  display: flex;
  margin-top: -40px;
  flex-direction: column;
  gap: 8px;
}

/* ITEMS (same as lux-feature style) */
.why-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 15px;
  border-radius: 10px;
  background: #e5e7eb;
  /* 👈 same light gray */
  font-size: 16px;
  color: #212529;
  transition: 0.3s;
}

/* ICON */
.why-mini i {
  color: #212529;
  font-size: 15px;
}

/* 🔥 HOVER (same as lux-feature) */
.why-mini:hover {
  background: rgb(41, 8, 28);
  /* 👈 same dark hover */
  color: #fff;
  transform: translateX(6px);
}

.why-mini:hover i {
  color: #fff;
}

/* SECTION */
.snippet-dev-wrap {
  padding: 70px 20px;
  background: #ffffff;
}

/* CONTAINER */
.snippet-dev-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT */
.snippet-left {
  flex: 0 0 60%;
}

/* RIGHT */
.developer-right {
  flex: 0 0 40%;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* TITLES */
.snippet-title,
.developer-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #212529;
}

@media (max-width: 576px) {

  .snippet-title,
  .developer-title {
    margin-top: -98px;
    font-size: 22px;
    margin-bottom: -5px;
  }
}

@media (max-width: 576px) {
  .developer-title {
    margin-top: -35px;
    font-size: 22px;
    margin-bottom: -5px;
    text-align: left;
  }
}

/* SNIPPET BOX */
.snippet-box {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.snippet-box strong {
  display: block;
  margin-bottom: 6px;
}

.snippet-box p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

/* HOVER EFFECT */
.snippet-box:hover {
  background: #e2e8f0;
  transform: translateY(-3px);
}

/* DEVELOPER TEXT */
.developer-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .snippet-dev-container {
    flex-direction: column;
  }

  .snippet-left,
  .developer-right {
    flex: 100%;
  }
}

/* MAIN CARD */
.hero-card {
  /* background: #fff; */
  /* padding: 30px; */
  border-radius: 18px;
  color: #fff;
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  /* box-shadow: 0 20px 60px rgba(0, 0, 50, 0.08); */
}

/* TITLE */
.hero-left h1 {
  font-size: 36px;
  margin-bottom: 5px;
}

.sub {
  font-size: 16px;
  color: #ddd;
}

.loc {
  margin-top: 8px;
  font-size: 14px;
  color: #cbd5e1;
}

/* INFO ROW (IMPORTANT PART) */
.info-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  /* margin-top: 25px; */
}

/* BOX */
.info-box {
  background: linear-gradient(135deg, #634800 52%, #000000 25%, #856a24 50%, #7f631b 75%, #806318 100%);

  padding: 12px 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 1);
}

/* TEXT */
.info-box span {
  display: block;
  font-size: 15px;
  color: #fff;
}

.info-box strong {
  font-size: 14px;
  margin-top: 4px;
  display: block;
  font-weight: 400;
}

/* HOVER */
.info-box:hover {
  background: linear-gradient(180deg, #726706 0%, #837006 100%);
}

/* BUTTONS */
.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-outline {
  padding: 12px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 6px;
}

.btn-fill {
  padding: 12px 20px;
  background: #c19b76;
  border: none;
  color: #fff;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .info-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-section {
    padding: 0px !important;
  }

  .lux-right {
    background: none;
    padding: 0px;
    border-radius: none;
    box-shadow: none;
  }

  .hero-card {
    padding: 10px !important;
  }
}

/* RESET (optional but recommended) */

.amenities-master {
  padding: 60px 20px;
  overflow: hidden;
}

/* .container {
    max-width: 1450px;
    margin: auto;
  } */

.heading-area {
  text-align: center;
  margin-bottom: 35px;
}

.heading-area span {
  font-size: 13px;
  letter-spacing: 4px;
  color: #b08d57;
  font-weight: 600;
}

.heading-area h2 {
  font-size: 44px;
  text-transform: capitalize;
  margin: 15px 0 -25px 0;
  color: #111;
}

.heading-area p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.amenity-layout {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}

.side {
  /* width: 32%; */
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* .side-left .pill-card:nth-child(even) {
    margin-left: 50px;
  } */

/* .side-right .pill-card:nth-child(even) {
    margin-right: 50px !important;
  } */

.pill-card {
  background: white;
  border-radius: 60px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  /* width: fit-content; */
  gap: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  border: 1px solid #ece7df;
}

.pill-card i {
  background: #b6972c;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 1.5px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  transition: 0.4s;
}

.pill-card h4 {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.pill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.pill-card:hover i {
  background: #fff;
  color: #000;
  border-color: #b08d57;
}

.inner-circle {
  /* width: 370px; */
  height: 370px;
  background: white;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  /* animation: antiRotate 20s linear infinite; */
  position: relative;
  animation: none !important;
  /* important */
  transform: none !important;
}

.center-main-img {
  width: 440px;
  height: 520px;
  object-fit: cover;
  /* border-radius: 50%; */
  border: 4px solid #b08d57;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* smaller image inside */
/* .center-main-img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  } */

/* CENTER */

/* .center-circle{
    width:390px;
    height:390px;
    min-width:390px;
 
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.center-circle::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:repeating-conic-gradient(
        from 0deg,
        #b08d57 0deg 8deg,
        transparent 8deg 16deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    animation:dashRun 7s linear infinite;
} */
@keyframes dashRun {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* .inner-circle {
    width: 270px;
    height: 270px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: antiRotate 20s linear infinite;
  } */

.inner-circle span {
  font-size: 70px;
  font-weight: 700;
  color: #b08d57;
}

.inner-circle h3 {
  font-size: 28px;
  color: #111;
  margin-bottom: 10px;
}

.inner-circle p {
  font-size: 14px;
  color: #666;
  max-width: 180px;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes antiRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* =========================
   RESPONSIVE TABLET
=========================*/
@media (max-width: 1100px) {
  .amenity-layout {
    flex-direction: column;
    gap: 35px;
  }

  /* hide center rotating circle on tablet */
  .center-circle {
    display: none;
  }

  .side {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .side-left .pill-card:nth-child(even),
  .side-right .pill-card:nth-child(even) {
    margin: 0;
  }

  .pill-card {
    width: calc(50% - 12px);
    justify-content: flex-start;
    border-radius: 18px;
    padding: 16px 18px;
  }
}

/* =========================
   MOBILE RESPONSIVE
=========================*/
@media (max-width: 768px) {
  section {
    padding: 60px 15px;
  }

  .heading-area {
    margin-bottom: 35px;
  }

  .heading-area span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .heading-area h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 10px 0;
  }

  .heading-area p {
    font-size: 14px;
    line-height: 1.7;
  }

  .amenity-layout {
    gap: 15px;
  }

  .side {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pill-card {
    width: 100%;
    padding: 8px 10px !important;
    border-radius: 14px;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  }

  .pill-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 15px;
  }

  .pill-card h4 {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* =========================
   SMALL MOBILE
=========================*/
@media (max-width: 480px) {
  section {
    padding: 30px 12px;
  }

  .heading-area h2 {
    font-size: 24px;
  }

  .heading-area p {
    font-size: 13px;
  }

  .side {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pill-card {
    padding: 12px 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .pill-card i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
  }

  .pill-card h4 {
    font-size: 12px;
  }
}

/* responsive */
@media (max-width: 1100px) {
  .amenity-layout {
    flex-direction: column;
  }

  .side {
    width: 100%;
  }

  .side-left .pill-card:nth-child(even),
  .side-right .pill-card:nth-child(even) {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .heading-area h2 {
    font-size: 34px;
  }

  .center-circle {
    width: 250px;
    height: 250px;
    min-width: 250px;
  }

  .inner-circle {
    width: 190px;
    height: 190px;
  }

  .inner-circle span {
    font-size: 45px;
  }

  .inner-circle h3 {
    font-size: 20px;
  }

  .pill-card {
    padding: 14px 18px;
  }

  .pill-card h4 {
    font-size: 11px !important;
  }
}

dl,
ol,
ul {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

/* =========================================
   PREMIUM PROJECT INTRO SECTION
========================================= */

.project-intro-section {
  background: #ffffff;
  padding: 60px 8%;
  overflow: hidden;
}

.project-intro-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}


/* =========================================
   LEFT VISUAL
========================================= */

.project-intro-visual {
  position: relative;
}

.project-intro-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.project-intro-image {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-intro-image-wrap:hover .project-intro-image {
  transform: scale(1.04);
}


/* IMAGE LABEL */

.project-intro-image-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-intro-image-label span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #634800;
  font-weight: 600;
}

.project-intro-image-label strong {
  font-size: 15px;
  color: #1f2933;
  font-weight: 700;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.project-intro-content {
  padding-right: 10px;
}

.project-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #634800;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-intro-tag i {
  font-size: 13px;
}

.project-intro-title {
  padding-bottom: 13px;
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #202124;
  letter-spacing: -0.8px;
}

.project-intro-location {
  margin: 12px 0 0;
  color: #634800;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.project-intro-divider {
  width: 65px;
  height: 3px;
  background: #634800;
  margin: 10px 0;
  border-radius: 5px;
}


/* DESCRIPTION */

.project-intro-description {
  margin: 0 0 17px;
  color: #5b6470;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   KEY DETAILS
========================================= */

.project-intro-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 28px;
}

.project-intro-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: #faf9f6;
  border: 1px solid #eee9df;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.project-intro-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.project-intro-detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #634800;
  color: #ffffff;
  font-size: 15px;
}

.project-intro-detail small {
  display: block;
  color: #8a8f96;
  font-size: 11px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.project-intro-detail strong {
  display: block;
  color: #25282c;
  font-size: 14px;
  font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .project-intro-section {
    padding: 35px 5%;
  }

  .project-intro-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .project-intro-image {
    height: 500px;
  }

  .project-intro-content {
    padding-right: 0;
  }

  .project-intro-title {
    font-size: 30px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .project-intro-section {
    padding: 10px 20px;
  }

  .project-intro-container {
    gap: 35px;
  }

  .project-intro-image {
    height: 390px;
  }

  .project-intro-image-label {
    left: 15px;
    bottom: 15px;
    padding: 13px 16px;
  }

  .project-intro-title {
    padding: 0px !important;
    font-size: 20px !important;

  }

  .project-intro-location {
    font-size: 15px;
  }

  .project-intro-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .project-intro-details {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   HIGHLIGHT SECTION
========================================= */

.highlight-section {
  position: relative;
  width: 100%;
  min-height: 395px;

  background-image: url("../img/background-style.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* =========================================
   OVERLAY
========================================= */

.highlight-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* .highlight-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 60%), rgb(16 16 16 / 22%));
} */

/* =========================================
   CONTAINER
========================================= */

.highlight-container {
  position: relative;
  z-index: 2;

  max-width: 1320px;
  margin: 0 auto;

  padding: 48px 25px 42px;
}


/* =========================================
   HEADER
========================================= */

.highlight-header {
  margin-bottom: 36px;
}

.highlight-header h2 {
  padding-bottom: 20px;
  text-align: center;
  margin: 0 0 4px;

  color: #2e2d2d;

  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1.1;

  font-weight: 800;
  letter-spacing: -0.5px;
}

.highlight-header span {
  text-align: center;
  display: block;

  color: #292828;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  line-height: 1.15;

  font-style: italic;
  font-weight: 400;
}


/* =========================================
   GRID
========================================= */

.highlight-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  column-gap: 42px;
  row-gap: 45px;
}


/* =========================================
   ITEM
========================================= */

.highlight-item {
  display: flex;
  align-items: flex-start;

  min-width: 0;
}


/* =========================================
   LETTER
========================================= */

.highlight-letter {
  flex-shrink: 0;

  width: 32px;

  color: #c89418;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 46px;
  line-height: 0.75;

  font-style: italic;
  font-weight: 400;
}


/* =========================================
   TEXT
========================================= */

.highlight-text {
  padding-top: 2px;

  color: #272626;

  font-family: Arial, sans-serif;

  font-size: 14px;
  line-height: 1.65;

  font-weight: 700;

  letter-spacing: 0.6px;

  text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .highlight-section {
    min-height: auto;
  }

  .highlight-container {
    padding: 45px 30px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);

    column-gap: 35px;
    row-gap: 35px;
  }

  .highlight-header h2 {
    font-size: 29px;
  }

  .highlight-header span {
    font-size: 35px;
  }

  .highlight-text {
    font-size: 13px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .highlight-section {
    background-position: center;
  }

  .highlight-container {
    margin-top: -36px;
    padding: 8px 20px;
  }

  .highlight-header {
    margin-bottom: 30px;
  }

  .highlight-header h2 {
    font-size: 25px;
  }

  .highlight-header span {
    font-size: 31px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .highlight-item {
    align-items: flex-start;
  }

  .highlight-letter {
    width: 30px;
    font-size: 42px;
  }

  .highlight-text {
    padding-top: 1px;

    font-size: 12px;
    line-height: 1.55;

    letter-spacing: 0.45px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .highlight-container {
    padding: 32px 16px;
  }

  .highlight-header h2 {
    font-size: 23px;
  }

  .highlight-header span {
    font-size: 28px;
  }

  .highlight-grid {
    gap: 22px;
  }

  .highlight-letter {
    width: 27px;
    font-size: 38px;
  }

  .highlight-text {
    font-size: 11px;
  }
}

/* =========================================
   PREMIUM RESIDENCE / FLOOR PLANS
========================================= */

.residence-plans-section {
  width: 100%;
  padding: 46px 6%;
  background: #f9f9f9;
}

/* =========================================
   MAIN SECTION
========================================= */

.residence-plans-section {
  width: 100%;
  padding: 46px 6%;
  background: #f9f9f9;
}

.residence-plans-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.residence-plans-header {
  margin-bottom: 42px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e3da;
}

.residence-plans-eyebrow {
  display: block;

  margin-bottom: 9px;

  text-align: center;

  color: #634800;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.residence-plans-heading h2 {
  margin: 0;

  padding-bottom: 20px;

  text-align: center;

  color: #202124;

  font-size: 40px;
  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -0.8px;
}


/* =========================================
   DESKTOP GRID
========================================= */

.residence-plans-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  width: 100%;
}


/* =========================================
   CARD
========================================= */

.residence-plan-card {
  position: relative;

  overflow: hidden;

  min-width: 0;

  background: #ffffff;

  border: 1px solid #e8e3da;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.residence-plan-card:hover {
  transform: translateY(-7px);

  border-color: #cdbb93;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.10);
}


/* =========================================
   IMAGE
========================================= */

.residence-plan-visual {
  position: relative;

  height: 315px;

  overflow: hidden;

  background: #f5f3ef;
}

.residence-plan-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  filter: blur(0.8px);
  transform: scale(1.05);
  transition: transform 0.7s ease;
}

.residence-plan-card:hover .residence-plan-image {
  filter: blur(0);
  transform: scale(1);
  transform: scale(1.06);
}


/* =========================================
   OVERLAY
========================================= */

.residence-plan-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(20, 18, 14, 0.42);

  opacity: 1;

  transition: opacity 0.4s ease;
}

.residence-plan-card:hover .residence-plan-overlay {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}


/* =========================================
   VIEW BUTTON
========================================= */

.residence-view-trigger {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 18px;

  border: 1px solid rgba(255, 255, 255, 0.65);

  background: rgb(34 29 29 / 35%);

  color: #ffffff;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.3px;

  cursor: pointer;

  backdrop-filter: blur(6px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.residence-view-trigger:hover {
  background: #634800;

  border-color: #634800;
}

.residence-view-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: rgb(161 123 56);
}

.residence-view-icon i {
  font-size: 10px;
}


/* =========================================
   CARD NUMBER
========================================= */

.residence-plan-number {
  position: absolute;

  top: 17px;
  left: 17px;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);

  color: #634800;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1px;

  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.10);
}


/* =========================================
   CARD DETAILS
========================================= */

.residence-plan-details {
  min-height: 100px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 21px 20px;

  background: #ffffff;
}

.residence-plan-type {
  display: block;

  margin-bottom: 5px;

  color: #9a9a9a;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 1.8px;
}

.residence-plan-title-wrap h3 {
  margin: 0;

  color: #242629;

  font-size: 17px;

  line-height: 1.35;

  font-weight: 700;
}


/* =========================================
   PRICE BUTTON
========================================= */

.residence-price-button {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 13px;

  border: 1px solid #634800;

  background: transparent;

  color: #634800;

  font-size: 10px;

  font-weight: 700;

  white-space: nowrap;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.residence-price-button i {
  font-size: 9px;

  transition: transform 0.3s ease;
}

.residence-price-button:hover {
  background: #634800;

  color: #ffffff;
}

.residence-price-button:hover i {
  transform: translateX(3px);
}


/* =========================================
   SLIDER DOTS
   HIDDEN DESKTOP
========================================= */

.residence-slider-dots {
  display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .residence-plans-section {
    padding: 60px 5%;
  }

  .residence-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

}


/* =========================================
   MOBILE SLIDER
========================================= */

@media (max-width: 768px) {

  .residence-plans-section {
    padding: 50px 18px;
  }

  .residence-plans-header {
    margin-bottom: 28px;

    padding-bottom: 18px;
  }

  .residence-plans-heading h2 {
    font-size: 30px;

    padding-bottom: 12px;
  }


  /* -----------------------------------------
       HORIZONTAL SLIDER
    ----------------------------------------- */

  .residence-plans-grid {

    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    gap: 14px;

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    padding: 5px 1px 10px;

    scrollbar-width: none;

    -ms-overflow-style: none;
  }

  .residence-plans-grid::-webkit-scrollbar {
    display: none;
  }


  /* -----------------------------------------
       MOBILE CARD
    ----------------------------------------- */

  .residence-plan-card {

    flex: 0 0 86%;

    width: 86%;

    min-width: 86%;

    scroll-snap-align: start;

    scroll-snap-stop: always;

    transform: none;
  }

  .residence-plan-card:hover {
    transform: none;

    box-shadow: none;
  }


  /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

  .residence-plan-visual {
    height: 275px;
  }


  /* -----------------------------------------
       MOBILE OVERLAY
    ----------------------------------------- */

  .residence-plan-overlay {
    opacity: 1;

    background:
      linear-gradient(to top,
        rgba(20, 18, 14, 0.28),
        transparent 45%);

    pointer-events: none;
  }

  .residence-view-trigger {
    pointer-events: auto;

    padding: 10px 15px;
  }


  /* -----------------------------------------
       CARD DETAILS
    ----------------------------------------- */

  .residence-plan-details {
    min-height: 92px;

    gap: 12px;

    padding: 17px 15px;
  }

  .residence-plan-title-wrap h3 {
    font-size: 15px;
  }

  .residence-price-button {
    padding: 9px 11px;

    font-size: 9px;
  }


  /* -----------------------------------------
       DOTS
    ----------------------------------------- */

  .residence-slider-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    width: 100%;

    margin-top: 15px;

    padding: 2px 0;

    position: relative;

    z-index: 10;
  }

  .residence-slider-dot {

    appearance: none;

    display: block;

    width: 7px;
    height: 7px;

    min-width: 7px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #d5d5d5;

    cursor: pointer;

    transition:
      width 0.3s ease,
      background 0.3s ease;
  }

  .residence-slider-dot.active {

    width: 24px;

    min-width: 24px;

    border-radius: 20px;

    background: #a17b38;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .residence-plans-section {
    padding: 45px 14px;
  }

  .residence-plans-heading h2 {
    font-size: 27px;
  }

  .residence-plans-eyebrow {
    font-size: 9px;

    letter-spacing: 2.5px;
  }

  .residence-plans-grid {
    gap: 12px;
  }

  .residence-plan-card {

    flex: 0 0 88%;

    width: 88%;

    min-width: 88%;
  }

  .residence-plan-visual {
    height: 255px;
  }

  .residence-plan-details {
    padding: 15px 13px;

    gap: 8px;
  }

  .residence-plan-title-wrap h3 {
    font-size: 14px;
  }

  .residence-plan-type {
    font-size: 7px;
  }

  .residence-price-button {
    padding: 8px 10px;

    font-size: 8px;
  }

}



/* =====================================================
   LUXURY AMENITIES SECTION
===================================================== */

.luxury-amenities-section {
  width: 100%;
  padding: 50px 20px;
  background-image: url("../img/background-img.jpg");
}

.luxury-amenities-wrap {
  width: 100%;
  max-width: 1250px;
  margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.luxury-amenities-heading {
  text-align: center;
  margin-bottom: 42px;
}

.luxury-amenities-eyebrow {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #a17b38;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.luxury-amenities-eyebrow::before,
.luxury-amenities-eyebrow::after {
  content: "";

  width: 30px;
  height: 1px;

  background: #b79559;
}

.luxury-amenities-heading h2 {
  margin: 13px 0 10px;
  padding-bottom: 14px;
  color: #181818;

  font-size: 43px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -1px;
}

.luxury-amenities-heading h2 strong {
  color: #a17b38;
  font-weight: 600;
}

.luxury-amenities-heading p {
  max-width: 620px;
  margin: auto;

  color: #1f1f1f;

  font-size: 16px;
  line-height: 1.7;
}


/* =====================================================
   GRID
===================================================== */

.luxury-amenities-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}


/* =====================================================
   CARD
===================================================== */

.luxury-amenity-card {
  position: relative;

  min-height: 105px;

  display: flex;
  align-items: center;

  padding: 15px 17px;

  background: #ffffff;

  border: 1px solid #e8e2d8;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* LEFT GOLD LINE */

.luxury-amenity-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background: #b08b4b;

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.35s ease;
}

.luxury-amenity-card:hover::before {
  transform: scaleY(1);
}


/* HOVER */

.luxury-amenity-card:hover {
  transform: translateY(-5px);

  border-color: #d3bf9d;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   NUMBER
===================================================== */

.luxury-card-number {
  position: absolute;

  top: 9px;
  right: 12px;

  color: #d6d0c6;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;

  transition: color 0.3s ease;
}

.luxury-amenity-card:hover .luxury-card-number {
  color: #b08b4b;
}


/* =====================================================
   ICON
===================================================== */

.luxury-card-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 14px;

  border-radius: 50%;

  background: #a17b38;

  color: #f7f3ec;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.luxury-card-icon i {
  font-size: 17px;
}

.luxury-amenity-card:hover .luxury-card-icon {
  background: #ffffff;
  color: #a17b38;
  border: 1px solid #a17b38;
  transform: scale(1.06);
}


/* =====================================================
   CONTENT
===================================================== */

.luxury-card-content {
  padding-right: 25px;
}

.luxury-card-content span {
  display: block;

  margin-bottom: 4px;

  color: #a17b38;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.luxury-card-content h3 {

  color: #252525;

  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}


/* =====================================================
   ARROW
===================================================== */

.luxury-card-arrow {
  position: absolute;

  right: 14px;
  bottom: 13px;

  color: #b8b1a7;

  font-size: 9px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.luxury-amenity-card:hover .luxury-card-arrow {
  color: #a17b38;

  transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .luxury-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  .luxury-amenities-section {
    padding: 15px 14px;
  }

  .luxury-amenities-heading {
    margin-bottom: 30px;
  }

  .luxury-amenities-eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .luxury-amenities-eyebrow::before,
  .luxury-amenities-eyebrow::after {
    width: 18px;
  }

  .luxury-amenities-heading h2 {
    font-size: 30px;
  }

  .luxury-amenities-heading p {
    font-size: 13px;
  }

  .luxury-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .luxury-amenity-card {
    min-height: 92px;

    padding: 12px 10px;
  }

  .luxury-card-icon {
    width: 39px;
    height: 39px;
    min-width: 39px;

    margin-right: 9px;
  }

  .luxury-card-icon i {
    font-size: 14px;
  }

  .luxury-card-content h3 {
    font-size: 12px;
  }

  .luxury-card-content span {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .luxury-card-arrow {
    /* display: none; */
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

  .luxury-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .luxury-amenity-card {
    min-height: 78px;
  }

  .luxury-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .luxury-card-content h3 {
    font-size: 13px;
  }

}

/* =========================================================
   PURI LOCATION ADVANTAGES
========================================================= */
.puri-location-section {
  width: 100%;
  padding: 65px 25px 60px;
  background: #fff;
  overflow: hidden;
}

.puri-location-container {
  max-width: 1280px;
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.puri-location-heading {
  text-align: center;
  margin-bottom: 42px;
}

.puri-location-eyebrow {
  display: block;
  margin-bottom: 10px;

  color: #a17b38;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.puri-location-heading h2 {
  margin: 0;

  color: #171717;
  font-family: Georgia, "Times New Roman", serif;

  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
}

.puri-heading-line {
  width: 110px;
  height: 15px;

  position: relative;

  margin: 12px auto 0;
}

.puri-heading-line::before {
  content: "";

  position: absolute;

  left: 0;
  top: 7px;

  width: 110px;
  height: 1px;

  background: #c9a45d;
}

.puri-heading-line span {
  position: absolute;

  left: 50%;
  top: 3px;

  width: 7px;
  height: 7px;

  background: #fff;

  border: 1px solid #c9a45d;

  transform: translateX(-50%) rotate(45deg);
}


/* =========================================================
   MAIN 3 COLUMN STRUCTURE
========================================================= */

.puri-location-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 330px minmax(0, 1fr);

  column-gap: 22px;

  align-items: start;
}


/* =========================================================
   LEFT / RIGHT COLUMN
========================================================= */

.puri-location-column {
  display: grid;

  grid-template-rows: repeat(5, 70px);

  row-gap: 20px;

  align-self: start;
}

.puri-location-item {
  position: relative;

  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;
}


/* =========================================================
   CARD
========================================================= */

.puri-location-card {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 8px 13px;

  background: #fff;

  border: 1px solid #e7ddce;

  box-sizing: border-box;

  box-shadow:
    0 8px 25px rgba(30, 24, 14, 0.045);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.puri-location-card:hover {
  transform: translateY(-3px);

  border-color: #c9a45d;

  box-shadow:
    0 14px 32px rgba(30, 24, 14, 0.09);
}


/* =========================================================
   ICON
========================================================= */

.puri-location-icon {
  width: 39px;
  height: 39px;

  min-width: 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #c9a45d;

  border-radius: 50%;

  background: #fff;

  color: #a17b38;

  box-sizing: border-box;

  transition: .3s ease;
}

.puri-location-icon i {
  font-size: 13px;
}

.puri-location-card:hover .puri-location-icon {
  background: #a17b38;
  color: #fff;

  transform: scale(1.05);
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.puri-location-name {
  flex: 1;

  min-width: 0;

  color: #181818;

  font-size: 16px;
  font-weight: 500;

  line-height: 1.35;
}


/* =========================================================
   DISTANCE
========================================================= */

.puri-location-distance {
  flex-shrink: 0;

  color: #2c2b2a;

  font-size: 13px;
  font-weight: 650;

  white-space: nowrap;
}


/* =========================================================
   CONNECTOR
========================================================= */

.puri-location-connector {
  position: absolute;

  top: 50%;

  width: 23px;
  height: 1px;

  background: #c9a45d;

  transform: translateY(-50%);

  z-index: 5;
}


/* LEFT SIDE */

.puri-location-left .puri-location-connector {
  right: -23px;
}


/* RIGHT SIDE */

.puri-location-right .puri-location-connector {
  left: -23px;
}


/* =========================================================
   CONNECTOR DOT
========================================================= */

.puri-location-connector::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #fff;

  border: 1px solid #c9a45d;

  transform: translateY(-50%);
}


/* LEFT DOT */

.puri-location-left .puri-location-connector::after {
  right: -3px;
}


/* RIGHT DOT */

.puri-location-right .puri-location-connector::after {
  left: -3px;
}


/* =========================================================
   CENTER MAP AREA
========================================================= */

.puri-location-map-area {
  width: 100%;

  display: flex;
  flex-direction: column;

  align-items: center;

  position: relative;

  z-index: 2;
}


/* =========================================================
   MAP FRAME
========================================================= */

.puri-location-map-frame {
  width: 100%;
  height: 430px;

  padding: 7px;

  background: #fff;

  border: 1px solid #d9c39b;

  box-sizing: border-box;

  box-shadow:
    0 18px 45px rgba(40, 30, 15, 0.10);

  position: relative;
}


/* INNER BORDER */

.puri-location-map-frame::before {
  content: "";

  position: absolute;

  inset: 4px;

  border: 1px solid #eee4d3;

  pointer-events: none;

  z-index: 3;
}


/* MAP */

.puri-location-map {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   PIN
========================================================= */

.puri-location-pin-wrap {
  display: flex;

  flex-direction: column;

  align-items: center;

  margin-top: 12px;
}

.puri-location-pin {
  width: 37px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #a17b38;

  color: #fff;

  box-shadow:
    0 7px 18px rgba(161, 123, 56, .22);
}

.puri-location-pin i {
  font-size: 15px;
}

.puri-location-pin-wrap span {
  margin-top: 8px;

  color: #111;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 4px;

  white-space: nowrap;
}


/* =========================================================
   DESKTOP - WIDER
========================================================= */

@media (min-width: 1200px) {

  .puri-location-layout {
    grid-template-columns:
      minmax(350px, 1fr) 330px minmax(350px, 1fr);

    column-gap: 22px;
  }

  .puri-location-card {
    padding-left: 13px;
    padding-right: 13px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .puri-location-section {
    padding: 55px 20px;
  }

  .puri-location-layout {
    grid-template-columns: 1fr;

    row-gap: 28px;
  }

  .puri-location-map-area {
    order: 1;

    max-width: 500px;

    margin: 0 auto;
  }

  .puri-location-left {
    order: 2;
  }

  .puri-location-right {
    order: 3;
  }

  .puri-location-column {
    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: auto;

    row-gap: 12px;
    column-gap: 12px;
  }

  .puri-location-item {
    height: 68px;
  }

  .puri-location-connector {
    display: none;
  }

  .puri-location-map-frame {
    height: 440px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .puri-location-section {
    padding: 45px 14px 50px;
  }

  .puri-location-heading {
    margin-bottom: 30px;
  }

  .puri-location-heading h2 {
    font-size: 28px;
  }

  .puri-location-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .puri-location-layout {
    row-gap: 22px;
  }

  .puri-location-map-area {
    max-width: 100%;
  }

  .puri-location-map-frame {
    height: 360px;

    padding: 6px;
  }

  .puri-location-column {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .puri-location-item {
    height: 65px;
  }

  .puri-location-card {
    padding: 8px 11px;
  }

  .puri-location-icon {
    width: 37px;
    height: 37px;

    min-width: 37px;
  }

  .puri-location-name {
    font-size: 14px;
  }

  .puri-location-distance {
    font-size: 12px;
  }

  .puri-location-pin-wrap span {
    font-size: 7px;
    letter-spacing: 3px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .puri-location-heading h2 {
    font-size: 25px;
  }

  .puri-location-map-frame {
    height: 320px;
  }

  .puri-location-name {
    font-size: 13px;
  }

  .puri-location-distance {
    font-size: 11px;
  }
}