/* ==========================================================================
   Palm Crest — DDJAY Residential Plots
   Design system: Govt. Yojna trust (deep green) + Premium developer feel (gold)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --pc-green: #1f7a44;
  --pc-green-dark: #145c34;
  --pc-green-light: #e8f4ec;
  --pc-gold: #bb9433;
  --pc-gold-light: #f3e6bf;
  --pc-gold-dark: #8f6f22;
  --pc-dark: #123821;
  --pc-cream: #faf8f2;
  --pc-text: #2a2a26;
  --pc-white: #ffffff;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--pc-text);
  background: var(--pc-cream);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, .brand-font {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

/* ==========================================================================
   Top Info Bar
   ========================================================================== */
.pc-topbar {
  background: linear-gradient(90deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  color: var(--pc-white);
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--pc-gold);
}

.pc-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pc-topbar-contact a {
  color: var(--pc-white);
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.pc-topbar-contact a:hover {
  color: var(--pc-gold-light);
}

.pc-topbar-contact i {
  color: var(--pc-gold);
}

.pc-topbar-marquee {
  flex: 1 1 auto;
  max-width: 62%;
  min-width: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, var(--pc-gold-light), var(--pc-gold));
  border-radius: 30px;
  padding: 4px 0;
  white-space: nowrap;
}

.pc-topbar-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: pc-topbar-marquee-scroll 22s linear infinite;
}

.pc-topbar-marquee-track span {
  display: inline-block;
  padding: 0 6px 0 14px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--pc-dark);
  letter-spacing: 0.1px;
}

.pc-topbar-marquee-track i {
  color: var(--pc-green-dark);
  margin-right: 4px;
}

@keyframes pc-topbar-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Main Navbar
   ========================================================================== */
.pc-navbar {
  background: var(--pc-white);
  padding: 10px 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--pc-green);
}

.pc-navbar .navbar-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.pc-navbar .navbar-brand {
  display: flex;
  align-items: center;
}

.pc-navbar .navbar-brand img {
  height: 52px;
  width: auto;
}

.pc-navbar .navbar-top-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-nav-link {
  color: var(--pc-dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 11px !important;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.pc-nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--pc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.pc-nav-link:hover,
.pc-nav-link:focus {
  color: var(--pc-green) !important;
}

.pc-nav-link:hover::after {
  transform: scaleX(1);
}

/* Blinking Registration Online button */
.btn-pc-register {
  background: linear-gradient(90deg, var(--pc-green), var(--pc-green-dark));
  color: var(--pc-white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 30px;
  border: 2px solid var(--pc-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(184, 145, 47, 0.6);
  animation: pc-register-blink 1.6s infinite;
}

.btn-pc-register:hover {
  background: linear-gradient(90deg, var(--pc-green-dark), var(--pc-dark));
  color: var(--pc-white) !important;
}

.btn-pc-register-mobile {
  padding: 7px 12px;
  font-size: 0.72rem;
  white-space: nowrap;
}

@keyframes pc-register-blink {
  0% { box-shadow: 0 0 0 0 rgba(184, 145, 47, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(184, 145, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 145, 47, 0); }
}

.pc-navbar .navbar-toggler {
  border-color: var(--pc-green);
}

.pc-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(28, 107, 58, 0.35);
}

/* ==========================================================================
   Responsive — smaller fonts/headings on mobile
   ========================================================================== */
@media (max-width: 991.98px) {
  .pc-navbar .navbar-collapse {
    margin-top: 12px;
    border-top: 1px solid var(--pc-green-light);
    padding-top: 10px;
  }

  .pc-nav-link {
    padding: 10px 6px !important;
    font-size: 0.92rem;
  }

  .pc-nav-link::after { display: none; }
}

@media (max-width: 767.98px) {
  html { font-size: 14.5px; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .pc-topbar { font-size: 0.72rem; }
  .pc-topbar-contact { display: none; }
  .pc-topbar-marquee { max-width: 100%; flex-basis: 100%; order: 3; }
  .pc-topbar-marquee-track span { font-size: 0.7rem; }

  .pc-navbar .navbar-brand img { height: 40px; }
}

@media (max-width: 575.98px) {
  html { font-size: 13.5px; }

  .pc-topbar-contact a span.pc-contact-label { display: none; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.pc-hero {
  padding: 0;
  background: var(--pc-cream);
}

.pc-hero-row {
  min-height: 620px;
}

.pc-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.pc-hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.pc-hero-badge-newlaunch {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--pc-gold), var(--pc-gold-dark));
  color: var(--pc-white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  padding: 9px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.pc-hero-detail-wrap {
  background: linear-gradient(160deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  display: flex;
  align-items: center;
  padding: 46px 40px;
  position: relative;
}

.pc-hero-detail-card {
  width: 100%;
  color: var(--pc-white);
}

.pc-hero-pretag {
  display: inline-block;
  color: var(--pc-dark);
  background: linear-gradient(90deg, var(--pc-gold-light), var(--pc-gold));
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pc-hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.pc-hero-price-label {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.pc-hero-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--pc-gold-light);
  line-height: 1;
}

.pc-hero-price-value small {
  font-size: 1.1rem;
  color: var(--pc-gold);
}

.pc-hero-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pc-white);
  margin-bottom: 6px;
  line-height: 1.25;
}

.pc-hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pc-hero-info-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.pc-hero-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.pc-hero-info-list li:last-child {
  border-bottom: none;
}

.pc-hero-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184, 145, 47, 0.18);
  border: 1px solid rgba(184, 145, 47, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-gold-light);
  font-size: 1rem;
}

.pc-hero-info-list strong {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pc-hero-info-list li > div > span {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--pc-white);
}

.pc-hero-rera-link {
  display: inline-block;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--pc-gold-light) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pc-hero-rera-link:hover {
  color: var(--pc-gold) !important;
}

.pc-hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-pc-hero-register {
  font-size: 1rem;
  padding: 13px 28px;
  background: var(--pc-white);
  color: var(--pc-green-dark) !important;
  border-color: var(--pc-gold);
}

.btn-pc-hero-register:hover {
  background: var(--pc-gold-light);
  color: var(--pc-green-dark) !important;
}

.pc-hero-helpline {
  color: var(--pc-gold-light);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pc-hero-helpline:hover {
  color: var(--pc-gold);
}

@media (max-width: 991.98px) {
  .pc-hero-row { min-height: auto; }
  .pc-hero-media { min-height: 300px; }
  .pc-hero-img { min-height: 300px; }
  .pc-hero-detail-wrap { padding: 36px 26px; }
}

@media (max-width: 767.98px) {
  .pc-hero-badge-newlaunch { top: 14px; left: 14px; font-size: 0.72rem; padding: 7px 14px; }
  .pc-hero-price-value { font-size: 2.1rem; }
  .pc-hero-title { font-size: 1.5rem; }
  .pc-hero-detail-wrap { padding: 30px 20px; }
  .pc-hero-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ==========================================================================
   Key Dates Strip
   ========================================================================== */
.pc-dates {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.pc-date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 26px 16px;
  color: var(--pc-white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.pc-date-card:last-child {
  border-right: none;
}

.pc-date-card {
  background: linear-gradient(160deg, var(--pc-green-dark) 0%, var(--pc-dark) 100%);
}

.pc-date-icon {
  font-size: 1.4rem;
  color: var(--pc-gold-light);
  margin-bottom: 2px;
}

.pc-date-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.8;
}

.pc-date-value {
  font-size: 1.05rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .pc-date-card { padding: 20px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .pc-date-card:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
  .pc-date-icon { font-size: 1.25rem; }
  .pc-date-label { font-size: 0.68rem; }
  .pc-date-value { font-size: 0.95rem; }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.pc-section-heading {
  margin-bottom: 26px;
}

.pc-section-tag {
  display: inline-block;
  background: var(--pc-green-light);
  color: var(--pc-green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin: 0;
}

.pc-about {
  padding: 40px 0;
}

.pc-about-content {
  width: 100%;
}

.pc-about-box {
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.25);
  border-radius: 16px;
  padding: 26px 40px;
  box-shadow: 0 12px 34px rgba(14, 68, 35, 0.07);
}

.pc-about-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #4a4a44;
  margin-bottom: 16px;
}

.pc-about-location-tag {
  text-align: center;
  font-weight: 700;
  color: var(--pc-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  margin: 26px 0 20px;
}

.pc-about-location-tag i {
  color: var(--pc-gold-dark);
  margin-right: 4px;
}

.pc-about-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--pc-green-light) 0%, #ffffff 100%);
  border-left: 5px solid var(--pc-gold);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(14, 68, 35, 0.08);
}

.pc-about-highlight i.bi-quote {
  font-size: 1.5rem;
  color: var(--pc-gold);
  display: block;
  margin-bottom: 6px;
}

.pc-about-highlight p {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--pc-green-dark);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767.98px) {
  .pc-about { padding: 50px 0; }
  .pc-about-box { padding: 26px 22px; }
  .pc-about-content p { font-size: 1rem; }
  .pc-about-highlight { padding: 20px 20px; }
  .pc-about-highlight p { font-size: 1.05rem; }
}

/* ==========================================================================
   Payment Plan Section
   ========================================================================== */
.pc-payment {
  padding: 60px 0;
}

.pc-table-scroll-note {
  font-size: 0.82rem;
  color: var(--pc-green-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.pc-payment-table-wrap {
  border-radius: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: 0 12px 34px rgba(18, 56, 33, 0.1);
  border: 1px solid rgba(184, 145, 47, 0.2);
}

.pc-payment-table {
  margin-bottom: 0;
  min-width: 1100px;
}

.pc-payment-table thead th {
  background: linear-gradient(160deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  color: var(--pc-white);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
  vertical-align: middle;
  padding: 10px 6px;
  border: none;
}

.pc-payment-table thead th small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: none;
  opacity: 0.75;
  margin-top: 2px;
}

.pc-payment-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-text);
  border-color: rgba(184, 145, 47, 0.15);
}

.pc-payment-table tbody tr:nth-child(even) {
  background: rgba(184, 145, 47, 0.08);
}

.pc-payment-size-cell {
  font-weight: 700;
  color: var(--pc-green-dark);
}

.pc-payment-type-cell {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--pc-dark);
  background: var(--pc-gold-light) !important;
  border-right: 2px solid rgba(184, 145, 47, 0.35);
  letter-spacing: 0.3px;
}

.pc-payment-table tbody td:last-child {
  font-weight: 800;
  color: var(--pc-gold-dark);
  background: rgba(184, 145, 47, 0.08);
}

.pc-payment-notes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pc-payment-notes p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pc-green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-payment-notes p:last-child {
  margin-left: auto;
  text-align: right;
}

.pc-payment-notes i {
  color: var(--pc-gold-dark);
}

.pc-payment-refund-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 22px auto 0;
  padding: 12px 24px;
  max-width: 620px;
  background: linear-gradient(90deg, var(--pc-green-light), #ffffff, var(--pc-green-light));
  border: 1px solid rgba(184, 145, 47, 0.35);
  border-radius: 30px;
  color: var(--pc-green-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.pc-payment-refund-badge i {
  color: var(--pc-gold-dark);
  font-size: 1.05rem;
}

@media (max-width: 767.98px) {
  .pc-payment { padding: 44px 0; }
  .pc-table-scroll-note { display: block; }
  .pc-payment-notes { flex-direction: column; gap: 8px; }
  .pc-payment-notes p:last-child { margin-left: 0; text-align: left; }
  .pc-payment-notes p { font-size: 0.8rem; }
  .pc-payment-refund-badge { font-size: 0.78rem; padding: 10px 16px; }
}

/* Always-visible styled scrollbar under the payment table */
.pc-payment-table-wrap {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: var(--pc-gold) var(--pc-green-light);
  padding-bottom: 4px;
}

.pc-payment-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.pc-payment-table-wrap::-webkit-scrollbar-track {
  background: var(--pc-green-light);
  border-radius: 10px;
}

.pc-payment-table-wrap::-webkit-scrollbar-thumb {
  background: var(--pc-gold);
  border-radius: 10px;
  border: 2px solid var(--pc-green-light);
}

.pc-payment-table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--pc-gold-dark);
}

/* ==========================================================================
   Why Palm Crest Is A Smart Investment
   ========================================================================== */
.pc-invest {
  padding: 64px 0;
  background: var(--pc-green-light);
}

.pc-invest-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--pc-white);
  box-shadow: 0 18px 40px rgba(18, 56, 33, 0.16);
}

.pc-invest-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.pc-invest .pc-section-tag {
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.35);
}

.pc-invest-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4a44;
  margin: 16px 0 26px;
}

.pc-invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pc-invest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.22);
  border-radius: 12px;
  padding: 13px 14px;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--pc-green-dark);
  box-shadow: 0 4px 14px rgba(18, 56, 33, 0.05);
}

.pc-invest-item i {
  color: var(--pc-gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .pc-invest-img-wrap img { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .pc-invest { padding: 46px 0; }
  .pc-invest-grid { grid-template-columns: 1fr; }
  .pc-invest-desc { font-size: 0.9rem; }
}

/* ==========================================================================
   Site Plan Section
   ========================================================================== */
.pc-siteplan {
  padding: 60px 0;
}

.pc-siteplan-frame {
  position: relative;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--pc-white);
  box-shadow: 0 16px 40px rgba(18, 56, 33, 0.14);
  transition: box-shadow 0.25s ease;
}

.pc-siteplan-frame:hover {
  box-shadow: 0 20px 48px rgba(18, 56, 33, 0.22);
}

.pc-siteplan-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.pc-siteplan-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(18, 56, 33, 0.85);
  color: var(--pc-white);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--pc-gold);
}

.pc-siteplan-modal .modal-content {
  background: transparent;
  border: none;
}

.pc-siteplan-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background-color: var(--pc-white);
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  z-index: 5;
}

@media (max-width: 767.98px) {
  .pc-siteplan { padding: 44px 0; }
  .pc-siteplan-hint { font-size: 0.72rem; padding: 6px 12px; bottom: 10px; right: 10px; }
  .pc-siteplan-modal-close { top: 8px; right: 8px; }
}

/* ==========================================================================
   Location Advantage Section
   ========================================================================== */
.pc-location {
  padding: 48px 0;
  background: var(--pc-green-light);
}

.pc-location-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.pc-location-map-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(184, 145, 47, 0.25);
  box-shadow: 0 14px 36px rgba(18, 56, 33, 0.16);
}

.pc-location-map-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pc-location-map-frame:hover img {
  transform: scale(1.05);
}

.pc-location-map-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 56, 33, 0.85);
  color: var(--pc-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.pc-location-map-frame:hover .pc-location-map-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.pc-location-map-modal .modal-content {
  background: transparent;
  border: none;
}

.pc-location-map-modal img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pc-location-map-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  opacity: 1;
  background-color: rgba(18, 56, 33, 0.65);
  border-radius: 50%;
  padding: 9px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pc-location-map-modal-close:hover {
  background-color: rgba(18, 56, 33, 0.9);
}

.pc-location-content-col .pc-location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  max-width: none;
  margin: 0;
}

@media (max-width: 991.98px) {
  .pc-location-wrapper { grid-template-columns: 1fr; }
  .pc-location-map-frame { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 575.98px) {
  .pc-location-content-col .pc-location-list { grid-template-columns: 1fr; }
}

.pc-location-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.2);
  border-radius: 10px;
  padding: 9px 12px;
  box-shadow: 0 4px 14px rgba(18, 56, 33, 0.05);
}

.pc-location-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pc-green-light);
  border: 1px solid rgba(184, 145, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-gold-dark);
  font-size: 0.85rem;
}

.pc-location-name {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--pc-text);
  line-height: 1.3;
}

.pc-location-time {
  flex-shrink: 0;
  background: var(--pc-green-dark);
  color: var(--pc-white);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .pc-location { padding: 44px 0; }
  .pc-location-list { grid-template-columns: 1fr; }
  .pc-location-name { font-size: 0.8rem; }
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */
.pc-amenities {
  padding: 64px 0;
}

.pc-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pc-amenity-card {
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.2);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 22px rgba(18, 56, 33, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pc-amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18, 56, 33, 0.12);
}

.pc-amenity-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.pc-amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pc-amenity-card:hover .pc-amenity-img-wrap img {
  transform: scale(1.06);
}

.pc-amenity-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pc-green-dark);
  margin: 16px 18px 8px;
}

.pc-amenity-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #57574f;
  margin: 0 18px 20px;
}

@media (max-width: 991.98px) {
  .pc-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .pc-amenities { padding: 46px 0; }
  .pc-amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-amenity-img-wrap { height: 110px; }
  .pc-amenity-card h3 { font-size: 0.85rem; }
  .pc-amenity-card p { display: none; }
}

/* ==========================================================================
   Contact Us Section
   ========================================================================== */
.pc-contact {
  padding: 64px 0;
  background: var(--pc-green-light);
}

.pc-contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pc-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.22);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(18, 56, 33, 0.06);
  flex: 1;
}

.pc-contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pc-green-light);
  border: 1px solid rgba(184, 145, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-gold-dark);
  font-size: 1.2rem;
}

.pc-contact-info-item strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #8a8a80;
  font-weight: 600;
  margin-bottom: 3px;
}

.pc-contact-info-item a,
.pc-contact-info-item span {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--pc-green-dark);
}

.pc-contact-info-item a:hover {
  color: var(--pc-gold-dark);
}

.pc-contact-form {
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.22);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(18, 56, 33, 0.08);
  height: 100%;
}

.pc-form-control {
  border: 1px solid rgba(18, 56, 33, 0.18);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  background: var(--pc-cream);
}

.pc-form-control:focus {
  border-color: var(--pc-gold);
  box-shadow: 0 0 0 0.2rem rgba(184, 145, 47, 0.18);
  background: var(--pc-white);
}

.pc-contact-submit {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .pc-contact { padding: 46px 0; }
  .pc-contact-form { padding: 24px 20px; }
  .pc-contact-info-item { padding: 16px 18px; }
}

/* ==========================================================================
   Page Banner + Legal Content (Privacy Policy, Terms, Refund Policy)
   ========================================================================== */
.pc-page-banner {
  background: linear-gradient(160deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  padding: 40px 0 28px;
  text-align: center;
  color: var(--pc-white);
  border-bottom: 3px solid var(--pc-gold);
}

.pc-page-banner h1 {
  color: var(--pc-white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.pc-page-breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.pc-page-breadcrumb a {
  color: var(--pc-gold-light);
  text-decoration: none;
  font-weight: 600;
}

.pc-page-breadcrumb a:hover {
  text-decoration: underline;
}

.pc-page-breadcrumb i {
  margin: 0 4px;
  font-size: 0.7rem;
}

.pc-legal {
  padding: 48px 0 64px;
  background: var(--pc-cream);
}

.pc-legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.2);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 12px 30px rgba(18, 56, 33, 0.06);
}

.pc-legal-content .pc-updated-date {
  font-size: 0.78rem;
  color: #8a8a80;
  font-style: italic;
  margin-bottom: 20px;
}

.pc-legal-content h2 {
  color: var(--pc-green-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 10px;
}

.pc-legal-content h2:first-of-type {
  margin-top: 8px;
}

.pc-legal-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--pc-text);
  margin-bottom: 14px;
}

.pc-legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.pc-legal-content li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--pc-text);
  margin-bottom: 6px;
}

.pc-legal-content a {
  color: var(--pc-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.pc-legal-content a:hover {
  text-decoration: underline;
  color: var(--pc-gold-dark);
}

.pc-legal-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-green-light);
  border-left: 4px solid var(--pc-gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pc-green-dark);
  margin-bottom: 24px;
}

.pc-legal-highlight i {
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--pc-gold-dark);
}

@media (max-width: 767.98px) {
  .pc-page-banner { padding: 30px 0 22px; }
  .pc-page-banner h1 { font-size: 1.5rem; }
  .pc-legal { padding: 34px 0 46px; }
  .pc-legal-content { padding: 24px 20px; }
  .pc-legal-content p,
  .pc-legal-content li { font-size: 0.85rem; }
}

/* ==========================================================================
   Registration Page
   ========================================================================== */
.pc-registration {
  padding: 48px 0 64px;
}

.pc-reg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto 26px;
}

.pc-reg-stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(18, 56, 33, 0.06);
  padding: 12px 14px;
}

.pc-reg-stat-chip i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pc-green-light);
  color: var(--pc-gold-dark);
  border-radius: 50%;
  font-size: 1.05rem;
}

.pc-reg-stat-chip div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.pc-reg-stat-chip strong {
  font-size: 0.82rem;
  color: var(--pc-green-dark);
}

.pc-reg-stat-chip span {
  font-size: 0.68rem;
  color: #7a7a70;
}

.pc-reg-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.2);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(18, 56, 33, 0.09);
  padding: 34px 36px;
}

.pc-reg-form-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(184, 145, 47, 0.3);
}

.pc-reg-form-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--pc-green-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.pc-reg-form-header p {
  font-size: 0.82rem;
  color: #7a7a70;
  margin: 0;
}

.pc-req {
  color: #c0392b;
}

.pc-reg-form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pc-green-dark);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 24px 0 14px;
}

.pc-reg-form-section-title:first-of-type {
  margin-top: 0;
}

.pc-reg-form-section-title i {
  color: var(--pc-gold-dark);
}

.pc-reg-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pc-green-dark);
  margin-bottom: 5px;
}

.pc-reg-form .form-control {
  border: 1px solid rgba(18, 56, 33, 0.18);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 0.86rem;
  background: var(--pc-cream);
}

.pc-reg-form .form-control:focus {
  border-color: var(--pc-gold);
  box-shadow: 0 0 0 0.2rem rgba(184, 145, 47, 0.18);
  background: var(--pc-white);
}

.pc-reg-same-address {
  margin-bottom: 14px;
}

.pc-reg-same-address label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-green-dark);
}

.pc-reg-payment-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pc-green-light);
  border: 1px dashed var(--pc-gold);
  border-radius: 12px;
  padding: 15px 18px;
  margin-top: 26px;
}

.pc-reg-payment-box i {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--pc-gold-dark);
}

.pc-reg-payment-box strong {
  display: block;
  color: var(--pc-green-dark);
  font-size: 0.92rem;
}

.pc-reg-payment-box span {
  display: block;
  font-size: 0.76rem;
  color: #5c5c52;
}

.pc-reg-terms-check {
  margin-top: 18px;
  padding-left: 1.8em;
}

.pc-reg-terms-check label {
  font-size: 0.8rem;
  color: var(--pc-text);
}

.pc-reg-terms-check a {
  color: var(--pc-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.pc-reg-terms-check a:hover {
  text-decoration: underline;
  color: var(--pc-gold-dark);
}

.pc-reg-submit-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  font-size: 1rem;
  padding: 14px 20px;
  justify-content: center;
}

/* Pincode auto-fill status */
.pc-pincode-status {
  font-size: 0.76rem;
  margin-top: 5px;
  min-height: 1em;
}

.pc-pincode-checking { color: #888; }
.pc-pincode-ok { color: var(--pc-green-dark); font-weight: 600; }
.pc-pincode-fail { color: var(--pc-gold-dark); }

.pc-auto-check {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pc-green-dark);
  margin-left: 4px;
}

/* Mobile number duplicate-check message */
.pc-mobile-check-msg {
  font-size: 0.76rem;
  margin-top: 6px;
  min-height: 1em;
  font-weight: 600;
}

.pc-mobile-check-blocked { color: #c0392b; }
.pc-mobile-check-info { color: var(--pc-gold-dark); }

/* Plot Size Selection Cards */
.pc-plot-size-options {
  margin-top: 6px;
  margin-bottom: 4px;
}

.pc-plot-size-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pc-plot-size-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  background: var(--pc-white);
  border: 1.5px solid rgba(18, 56, 33, 0.18);
  border-radius: 12px;
  padding: 18px 18px 18px 44px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pc-plot-radio-dot {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c7c7bb;
  background: var(--pc-white);
  transition: all 0.2s ease;
}

.pc-plot-radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pc-gold);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}

.pc-plot-size-radio:checked + .pc-plot-size-card {
  border-color: var(--pc-gold);
  background: var(--pc-green-light);
  box-shadow: 0 4px 14px rgba(184, 145, 47, 0.22);
}

.pc-plot-size-radio:checked + .pc-plot-size-card .pc-plot-radio-dot {
  border-color: var(--pc-gold);
}

.pc-plot-size-radio:checked + .pc-plot-size-card .pc-plot-radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.pc-plot-size-radio:focus-visible + .pc-plot-size-card {
  outline: 2px solid var(--pc-gold);
  outline-offset: 2px;
}

.pc-plot-size-card:hover {
  border-color: var(--pc-gold);
}

.pc-plot-size-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pc-green-dark);
}

.pc-plot-size-main small {
  font-weight: 600;
  font-size: 0.75rem;
  color: #7a7a70;
}

.pc-plot-size-range {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pc-text);
}

.pc-plot-size-cost {
  margin-top: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pc-gold-dark);
}

.pc-plot-size-cost small {
  font-weight: 600;
  font-size: 0.66rem;
  color: #7a7a70;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 767.98px) {
  .pc-registration { padding: 24px 0 44px; }
  .pc-reg-stats { grid-template-columns: repeat(2, 1fr); }
  .pc-reg-form-card { padding: 22px 18px; border-radius: 14px; }
  .pc-reg-form-header p { font-size: 0.78rem; }
  .pc-reg-form-section-title { font-size: 0.88rem; }
  .pc-pincode-status { font-size: 0.7rem; }
  .pc-auto-check { font-size: 0.66rem; }
  .pc-reg-stat-chip strong { font-size: 0.76rem; }
  .pc-reg-stat-chip span { font-size: 0.62rem; }
  .pc-plot-size-main { font-size: 0.85rem; }
  .pc-plot-size-main small { font-size: 0.68rem; }
  .pc-plot-size-cost { font-size: 0.76rem; }
  .pc-plot-size-cost small { font-size: 0.6rem; }
  .pc-plot-size-card { padding: 10px 12px 10px 32px; }
  .pc-plot-radio-dot { left: 10px; top: 12px; width: 16px; height: 16px; }
  .pc-reg-terms-check label { font-size: 0.76rem; }
  .pc-reg-submit-btn { font-size: 0.9rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pc-footer {
  background: linear-gradient(90deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  border-top: 3px solid var(--pc-gold);
  padding: 40px 0 28px;
  text-align: center;
}

.pc-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pc-footer-links a {
  color: var(--pc-gold-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.pc-footer-links a:hover {
  color: var(--pc-gold);
}

.pc-footer-links span {
  color: rgba(255, 255, 255, 0.3);
}

.pc-footer-belongs {
  color: var(--pc-white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.pc-footer-belongs strong {
  color: var(--pc-gold-light);
}

.pc-footer-rera {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.pc-footer-disclaimer {
  max-width: 780px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.6;
}

.pc-footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  margin-bottom: 0;
}

.pc-fixed-rera-stamp {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 78px;
  height: 78px;
  z-index: 1030;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

.pc-fixed-rera-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-fixed-call-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--pc-green), var(--pc-green-dark));
  color: var(--pc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 22px rgba(18, 56, 33, 0.35);
  border: 2px solid var(--pc-gold);
  z-index: 1040;
  animation: pc-register-blink 1.8s infinite;
}

.pc-fixed-call-btn:hover {
  color: var(--pc-white);
}

@media (max-width: 767.98px) {
  .pc-footer { padding: 32px 0 calc(22px + 50px); }
  .pc-footer-links { gap: 10px; }
  .pc-footer-links a { font-size: 0.78rem; }
  .pc-fixed-call-btn { display: none; }
  .pc-fixed-rera-stamp { width: 50px; height: 50px; bottom: 86px; left: 14px; }
}

/* ==========================================================================
   Fixed Bottom CTA Bar (mobile only)
   ========================================================================== */
.pc-mobile-cta-bar {
  display: none;
}

@media (max-width: 767.98px) {
  .pc-mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1045;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
  }

  .pc-mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--pc-white) !important;
  }

  .pc-mobile-cta-btn i {
    font-size: 0.82rem;
  }

  .pc-mobile-cta-reg {
    background: linear-gradient(160deg, var(--pc-green), var(--pc-green-dark));
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .pc-mobile-cta-call {
    background: linear-gradient(160deg, var(--pc-gold), var(--pc-gold-dark));
  }
}

/* ==========================================================================
   Fixed Enquiry Now Tab + Modal
   ========================================================================== */
.pc-enquiry-fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, var(--pc-gold), var(--pc-gold-dark));
  color: var(--pc-white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 18px 10px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1030;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: none;
}

.pc-enquiry-fixed-btn:hover {
  color: var(--pc-white) !important;
  background: linear-gradient(180deg, var(--pc-gold-dark), var(--pc-gold));
}

.pc-enquiry-fixed-btn i {
  transform: rotate(90deg);
  font-size: 1rem;
}

.pc-enquiry-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

.pc-enquiry-modal-header {
  background: linear-gradient(160deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--pc-gold);
}

.pc-enquiry-modal-header h5 {
  color: var(--pc-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-enquiry-modal .modal-body {
  padding: 26px 24px;
}

@media (max-width: 767.98px) {
  .pc-enquiry-fixed-btn { font-size: 0.75rem; padding: 14px 8px; }
}

/* ==========================================================================
   RERA Certificate Modal
   ========================================================================== */
.pc-rera-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

.pc-rera-modal-header {
  background: linear-gradient(160deg, var(--pc-dark) 0%, var(--pc-green-dark) 100%);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--pc-gold);
}

.pc-rera-modal-header h5 {
  color: var(--pc-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-rera-pdf-frame {
  width: 100%;
  height: 70vh;
  border: none;
  display: block;
  background: #525659;
}

.pc-rera-modal-footer {
  padding: 16px 24px;
  text-align: center;
  background: var(--pc-cream);
  border-top: 1px solid rgba(184, 145, 47, 0.25);
}

.pc-rera-reg-btn {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .pc-rera-modal-header { padding: 14px 18px; }
  .pc-rera-modal-header h5 { font-size: 0.95rem; }
  .pc-rera-pdf-frame { height: 58vh; }
  .pc-rera-modal-footer { padding: 14px 18px; }
  .pc-rera-reg-btn { width: 100%; min-width: 0; font-size: 0.9rem; }
}

/* ==========================================================================
   Pre-Launch Offer Popup
   ========================================================================== */
.pc-prelaunch-modal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--pc-gold);
}

.pc-prelaunch-body {
  background: linear-gradient(165deg, #ffffff 0%, #efede7 100%);
  color: #4a4a44;
  padding: 44px 30px 34px;
  text-align: center;
  position: relative;
}

.pc-prelaunch-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  opacity: 0.7;
}

.pc-prelaunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--pc-gold-light), var(--pc-gold));
  color: var(--pc-dark);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pc-prelaunch-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--pc-dark);
  margin-bottom: 4px;
}

.pc-prelaunch-sub {
  color: #6b6b62;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.pc-prelaunch-highlights {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--pc-white);
  border: 1px solid rgba(184, 145, 47, 0.4);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(18, 56, 33, 0.06);
}

.pc-prelaunch-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pc-text);
}

.pc-prelaunch-highlights i {
  color: var(--pc-gold-dark);
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.pc-prelaunch-text {
  font-size: 0.86rem;
  color: #6b6b62;
  line-height: 1.65;
  margin-bottom: 26px;
}

.pc-prelaunch-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pc-prelaunch-actions .btn-pc-register {
  flex: 1 1 170px;
  justify-content: center;
}

.pc-prelaunch-call-btn {
  flex: 1 1 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 2px solid var(--pc-gold-dark);
  color: var(--pc-gold-dark);
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 20px;
}

.pc-prelaunch-call-btn:hover {
  background: var(--pc-gold-dark);
  color: var(--pc-white);
}

@media (max-width: 767.98px) {
  .pc-prelaunch-modal .modal-dialog {
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: calc(100vh - 20px);
  }

  .pc-prelaunch-modal .modal-content {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .pc-prelaunch-body { padding: 30px 20px 22px; }
  .pc-prelaunch-badge { margin-bottom: 10px; font-size: 0.68rem; padding: 5px 12px; }
  .pc-prelaunch-body h3 { font-size: 1.6rem; margin-bottom: 2px; }
  .pc-prelaunch-sub { font-size: 0.8rem; margin-bottom: 14px; }
  .pc-prelaunch-highlights { padding: 14px 16px; gap: 8px; margin-bottom: 16px; }
  .pc-prelaunch-highlights div { font-size: 0.82rem; }
  .pc-prelaunch-text { font-size: 0.8rem; line-height: 1.5; margin-bottom: 16px; }
  .pc-prelaunch-actions { flex-wrap: nowrap; gap: 8px; }
  .pc-prelaunch-actions .btn-pc-register,
  .pc-prelaunch-call-btn {
    flex: 1 1 0;
    padding: 9px 8px;
    font-size: 0.74rem;
    gap: 4px;
    white-space: nowrap;
  }
}
