/* Raj Bay Vista - Static landing page styles */
:root {
  --green: #1A3C34;
  --green-bg: #1A2E2A;
  --accent: #4A6741;
  --light-bg: #F4F9F8;
  --gold: #E5B318;
  --gold-hover: #d4a015;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #374151;
}

.serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.green-text { color: var(--green); }
.green-bg { background-color: var(--green); }
.text-shadow-sm { text-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* Container */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  pointer-events: none;
}

#header.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.header-inner a {
  pointer-events: auto;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.header-logo {
  height: 8rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header-logo { height: 8rem; }
}

/* Hero */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(26, 60, 52, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 4.5rem; }
}

.hero-content p {
  font-size: 1.125rem;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-content p { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-hero-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #fff;
  color: var(--green);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
}

.btn-hero-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Sections common */
section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section { padding: 3.5rem 0; }
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-label { font-size: 0.75rem; }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-underline {
  width: 3rem;
  height: 1px;
  background: var(--green);
  margin: 0 auto 1rem;
}

/* Quick summary */
.quick-summary {
  padding: 3rem 0;
  background: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.quick-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .quick-summary-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.quick-summary-stat {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--green);
  margin: 0 0 0.75rem;
}

.quick-summary-line {
  width: 2rem;
  height: 1px;
  background: rgba(26, 60, 52, 0.2);
  margin: 0 auto 1rem;
}

.quick-summary-caption {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #9ca3af;
}

/* Features (two columns) */
#features {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.features-img-wrap {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-height: 320px;
}

@media (min-width: 768px) {
  .features-img-wrap { min-height: 480px; }
}

.features-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.features-text h2 {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--green);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .features-text h2 { font-size: 2.25rem; }
}

.features-text .lead {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1.5rem;
}

.features-text .lead span:first-child {
  color: #9ca3af;
  font-weight: 300;
}

.features-text p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .features-text p { font-size: 1rem; }
}

/* Amenities */
#amenities {
  background: var(--light-bg);
}

.amenities-intro {
  color: #6b7280;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 0.875rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

.amenity-card {
  text-align: center;
}

.amenity-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .amenity-icon {
    width: 5rem;
    height: 5rem;
    font-size: 1.875rem;
  }
}

.amenity-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .amenity-card h3 { font-size: 1.125rem; }
}

.amenity-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Gallery */
#gallery {
  background: #fff;
}

.gallery-intro {
  color: #6b7280;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 0.875rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26,60,52,0.5));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.gallery-item:hover span {
  opacity: 1;
}

/* Floor plans */
#floorplans {
  background: var(--light-bg);
}

.floorplans-card {
  max-width: 72rem;
  margin: 0 auto;
  background: #FAFBFA;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .floorplans-card { grid-template-columns: 1fr 1fr; }
}

.floorplans-list {
  padding: 2rem;
}

@media (min-width: 768px) {
  .floorplans-list { padding: 2.5rem; }
}

.floorplan-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.floorplan-option:hover {
  background: rgba(255,255,255,0.5);
}

.floorplan-option.active {
  border-left-color: var(--green);
  background: rgba(255,255,255,0.8);
}

.floorplan-option span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.floorplan-option span:last-child {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

.floorplan-image-wrap {
  position: relative;
  min-height: 320px;
  background: #f3f4f6;
}

@media (min-width: 1024px) {
  .floorplan-image-wrap { min-height: 480px; }
}

.floorplan-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.floorplan-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s;
}

.floorplan-lock:hover {
  background: rgba(0,0,0,0.25);
}

.floorplan-lock-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(26,60,52,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Specification */
#specification {
  background: #fff;
}

.spec-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  text-align: center;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .spec-subtitle { font-size: 1.875rem; }
}

.spec-list {
  max-width: 48rem;
  margin: 0 auto;
}

.spec-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item .bullet {
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
}

.spec-item .category {
  font-weight: 600;
  color: #1f2937;
}

.spec-item .details {
  color: #4b5563;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

@media (min-width: 768px) {
  .spec-item .details { font-size: 1rem; }
}

/* Location */
#location {
  background: var(--light-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.location-text h2 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--green);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .location-text h2 { font-size: 3rem; }
}

.location-text > p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .location-text > p { font-size: 1rem; }
}

.location-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .location-points { grid-template-columns: repeat(2, 1fr); }
}

.location-point {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .location-point {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.location-point span:first-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #1f2937;
}

.location-point span:last-child {
  font-size: 0.875rem;
  color: #6b7280;
}

.map-wrap {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-height: 360px;
  background: #f3f4f6;
}

@media (min-width: 1024px) {
  .map-wrap { min-height: 420px; }
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-lock {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  border-radius: 0.5rem;
}

.map-lock:hover {
  background: rgba(0,0,0,0.25);
}

.map-lock-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(26,60,52,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.map-wrap.unlocked .map-lock {
  display: none;
}

/* CTA section */
#contact {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  #contact { min-height: 520px; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0,0,0,0.5);
}

.cta-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .cta-content h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content p {
  color: rgba(255,255,255,0.95);
  font-size: 0.875rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .cta-content p { font-size: 1rem; }
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.btn-cta:hover {
  background: var(--gold-hover);
}

/* Footer */
footer {
  padding: 3rem 0;
  background: var(--green-bg);
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 56rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.footer-logo {
  height: 8rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .footer-logo { height: 8rem; }
}

.footer-text p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-text p:first-child { font-size: 1rem; }
}

.footer-text h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .footer-text h3 { font-size: 1.5rem; }
}

.footer-text .desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-text .desc { font-size: 1rem; }
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0.25rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.footer-bottom p:last-child {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
}

/* Floating buttons */
.floating-callback {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.floating-callback:hover {
  background: var(--gold-hover);
}

.floating-book {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 3rem;
  min-height: 180px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  transition: background 0.2s;
}

.floating-book:hover {
  background: #15302a;
  color: #fff;
}

.floating-chat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.floating-chat:hover {
  background: #15302a;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.popup-box {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: color 0.2s, background 0.2s;
}

.popup-close:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.popup-title {
  font-size: 1.5rem;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.popup-desc {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-row .form-group:first-child {
  flex: 0 0 8rem;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.btn-submit:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.demo-otp-box {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #92400e;
  margin-top: 0.5rem;
}

.popup-step2 .otp-sent-to {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.popup-step2 .otp-sent-to strong {
  color: #374151;
}

.otp-input {
  text-align: center;
  letter-spacing: 0.4em;
  font-size: 1.125rem;
}

.btn-back-link {
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.btn-back-link:hover {
  color: #1f2937;
}

.resend-btn {
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.resend-btn:hover:not(:disabled) {
  color: #1f2937;
}

.resend-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Thank you page */
.thankyou-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.thankyou-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.thankyou-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thankyou-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(26, 60, 52, 0.4);
}

.thankyou-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  width: 100%;
  text-align: center;
}

.thankyou-logo {
  height: 8rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0rem;
}

.thankyou-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid #f3f4f6;
  padding: 2rem;
}

@media (min-width: 768px) {
  .thankyou-card { padding: 2.5rem; }
}

.thankyou-check {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-card h1 {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--green);
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .thankyou-card h1 { font-size: 2.25rem; }
}

.thankyou-card > p {
  color: #4b5563;
  margin-bottom: 2rem;
}


.btn-brochure {
  display: inline-block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0.5rem;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-brochure:hover {
  opacity: 0.9;
  color: #fff;
}

.btn-home {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  text-align: center;
  transition: background 0.2s;
}

.btn-home:hover {
  background: #f9fafb;
  color: #4b5563;
}

/* Selection */
::selection {
  background: var(--green);
  color: #fff;
}
