@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap);
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  background: #ffffff;
}

.map-container img {
  display: block;
  max-width: none;
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.map-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  pointer-events: none;
  shape-rendering: geometricPrecision;
}

.map-plot-hit {
  fill: rgba(255, 255, 255, 0.001);
  stroke: transparent;
  stroke-width: 18;
  vector-effect: non-scaling-stroke;
  pointer-events: all;
  cursor: pointer;
}

.map-plot {
  fill: #4dff00;
  fill-opacity: 0;
  stroke: none;
  cursor: pointer;
  transition: fill-opacity 0.15s ease;
}

.map-plot.is-hovered {
  fill: #4dff00;
  fill-opacity: 0.55;
  stroke: none;
}

.zoom-controls {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zoom-controls button {
  width: 44px;
  height: 44px;
  font-size: 22px;
  font-weight: 700;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-controls button:active {
  transform: scale(0.98);
}

.top-map-toolbar,
.legend-panel,
.map-info-card,
.persistent-tooltip,
.plot-hover-label,
.plot-center-label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.persistent-tooltip,
.plot-hover-label,
.plot-center-label {
  will-change: auto;
}

.loading-logo {
  width: 100px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 16px;
  animation: pulseLogo 1.6s ease-in-out infinite;
}

.loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top: 3px solid #024837;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.map-info-card {
  pointer-events: auto;
}

.tooltip {
  background: rgba(0, 0, 0, 0.82);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  position: absolute;
  z-index: 2000;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overscroll-behavior: none;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  text-align: center;
  position: relative;
  min-width: 300px;
  max-width: 500px;
  font-family: 'Montserrat', sans-serif;
}

.popup-content h2 {
  margin-top: 0;
  color: #333;
}

.popup-content p {
  margin: 10px 0;
  color: #666;
}

.popup-content .popup-image {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 6px;
}

.popup-content button {
  padding: 8px 16px;
  background-color: #024837;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.popup-content button:hover {
  background-color: #01382b;
}

.video-popup {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.video-popup.animate-in {
  animation: fadeSlideIn 0.3s ease-out forwards;
  pointer-events: auto;
}

.video-popup {
  cursor: pointer;
}

.video-popup video {
  cursor: default;
}

.video-popup-content {
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 300px;
}

.video-popup-content::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: 2001;
}

.video-popup-content video {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 169px;
}

.video-popup-content button {
  padding: 8px 16px;
  background-color: #024837;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  transition: background-color 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.video-popup-content button:hover {
  background-color: #01382b;
}

.estate-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1500;
  pointer-events: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0% {
    opacity: 0.7;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(0.98);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

@media (max-width: 1024px) {
  .zoom-controls {
    right: 16px;
  }

  .zoom-controls button {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .loading-logo {
    width: 110px;
  }

  .video-popup-content {
    width: 250px;
  }

  .video-popup-content video {
    height: 141px;
  }
}

@media (max-width: 767px) {
  .zoom-controls {
    right: 14px;
    top: auto;
    bottom: 220px;
    transform: none;
  }

  .zoom-controls button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .loading-logo {
    width: 100px;
  }

  .loader {
    width: 34px;
    height: 34px;
  }

  .popup {
    align-items: flex-start;
  }

  .popup-content {
    min-width: 95%;
    max-width: 95%;
    margin-top: 20px;
  }

  .popup-content h2 {
    font-size: 1.2rem;
  }

  .popup-content p {
    font-size: 0.85rem;
  }

  .popup-content .popup-image {
    max-width: 80%;
  }

  .popup-content button {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .tooltip {
    font-size: 10px;
    padding: 3px 6px;
  }

  .video-popup.animate-in {
    animation: fadeSlideInMobile 0.3s ease-out forwards;
  }

  .video-popup-content {
    width: 200px;
  }

  .video-popup-content video {
    height: 113px;
  }
}

@media (max-width: 480px) {
  .zoom-controls {
    right: 12px;
    bottom: 210px;
    gap: 8px;
  }

  .zoom-controls button {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .loading-logo {
    width: 90px;
  }

  .loader {
    width: 30px;
    height: 30px;
    border-width: 2.5px;
  }
}

@media only screen and (max-width: 428px) and (-webkit-min-device-pixel-ratio: 2) {
  .tooltip,
  .persistent-tooltip {
    font-size: 9px;
    padding: 2px 5px;
  }

  .video-popup {
    width: 74%;
    padding: 0;
  }

  .video-popup-content {
    width: 180px;
    padding: 8px;
  }

  .video-popup-content video {
    height: 101px;
  }

  .video-popup-content button {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

@keyframes fadeSlideInMobile {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    transform: translateY(-40%);
  }
}
/* LocationLabel.css */

/* Base styles for all animated labels (locations array) */
.animated-label {
    position: absolute;
    text-align: center;
    font-family: "'Montserrat', sans-serif";
    font-size: 14px;
    color: black;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgb(85, 85, 85);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
  }

  .project-8-label{
    background-color: none;
    font-size: 8px;
  }

  
  
  /* Hover effect for animated labels */
  .animated-label:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Specific styles for project-5-label (most locations) */
  .project-5-label {
    font-family: "'Montserrat', sans-serif";
    border: 1px solid #d6d6d6;
  }
  
  /* Specific styles for project-8-label (Club House) */
  .project-8-label {
    font-family: "'Montserrat', sans-serif";
    border: 1px solid #666;
    color: white !important;
    background-color: rgba(15, 77, 35, 0.85) !important;
  }
  
  /* Separate styles for plotLabel (Plot 1 in locations array) */
  .plotLabel {
    font-family: "'Montserrat', sans-serif";
    font-weight: 900;
    font-size: 16px;
    color: #007bff !important; /* Bootstrap blue for distinction */
    background-color: rgba(230, 240, 255, 0.9); /* Light blue background */
    padding: 8px 14px;
    border-radius: none !important;
  }
  
  /* Hover effect for plotLabel */
  .plotLabel:hover {
    background-color: rgba(230, 240, 255, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Base styles for persistent tooltips (tooltips array) */
  .persistent-tooltip {
    position: absolute;
    text-align: center;
    font-size: 14px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.4; /* Improve readability for multi-line text */
  }
  
  /* Specific styles for project-6-label (Survey- No. 215) */
  .project-6-label {
    font-family: "'Montserrat', sans-serif";
    font-weight: bold;
  }
  
  /* Specific styles for project-7-label (Mogg’s Terra Hill) */
  .project-7-label {
    font-family: "'Montserrat', sans-serif";
    border: 1px solid rgb(82, 82, 82); /* Matches the border prop in JS */
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  /* Ensure strong tags in tooltips are bold */
  .persistent-tooltip strong {
    font-weight: bold;
  }
  
  /* Styles for plot hover labels (plot blocks on hover) */
  .plot-hover-label {
    position: absolute;
    text-align: center;
    font-size: 14px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(185, 185, 185, 0.1);
    pointer-events: none; /* Prevents interference with mouse events */
    white-space: nowrap;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Adjustments for animated labels */
    .animated-label {
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 2px;
    }
    
    .plot-center-label{
      font-size: 2px !important;
      padding: 2px 1px !important;
    }
    .project-5-label {
        border: 1px solid #ccc;
        border-radius: none !important;
      }
    /* Adjustments for plotLabel */
    .plotLabel {
      font-size: 14px;
      padding: 6px 10px;
    }
  
    /* Adjustments for persistent tooltips */
    .persistent-tooltip {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 1px;
    }
  
    /* Decrease size of project-6-label on mobile */
    .project-6-label {
      font-size: 10px; /* Smaller size for mobile */
      padding: 4px 8px;
      border: none !important; /* Adjust padding to match smaller size */
    }
  
    /* Decrease size of project-7-label on mobile */
    .project-7-label {
      font-size: 8px; /* Smaller size for mobile */
      padding: 4px 8px; /* Adjust padding to match smaller size */
    }
  
    /* Adjustments for plot hover labels */
    .plot-hover-label {
      font-size: 12px;
      padding: 4px 8px;
    }
    
  }
:root {
  --pd-bg: #f5f7f9;
  --pd-surface: rgba(255, 255, 255, 0.96);
  --pd-primary: #024837;
  --pd-primary-2: #0a6a51;
  --pd-primary-soft: #eaf5f1;
  --pd-text: #11231e;
  --pd-subtext: #667872;
  --pd-border: rgba(2, 72, 55, 0.08);
  --pd-shadow: 0 22px 70px rgba(10, 20, 18, 0.14);
}

* {
  box-sizing: border-box;
}

.project-details-container {
  min-height: 100vh;
  width: 100%;
  padding: 18px;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(2, 72, 55, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(2, 72, 55, 0.06), transparent 30%),
    linear-gradient(135deg, #f8fbfa 0%, #eef3f1 100%);
  color: #11231e;
  color: var(--pd-text);
}

.project-details-container::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url(/static/media/map.4a300d17d2cfe9da92a1.png) no-repeat center center;
  background-size: cover;

  z-index: 0;
}

.loading-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-card {
  width: min(390px, 92%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 72, 55, 0.08);
  border: 1px solid var(--pd-border);
  box-shadow: 0 22px 70px rgba(10, 20, 18, 0.14);
  box-shadow: var(--pd-shadow);
  border-radius: 24px;
  padding: 26px 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.loading-spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border: 3px solid rgba(2, 72, 55, 0.14);
  border-top: 3px solid #024837;
  border-top: 3px solid var(--pd-primary);
  border-radius: 50%;
  animation: pd-spin 0.9s linear infinite;
}

.loading-title {
  font-size: 14px;
  font-weight: 700;
  color: #024837;
  color: var(--pd-primary);
}

.loading-subtitle {
  margin-top: 5px;
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.5;
}

@keyframes pd-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.popup-overlay,
.popup,
.booking-popup,
.confirmation-popup {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 13, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 3000;
}

.premium-popup,
.popup-content,
.booking-popup-content,
.confirmation-popup-content {
  width: min(1060px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(250, 252, 251, 0.99) 100%
  );
  border: 1px solid rgba(2, 72, 55, 0.08);
  border: 1px solid var(--pd-border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 28px 80px rgba(10, 20, 18, 0.18);
  position: relative;
}

.premium-popup::-webkit-scrollbar,
.popup-content::-webkit-scrollbar,
.booking-popup-content::-webkit-scrollbar,
.confirmation-popup-content::-webkit-scrollbar {
  width: 7px;
}

.premium-popup::-webkit-scrollbar-thumb,
.popup-content::-webkit-scrollbar-thumb,
.booking-popup-content::-webkit-scrollbar-thumb,
.confirmation-popup-content::-webkit-scrollbar-thumb {
  background: rgba(2, 72, 55, 0.18);
  border-radius: 999px;
}

.premium-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.topbar-left {
  flex: 1 1;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf5f1;
  background: var(--pd-primary-soft);
  color: #024837;
  color: var(--pd-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.premium-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  color: #024837;
  color: var(--pd-primary);
  letter-spacing: -0.3px;
}

.premium-subtitle {
  margin-top: 4px;
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.5;
  max-width: 560px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.status-pill {
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.status-sold {
  background: linear-gradient(135deg, #cf3030, #ef4444);
}

.status-booked {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.status-available {
  background: linear-gradient(135deg, #024837, #0a6a51);
}

.status-default {
  background: linear-gradient(135deg, #67736e, #818d88);
}

.status-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.close-icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(2, 72, 55, 0.1);
  background: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(2, 72, 55, 0.08);
}

.close-icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(2, 72, 55, 0.12);
}

.close-icon-button img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-plot-card,
.hero-facing-card {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(2, 72, 55, 0.08);
  border: 1px solid var(--pd-border);
  box-shadow: 0 12px 30px rgba(2, 72, 55, 0.06);
}

.hero-plot-card {
  background: linear-gradient(
    135deg,
    rgba(2, 72, 55, 0.98),
    rgba(10, 90, 69, 0.96)
  );
  color: #fff;
}

.hero-facing-card {
  background: linear-gradient(180deg, #ffffff, #f5faf8);
}

.hero-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 6px;
}

.hero-plot-number {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.hero-facing-value {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: #024837;
  color: var(--pd-primary);
  letter-spacing: -0.2px;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-gap: 12px;
  gap: 12px;
}

.premium-panel {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(2, 72, 55, 0.08);
  border: 1px solid var(--pd-border);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(14, 26, 20, 0.05);
}

.panel-header {
  margin-bottom: 10px;
}

.panel-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #024837;
  color: var(--pd-primary);
}

.panel-header p {
  margin: 4px 0 0;
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.4;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.detail-box {
  background: linear-gradient(180deg, #fcfefd, #f6faf8);
  border: 1px solid rgba(2, 72, 55, 0.07);
  border-radius: 14px;
  padding: 10px 12px;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-box-label {
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #70827b;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.detail-box-value {
  font-size: 12px;
  font-weight: 700;
  color: #10211c;
  line-height: 1.25;
  word-break: break-word;
}

.tree-summary-card {
  background:
    radial-gradient(circle at top right, rgba(2, 72, 55, 0.09), transparent 36%),
    linear-gradient(180deg, #f9fcfb 0%, #eef7f3 100%);
  border: 1px solid rgba(2, 72, 55, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.tree-summary-number {
  font-size: 24px;
  font-weight: 800;
  color: #024837;
  color: var(--pd-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.tree-summary-text {
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.4;
  font-weight: 600;
}

.tree-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tree-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid rgba(2, 72, 55, 0.07);
}

.tree-name {
  font-size: 11px;
  font-weight: 700;
  color: #17362d;
  text-transform: capitalize;
}

.tree-count {
  min-width: 36px;
  height: 30px;
  border-radius: 999px;
  background: #eaf5f1;
  background: var(--pd-primary-soft);
  color: #024837;
  color: var(--pd-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
}

.no-trees-premium {
  border: 1px dashed rgba(2, 72, 55, 0.16);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
  background: #fbfdfc;
}

.no-trees-icon {
  width: 60px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 6px;
}

.no-trees-title {
  font-size: 12px;
  font-weight: 800;
  color: #024837;
  color: var(--pd-primary);
  margin-bottom: 4px;
}

.no-trees-subtitle {
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.5;
  max-width: 230px;
  margin: 0 auto;
}

.premium-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(2, 72, 55, 0.08);
}

.footer-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-note-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #024837;
  color: var(--pd-primary);
  text-transform: uppercase;
}

.footer-note-text {
  font-size: 10px;
  color: #667872;
  color: var(--pd-subtext);
  line-height: 1.5;
}

.footer-note-text strong {
  color: #024837;
  color: var(--pd-primary);
  font-weight: 800;
}

.premium-close-button {
  border: none;
  background: linear-gradient(135deg, #024837, #0a6a51);
  color: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 10px 24px rgba(2, 72, 55, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-close-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 72, 55, 0.22);
}

.empty-state {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #667872;
  color: var(--pd-subtext);
  text-align: center;
  padding: 20px;
}

/* Compatibility for remaining old elements if used elsewhere */
.booking-popup-content,
.confirmation-popup-content {
  width: min(760px, 100%);
  border-radius: 24px;
  padding: 18px;
}

.booking-popup-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.booking-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-info h4,
.booking-form h4,
.confirmation-popup-content h3 {
  color: #024837;
  color: var(--pd-primary);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 8px;
}

.info-item,
.confirmation-details p,
.payment-methods,
.secure-note {
  font-size: 10px;
  line-height: 1.5;
  color: #667872;
  color: var(--pd-subtext);
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-form label {
  color: #024837;
  color: var(--pd-primary);
  font-size: 10px;
  font-weight: 700;
}

.booking-form input[type="text"],
.booking-form input[type="number"],
.booking-form input[type="tel"],
.booking-form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(2, 72, 55, 0.12);
  border-radius: 12px;
  padding: 10px 11px;
  font-size: 11px;
  outline: none;
  background: #fff;
  color: #182823;
}

.booking-form input:focus {
  border-color: rgba(2, 72, 55, 0.35);
  box-shadow: 0 0 0 4px rgba(2, 72, 55, 0.06);
}

.booking-form .checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.proceed-button,
.download-receipt-button {
  border: none !important;
  background: linear-gradient(135deg, #024837, #0a6a51) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.cancel-button {
  background: #f3f7f5 !important;
  color: #1d312a !important;
  border: 1px solid rgba(2, 72, 55, 0.12) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.book-now-button {
  border: none;
  background: linear-gradient(135deg, #024837, #0a6a51);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 140px;
  cursor: pointer;
  transition: 0.25s ease;
}

.book-now-button:hover {
  transform: translateY(-1px);
}

.book-now-icon {
  width: 14px;
  height: 14px;
}

.not-available {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(2, 72, 55, 0.22);
  color: #024837;
  color: var(--pd-primary);
  background: rgba(2, 72, 55, 0.03);
  font-size: 10px;
  font-weight: 700;
}

.company-logo {
  display: block;
  margin: 0 auto;
}

.contact-support {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #024837;
  color: var(--pd-primary);
  font-size: 10px;
}

.contact-support button {
  border: none;
  background: transparent;
  color: #024837;
  color: var(--pd-primary);
  cursor: pointer;
}

.small-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .premium-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .project-details-container {
    padding: 10px;
  }

  .premium-popup,
  .popup-content,
  .booking-popup-content,
  .confirmation-popup-content {
    padding: 14px;
    border-radius: 22px;
    max-height: 88vh;
  }

  .premium-topbar,
  .premium-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-right {
    justify-content: space-between;
  }

  .premium-title {
    font-size: 17px;
  }

  .premium-subtitle {
    font-size: 9px;
  }

  .hero-plot-number {
    font-size: 18px;
  }

  .hero-facing-value {
    font-size: 14px;
  }

  .premium-panel,
  .hero-plot-card,
  .hero-facing-card {
    padding: 12px;
  }

  .detail-grid,
  .booking-popup-columns {
    grid-template-columns: 1fr;
  }

  .premium-close-button,
  .proceed-button,
  .cancel-button,
  .download-receipt-button,
  .book-now-button {
    width: 100%;
  }

  .form-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .popup-overlay,
  .popup,
  .booking-popup,
  .confirmation-popup {
    padding: 8px;
  }

  .premium-popup,
  .popup-content,
  .booking-popup-content,
  .confirmation-popup-content {
    padding: 12px;
    border-radius: 18px;
  }

  .eyebrow,
  .footer-note-label,
  .detail-box-label,
  .hero-label {
    font-size: 8px;
  }

  .premium-title {
    font-size: 15px;
  }

  .detail-box-value,
  .tree-name,
  .tree-count,
  .footer-note-text,
  .status-pill,
  .premium-close-button {
    font-size: 9px;
  }

  .close-icon-button {
    width: 36px;
    height: 36px;
  }

  .close-icon-button img {
    width: 15px;
    height: 15px;
  }

  .no-trees-icon {
    width: 52px;
  }
}

.dimension-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.unit-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #eef7f3;
  border: 1px solid rgba(2, 72, 55, 0.1);
  border-radius: 999px;
  flex-shrink: 0;
}

.unit-toggle button {
  border: none;
  background: transparent;
  color: #024837;
  font-size: 9px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.unit-toggle button.active {
  background: linear-gradient(135deg, #024837, #0a6a51);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(2, 72, 55, 0.18);
}

.unit-toggle button:hover {
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .dimension-header {
    flex-direction: column;
    align-items: stretch;
  }

  .unit-toggle {
    width: -webkit-fit-content;
    width: fit-content;
  }
}

.plot-shape-card {
  width: 100%;
  margin: 14px 0 18px;
  padding: 14px;
  border: 1px solid rgba(2, 72, 55, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.plot-shape-title {
  font-size: 13px;
  font-weight: 800;
  color: #024837;
  margin-bottom: 10px;
}

.plot-shape-svg {
  width: 100%;
  height: 260px;
  display: block;
  overflow: visible;
  background: #ffffff;
}

.plot-shape-fill {
  fill: #eef8df !important;
  stroke: #111827 !important;
  stroke-width: 2.5;
}

.plot-corner-dot {
  fill: #ffffff !important;
  stroke: #111827 !important;
  stroke-width: 1.8;
}

.plot-corner-label {
  font-size: 9px;
  font-weight: 800;
  fill: #111827 !important;
}

.plot-side-label {
  font-size: 10px;
  font-weight: 900;
  fill: #0f4bb8 !important;
  letter-spacing: 0.02em;
}

.plot-center-label {
  font-size: 12px;
  font-weight: 900;
  fill: #024837 !important;
  letter-spacing: 0.04em;
}

.plot-shape-note,
.plot-shape-empty {
  margin-top: 8px;
  font-size: 10px;
  color: #667872;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .plot-shape-card {
    padding: 12px;
  }

  .plot-shape-svg {
    height: 230px;
  }

  .plot-side-label {
    font-size: 9px;
  }

  .plot-corner-label {
    font-size: 8px;
  }

  .plot-center-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .plot-shape-svg {
    height: 210px;
  }

  .plot-side-label {
    font-size: 8px;
  }

  .plot-corner-label {
    font-size: 7px;
  }

  .plot-center-label {
    font-size: 10px;
  }
}

/* Plot Information Header with Survey Number */

.plot-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.survey-mini-card {
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfefd, #f3f7f5);
  border: 1px solid rgba(2, 72, 55, 0.08);
}

.survey-mini-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #70827b;
}

.survey-mini-card strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #10211c;
  line-height: 1.25;
}

/* Plot Layout Compass */

.plot-shape-wrapper {
  position: relative;
  width: 100%;
}

.plot-compass-icon {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 58px;
  height: 58px;
  object-fit: contain;
  z-index: 3;
  opacity: 0.9;
}

/* Facing Schedule Section */

.schedule-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(2, 72, 55, 0.08);
}

.schedule-section .panel-header {
  margin-bottom: 10px;
}

.facing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.facing-grid .detail-box {
  min-height: 64px;
  background: linear-gradient(180deg, #fcfefd, #f6faf8);
  border: 1px solid rgba(2, 72, 55, 0.07);
  border-radius: 14px;
  padding: 10px 12px;
}

.facing-grid .detail-box-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #70827b;
}

.facing-grid .detail-box-value {
  font-size: 12px;
  font-weight: 800;
  color: #10211c;
}

/* Responsive */

@media (max-width: 767px) {
  .plot-info-header {
    flex-direction: column;
    align-items: stretch;
  }

  .survey-mini-card {
    width: 100%;
    min-width: 100%;
  }

  .facing-grid {
    grid-template-columns: 1fr;
  }

  .plot-compass-icon {
    width: 32px;
    height: 32px;
    left: 6px;
    bottom: 8px;
  }
}

@media (max-width: 480px) {
  .schedule-section {
    margin-top: 14px;
    padding-top: 12px;
  }

  .survey-mini-card span,
  .facing-grid .detail-box-label {
    font-size: 8px;
  }

  .survey-mini-card strong,
  .facing-grid .detail-box-value {
    font-size: 10px;
  }

  .facing-grid .detail-box {
    min-height: 58px;
    padding: 9px 10px;
  }

  .plot-compass-icon {
    width: 28px;
    height: 28px;
  }
}
/* src/LeadPage.css */

.lead-shell {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.lead-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/static/media/land3.5b501cb57e1726f50474.jpg) center / cover no-repeat;
  filter: blur(4px) brightness(0.7);
  transform: scale(1.05);
  z-index: 0;
}

.lead-split-card {
  width: 100%;
  max-width: 820px;
  min-height: 400px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  position: relative;
  z-index: 1;
}

.lead-left {
  position: relative;
  background: center / cover no-repeat;
  min-height: 400px;
}

.lead-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4)
  );
}

.lead-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.lead-left-logo {
  height: 52px;
  background: white;
  padding: 5px;
  border-radius: 0 6px 6px 0;
}

.lead-left-small {
  margin: 0 0 4px;
  font-size: 12px;
}

.lead-left-headline h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
}

.lead-left-desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  max-width: 290px;
}

.lead-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lead-right-inner {
  width: 100%;
  max-width: 290px;
}

.lead-form-title {
  margin: 0;
  font-size: 19px;
  color: #0f172a;
  line-height: 1.1;
}

.lead-form-subtitle {
  margin: 4px 0 10px;
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-label {
  font-size: 11px;
  color: #334155;
  margin-top: 2px;
}

.lead-input {
  width: 100%;
  padding: 10px 11px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  outline: none;
  transition: 0.2s ease;
}

.lead-input:focus {
  border-color: #111827;
  background: white;
}

.lead-btn {
  margin-top: 6px;
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 6px;
  background: #00110d;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
}

.lead-btn:hover {
  transform: translateY(-1px);
}

.lead-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lead-error {
  color: #ef4444;
  font-size: 11px;
  text-align: center;
}

.lead-trust {
  margin-top: 8px;
  text-align: center;
}

.lead-trust-text {
  margin: 0;
  font-size: 10px;
  color: #64748b;
}

/* SUCCESS SECTION */

.lead-success-box {
  text-align: center;
  animation: fadeUp 0.5s ease;
}

.lead-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00110d, #123d31);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.lead-success-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0f766e;
  margin-bottom: 6px;
}

.lead-success-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  color: #0f172a;
}

.lead-success-text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

.lead-success-points {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  margin-top: 12px;
}

.lead-success-points span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 10px;
  font-weight: 700;
  color: #0f172a;
}

.lead-countdown-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00110d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 8px;
  font-size: 22px;
  font-weight: 800;
  animation: pulse 1s infinite;
}

.lead-success-note {
  font-size: 11px;
  color: #64748b;
  animation: blink 1s infinite;
}

.lead-trust-powereds {
  margin-top: 12px;
  color: white;
  font-size: 11px;
  z-index: 2;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

/* RESPONSIVE */

@media (max-width: 860px) {
  .lead-split-card {
    grid-template-columns: 1fr;
    max-width: 380px;
    min-height: 0;
    min-height: initial;
  }

  .lead-left {
    min-height: 210px;
  }

  .lead-left-content {
    padding: 16px;
  }

  .lead-left-logo {
    height: 46px;
  }

  .lead-left-headline h1 {
    font-size: 26px;
  }

  .lead-right {
    padding: 16px;
  }

  .lead-right-inner {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .lead-split-card {
    width: 90%;
    border-radius: 12px;
  }

  .lead-left {
    min-height: 180px;
  }

  .lead-left-logo {
    height: 42px;
  }

  .lead-left-headline h1 {
    font-size: 24px;
  }

  .lead-left-desc {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .lead-right {
    padding: 14px;
  }

  .lead-form-title {
    font-size: 18px;
  }

  .lead-form-subtitle {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .lead-form {
    gap: 5px;
  }

  .lead-input {
    padding: 9px 10px;
    font-size: 13px;
  }

  .lead-btn {
    padding: 10px;
    font-size: 10.5px;
  }

  .lead-success-title {
    font-size: 18px;
  }

  .lead-success-text {
    font-size: 11.5px;
  }

  .lead-countdown-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
/* App.css */
/* Import Montserrat from Google Fonts */

* {
  font-family: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

.app-container {
  position: relative;
  height: 100vh;
  width: 100vw;
}
/* App.css */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-container {
  text-align: center;
}

.loading-logo3 {
  width: 160px; /* Adjust size as needed */
  margin-bottom: 20px;
  border-radius: 16px;
}


.app-container {
  height: 100vh;
  width: 100%;
}



/* Form Styles */
.hfe-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
}

.hfe-form-content {
  background: white;
  padding: 2rem;
  border-radius: 56px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  border: 1px solid #ccc;
  width: 100%;
  text-align: center;
}

.hfe-form-logo {
  width: 180px;

}
p{
  margin: 5px;
}
.hfe-entry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hfe-form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hfe-form-group label {
  font-weight: 500;
  color: #024837;
}

.hfe-form-group input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.hfe-form-group input:focus {
  border-color: #024837;
  outline: none;
}

.hfe-form-error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hfe-form-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

.hfe-submit-button {
  background-color: #024837;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.hfe-submit-button:hover {
  background-color: #03644a;
}

.hfe-retry-button {
  background-color: #dc3545;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.hfe-retry-button:hover {
  background-color: #c82333;
}

/* Thank You Message Styles */
.hfe-thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
}

.hfe-thank-you-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.hfe-thank-you-content h2 {
  color: #024837;
  margin-bottom: 1rem;
}

.hfe-thank-you-content p {
  font-size: 1rem;
  color: #333;
}
