/* =========================================================
   START : DESIGN TOKENS
========================================================= */

:root {
  --dark: #0d2016;
  --dark2: #122a1c;

  --gold: #d4a64f;
  --gold-light: #e6bb6a;

  --white: #ffffff;
  --off-white: #f7f5f0;
  --light-bg: #f2f0eb;

  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-muted: #777;

  --border: #e0ddd6;
  --card-bg: #ffffff;

  --green-deep: #0d2016;
}

/* =========================================================
   END : DESIGN TOKENS
========================================================= */


/* =========================================================
   START : TYPOGRAPHY
========================================================= */

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
}

h1,
h2,
h3,
.h1,
.h2,
.h3,
.logo-text h2,
.project-name,
.modal-title,
.section-title {
  font-family: 'Playfair Display', serif;
}

.gold {
  color: var(--gold);
}

.hero-section-padding {
  padding: 130px 0;
}

@media (max-width: 767px) {
  .hero-section-padding {
    padding: 125px 0 60px 0;
  }
}

.section-tag {
  margin-bottom: 8px;

  color: var(--gold);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  color: var(--dark);

  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
}

.section-sub {
  max-width: 700px;

  color: var(--text-muted);

  font-size: 18px;
}

/* =========================================================
   END : TYPOGRAPHY
========================================================= */


/* =========================================================
   START : NAVBAR
========================================================= */

.navbar {
  padding: 15px 0;

  background: rgba(13, 32, 22, 0.15);
  backdrop-filter: blur(4px);

  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 0;

  background: rgba(13, 32, 22, 0.97);

  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;

  font-size: 15px;
  font-weight: 500;

  padding: 10px 15px;

  transition: 0.3s;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark);
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    border: 1px solid rgba(212, 166, 79, 0.2);
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-cta {
  padding: 10px 24px;

  border: none;
  border-radius: 8px;

  background: var(--gold);
  color: var(--dark);

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* =========================================================
   END : NAVBAR
========================================================= */


/* =========================================================
   START : HERO SECTION
========================================================= */

.hero {
  min-height: 100vh;
  background: #0b1d14;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(7, 20, 14, 0.96) 0%,
      rgba(7, 20, 14, 0.88) 30%,
      rgba(7, 20, 14, 0.35) 65%,
      rgba(7, 20, 14, 0.08) 100%),
    url("../images/index-bg.png") center center/cover no-repeat;

  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(6, 16, 11, 0.75) 0%,
      rgba(6, 16, 11, 0.15) 45%,
      rgba(6, 16, 11, 0.05) 100%);
}

.hero-title {
  color: #fff;

  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);

  font-size: clamp(16px, 2vw, 21px);
}

.rera-badge {
  display: inline-block;

  padding: 10px 20px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.04);
  color: #fff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* =========================================================
   END : HERO SECTION
========================================================= */


/* =========================================================
   START : HERO BADGES
========================================================= */

.hero-badges {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;

  margin-bottom: 48px;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  min-width: 150px;

  margin-right: 34px;
  padding-right: 34px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge img {
  width: 50px;
  height: 50px;

  margin-bottom: 14px;

  object-fit: contain;
}

.hero-badge span {
  color: #fff;
  opacity: 0.92;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

/* =========================================================
   END : HERO BADGES
========================================================= */


/* =========================================================
   START : HERO STATS
========================================================= */

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 100%;

  overflow: hidden;

  border-top: 1px solid rgba(212, 166, 79, 0.25);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;

  background:
    linear-gradient(90deg,
      rgba(0, 68, 47, 0.96) 0%,
      rgba(0, 55, 40, 0.96) 100%);

  backdrop-filter: blur(10px);
}

.stat-col {
  position: relative;
}

.stat-border::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 58px;

  background: rgba(255, 255, 255, 0.08);

  transform: translateY(-50%);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 28px 34px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  flex-shrink: 0;

  border: 1px solid rgba(212, 166, 79, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.02);
}

.stat-icon img {
  width: 50px;
  height: 50px;

  object-fit: contain;
  opacity: 0.95;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-num {
  margin-bottom: 8px;

  color: #fff;

  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

/* =========================================================
   END : HERO STATS
========================================================= */


/* =========================================================
   START : BUTTONS
========================================================= */

.btn-gold {
  display: inline-block;

  padding: 16px 32px;

  border: none;
  border-radius: 12px;

  background: var(--gold);
  color: #fff;

  font-size: 17px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 20px rgba(212, 166, 79, 0.2);

  transition: 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 12px 24px rgba(212, 166, 79, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 32px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  color: #fff;

  font-weight: 600;
  text-decoration: none;

  backdrop-filter: blur(10px);

  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #fff;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* =========================================================
   END : BUTTONS
========================================================= */


/* =========================================================
   START : PROJECT CARDS
========================================================= */

.project-card {
  overflow: hidden;

  border: none;
  border-radius: 16px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rera-tag {
  position: absolute;
  top: 15px;
  right: 15px;

  padding: 5px 12px;

  border-radius: 4px;

  background: var(--dark);
  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.project-enquire-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(13, 32, 22, 0.85);

  opacity: 0;

  transition: 0.3s ease;
}

.project-card:hover .project-enquire-overlay {
  opacity: 1;
}

.btn-enquire-now {
  padding: 10px 24px;

  border: none;
  border-radius: 8px;

  background: var(--gold);
  color: var(--dark);

  font-size: 14px;
  font-weight: 700;
}

.btn-call-now {
  padding: 8px 24px;

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;

  background: transparent;
  color: #fff;

  font-size: 14px;
  text-decoration: none;
}

/* =========================================================
   END : PROJECT CARDS
========================================================= */


/* =========================================================
   START : STICKY CTA
========================================================= */

.sticky-cta {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.sticky-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: #25D366;

  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);

  transition: 0.3s;
}

.sticky-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
}

.sticky-enquire {
  padding: 12px 24px;

  border: none;
  border-radius: 50px;

  background: var(--gold);
  color: var(--dark);

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 4px 15px rgba(212, 166, 79, 0.3);
}

/* =========================================================
   END : STICKY CTA
========================================================= */


/* =========================================================
   START : UTILITY CLASSES
========================================================= */

.text-gold {
  color: var(--gold);
}

.bg-gold {
  background-color: var(--gold);
}

.smaller {
  font-size: 0.75rem;
}

/* =========================================================
   END : UTILITY CLASSES
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

/* Tablet */
@media (max-width: 991px) {

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 24px;
  }

  .stat-border:nth-child(2)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-top: 20px;
  }

  .hero-title {
    font-size: 42px !important;
    line-height: 1.2;
  }

  .hero-badges {
    gap: 15px 0;
    margin-bottom: 30px;
  }

  .hero-badge {
    width: 50%;
    min-width: auto;
    margin-right: 0;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-badge:nth-child(even) {
    padding-left: 15px;
    padding-right: 0;
    border-right: none;
  }

  .hero-stats {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 30px;
    border-radius: 0;
  }

  .stat-border::after {
    display: none;
  }

  .stat-item {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 166, 79, 0.1);
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */


/* =========================================================
   START : FEATURED PROJECTS
========================================================= */

.project-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid #ece7df;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, .04);

  transition: .35s ease;
}

.project-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, .08);
}

/* ---------- Image ---------- */

.project-img {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.06);
}

/* ---------- RERA Badge ---------- */

.rera-badge-card {
  position: absolute;
  top: 18px;
  right: 18px;

  padding: 10px 14px;

  border-radius: 14px;

  background: #004a35;
  color: #fff;

  text-align: center;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;

  box-shadow:
    0 4px 14px rgba(0, 0, 0, .12);
}

/* ---------- Content ---------- */

.project-content {
  padding: 28px;
}

.project-title {
  margin-bottom: 10px;

  color: var(--dark);

  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.project-location {
  margin-bottom: 28px;

  color: #6f6f6f;

  font-size: 18px;
  font-weight: 500;
}

/* ---------- Specs ---------- */

.project-specs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 28px;
}

.project-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  flex: 1;
}

.spec-icon img {
  width: 28px;
  height: 28px;

  object-fit: contain;
}

.spec-value {
  color: var(--dark);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.spec-label {
  color: #7b7b7b;

  font-size: 15px;
  line-height: 1.4;
}

/* ---------- Button ---------- */

.project-btn {
  width: 100%;

  padding: 18px 20px;

  border: none;
  border-radius: 14px;

  background: #004a35;
  color: #fff;

  font-size: 18px;
  font-weight: 700;

  transition: .3s ease;
}

.project-btn:hover {
  background: #006348;
}

/* ---------- Slider Buttons ---------- */

.project-arrow-btn {
  width: 42px;
  height: 42px;

  border: 1px solid #ddd;
  border-radius: 50%;

  background: #fff;
  color: #111;

  font-size: 22px;
  font-weight: 600;

  transition: .3s ease;
}

.project-arrow-btn:hover {
  background: #004a35;
  color: #fff;
  border-color: #004a35;
}

/* =========================================================
   END : FEATURED PROJECTS
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .project-title {
    font-size: 30px;
  }
}

@media(max-width:767px) {

  .project-img {
    height: 240px;
  }

  .project-content {
    padding: 22px;
  }

  .project-title {
    font-size: 26px;
  }

  .project-location {
    font-size: 16px;
  }

  .project-specs {
    flex-direction: column;
    gap: 20px;
  }

  .spec-value {
    font-size: 17px;
  }

  .project-btn {
    padding: 16px;
    font-size: 16px;
  }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */

/* =========================================================
   START : AMENITY ICON
========================================================= */

.amenity-icon-wrapper {
  display: flex;
  justify-content: center;
}

.amenity-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  /* background:
    linear-gradient(180deg,
      rgba(212, 166, 79, 0.10) 0%,
      rgba(212, 166, 79, 0.04) 100%); */

  border: 1px solid rgba(212, 166, 79, 0.12);
}

.amenity-icon img {
  height: 40px;
  width: 40px;

  object-fit: contain;
}

/* =========================================================
   END : AMENITY ICON
========================================================= */

/* =========================================================
   START : WHY RAJBHOOMI
========================================================= */

.why-section {
  background: #fff;
}

/* ---------- Layout ---------- */

.why-wrapper {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* ---------- Left ---------- */

.why-content {
  background: #fff;

  padding: 48px;

  border-radius: 28px;

  border: 1px solid #ece7df;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .04);
}

.why-subtitle {
  margin-bottom: 40px;

  color: #6f6f6f;

  font-size: 20px;
  font-weight: 500;
}

/* ---------- Features ---------- */

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.why-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 20px;

  background:
    linear-gradient(180deg,
      rgba(212, 166, 79, .12) 0%,
      rgba(212, 166, 79, .05) 100%);
}

.why-icon img {
  width: 50px;
  height: 50px;

  object-fit: contain;
}

.why-item-content {
  flex: 1;
}

.why-item-title {
  margin-bottom: 10px;
  color: var(--dark);
}

.why-item-desc {
  margin: 0;

  color: #7a7a7a;

  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Founder Card ---------- */

.founder-card {
  height: 100%;
}

.founder-overlay {
  height: 100%;
  padding: 48px;
  background: var(--dark);
  border-radius: 28px;
  border: 1px solid #ece7df;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.founder-image {
  width: 320px;
  height: 320px;
  margin-bottom: 32px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-content {
  max-width: 100%;
  color: #fff;
}

.founder-quote {
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
}

.founder-name {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   END : WHY RAJBHOOMI
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

@media(max-width:1199px) {

  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .founder-overlay {
    min-height: 500px;
  }
}

@media(max-width:767px) {

  .why-content {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .why-subtitle {
    margin-bottom: 32px;
    font-size: 17px;
  }

  .why-list {
    gap: 26px;
  }

  .why-item {
    gap: 16px;
  }

  .why-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;
  }

  .why-icon img {
    width: 28px;
    height: 28px;
  }

  .why-item-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .why-item-desc {
    display: none;
  }

  /* Founder Card Mobile */

  .founder-overlay {
    padding: 32px 24px;
  }

  .founder-image {
    height: 300px;
    margin-bottom: 24px;
  }

  .founder-quote {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .founder-name {
    font-size: 16px;
  }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */


/* =========================================================
   START : LIVE THE LIFE
========================================================= */

.video-card {
  height: 520px;

  border: 2px solid rgba(212, 166, 79, .35);

  background: #003b2a;
}

/* ---------- Background ---------- */

.video-bg {
  position: absolute;
  inset: 0;

  background:
    url('../images/video-banner.png') center center/cover no-repeat;

  transform: scale(1.02);
}

/* ---------- Overlay ---------- */

.video-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(0, 50, 35, .95) 0%,
      rgba(0, 50, 35, .82) 32%,
      rgba(0, 50, 35, .18) 65%,
      rgba(0, 50, 35, .05) 100%);
}

/* ---------- Content ---------- */

.video-content {
  padding: 60px;
}

/* ---------- Title ---------- */

.video-title {
  color: #fff;

  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Subtitle ---------- */

.video-subtitle {
  color: rgba(255, 255, 255, .88);

  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
}

/* ---------- Play Button ---------- */

.play-btn {
  width: 82px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--gold);
  border-radius: 50%;

  background: transparent;
  color: var(--gold);

  font-size: 30px;

  transition: .3s ease;
}

.play-btn:hover {
  background: var(--gold);
  color: #003b2a;
}

.play-label {
  color: #fff;

  font-size: 28px;
  font-weight: 600;
}

/* =========================================================
   END : LIVE THE LIFE
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .video-card {
    height: 520px;
  }

  .video-content {
    padding: 40px;
  }

  .video-title {
    font-size: 46px;
  }

  .video-subtitle {
    font-size: 20px;
  }

  .play-label {
    font-size: 22px;
  }
}

@media(max-width:767px) {

  .video-card {
    height: 300px;

    border-radius: 26px !important;
  }

  .video-content {
    padding: 28px;
  }

  .video-left {
    max-width: 220px;
  }

  .video-title {
    font-size: 28px;
    line-height: 1.45;
  }

  .video-subtitle {
    margin-bottom: 28px !important;

    font-size: 15px;
    line-height: 1.8;
  }

  .play-btn {
    width: 58px;
    height: 58px;

    font-size: 20px;
  }

  .play-label {
    font-size: 18px;
  }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */

/* =========================================================
   START : PLOT SEARCH FORM
========================================================= */

.plot-form-card {
  padding: 42px;

  border: 2px solid rgba(212, 166, 79, .28);
  border-radius: 26px;

  background:
    linear-gradient(135deg,
      #003a2a 0%,
      #005339 100%);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .08);
}

/* ---------- Heading ---------- */

.plot-form-title {
  margin-bottom: 14px;

  color: #fff;

  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
}

.plot-form-subtitle {
  margin-bottom: 34px;

  color: rgba(255, 255, 255, .82);

  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
}

/* ---------- Select ---------- */

.custom-select {
  height: 68px;

  padding: 0 22px;

  border: none;
  border-radius: 14px;

  background-color: #fff;

  color: #444;

  font-size: 18px;
  font-weight: 500;

  box-shadow: none !important;
}

.custom-select:focus {
  border: none;
  box-shadow: none;
}

/* ---------- Button ---------- */

.plot-search-btn {
  width: 100%;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: none;
  border-radius: 14px;

  background: var(--gold);
  color: #fff;

  font-size: 22px;
  font-weight: 700;

  transition: .3s ease;
}

.plot-search-btn:hover {
  background: var(--gold-light);
}

.search-icon {
  font-size: 20px;
}

/* =========================================================
   END : PLOT SEARCH FORM
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .plot-form-title {
    font-size: 36px;
  }

  .plot-form-subtitle {
    font-size: 18px;
  }
}

@media(max-width:767px) {

  .plot-form-card {
    padding: 28px;
    border-radius: 22px;
  }

  .plot-form-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .plot-form-subtitle {
    margin-bottom: 26px;

    font-size: 16px;
    line-height: 1.7;
  }

  .custom-select {
    height: 58px;

    padding: 0 18px;

    font-size: 15px;
  }

  .plot-search-btn {
    height: 60px;

    font-size: 18px;
  }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */

.site-plan-img-main {
  height: 550px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .site-plan-img-main {
    height: 300px;
  }
}