@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-red: #A31621; /* High-end, deep red */
  --primary-blue: #0A2239; /* Rich navy blue */
  --accent-gold: #D4AF37; /* For luxury accents */
  --bg-white: #FCFCFC;
  --text-dark: #1A1A1A;
  --text-light: #F0F0F0;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

body.mobile-nav-open {
  overflow: hidden;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
}

.page-header-content {
  z-index: 3;
  position: relative;
  max-width: 900px;
  padding: 0 2rem;
}

.page-header-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.12;
  text-wrap: balance;
}

.page-header-title-caps {
  text-transform: uppercase;
}

.page-header-lead {
  color: #f0f0f0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(2.3rem, 6.2vw, 3.7rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-wrap: balance;
}

.hero-title-accent {
  color: var(--accent-gold);
  font-size: clamp(2.4rem, 6.6vw, 4rem);
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin-top: 1.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  line-height: 1.3;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 34, 57, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-blue);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(10, 34, 57, 0.98);
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  max-width: calc(100% - 64px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo img {
  display: block;
  height: 62px;
  width: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  line-height: 1;
  padding: 0.25rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background-color: var(--primary-blue);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,34,57,0.7) 0%, rgba(10,34,57,0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  animation: slideUp 1s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(30px);
  line-height: 1.12;
  text-wrap: balance;
}

.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 2.5rem;
  animation: slideUp 1s ease 0.8s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero .btn-group {
  animation: slideUp 1s ease 1.1s forwards;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-cta-group {
  margin-top: 2rem;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Content Blocks for Inner Pages */
.page-header {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  z-index: 2;
  line-height: 1.12;
  text-wrap: balance;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Specific Sections */
.image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Pods Listing */
.pod-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.pod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-red);
}

.pod-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Modern Separators & Special Backgrounds */
.curved-section-top {
  position: relative;
  background-color: white;
  margin-top: -50px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
}

.bg-faded-image {
  background-image: linear-gradient(rgba(248, 249, 250, 0.92), rgba(248, 249, 250, 0.95)), url('assets/faded_flag_bg_1775839276145.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.luxury-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.luxury-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #444;
}

.luxury-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-red);
  font-size: 1.2rem;
}

.rounded-arch {
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
}

.phase-two-media {
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
}

.phase-two-media img {
  object-position: center;
}

.phase-two-media:hover img {
  transform: none;
}

.phase-two-media:focus-visible {
  outline: 3px solid rgba(163, 22, 33, 0.55);
  outline-offset: 3px;
}

.site-modal-content.phase-two-image-modal-content {
  width: min(98vw, 1800px);
  max-height: 94vh;
  margin: 2vh auto;
  padding: 0.35rem;
  background: #0a2239;
}

.phase-two-image-modal-content .site-modal-close {
  color: #fff;
  top: 0.45rem;
  right: 0.8rem;
  z-index: 3;
}

.phase-two-image-modal-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  max-width: none;
  user-select: none;
}

.phase-two-image-modal-frame {
  max-height: calc(94vh - 1.2rem);
  overflow: auto;
}

/* Forms */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-details-card {
  background: white;
  padding: 2.5rem;
  border-left: 4px solid var(--primary-red);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  overflow-wrap: anywhere;
}

.interest-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.interest-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

.interest-option-input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex: 0 0 18px;
}

.interest-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-blue);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(163, 22, 33, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Wizard Styles */
.wizard-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  overflow: hidden;
}

.wizard-progress {
  display: flex;
  background: var(--primary-blue);
  color: #fff;
}

.wizard-step {
  flex: 1;
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  opacity: 0.6;
  position: relative;
  transition: all 0.3s ease;
}

.wizard-step.active {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  font-weight: 600;
}

.wizard-step:not(:last-child)::after {
  content: '>';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  z-index: 2;
}

.wizard-pane {
  padding: 3rem;
  animation: fadeIn 0.5s ease;
}

.form-group-wrap {
  border: 1px solid #eaeaea;
}

/* Radio Cards */
.house-radio-card {
  display: block;
  cursor: pointer;
  perspective: 1000px;
}

.house-radio-card input {
  display: none;
}

.card-content {
  background: #fdfdfd;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.view-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #eee;
  color: #555;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.house-radio-card:hover .card-content {
  border-color: #ccc;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.house-radio-card input:checked + .card-content {
  border-color: var(--primary-red);
  background: #fffafa;
  box-shadow: 0 10px 25px rgba(163, 22, 33, 0.15);
  transform: translateY(-5px);
}

.house-radio-card input:checked + .card-content .view-btn {
  background: var(--primary-red);
  color: white;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Homepage process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step-card {
  background: white;
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.6rem;
}

.process-step-card h3 {
  margin-bottom: 0.4rem;
}

.process-step-number {
  font-family: var(--font-heading);
  color: var(--primary-red);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.section-lead {
  max-width: 820px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  color: #444;
}

/* New Path Rows Styling */
.path-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

.path-row:last-child {
  margin-bottom: 0;
}

.path-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}

.path-label {
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.path-content h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.path-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.path-content .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.path-image {
  flex: 1;
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
  transition: transform 0.8s ease;
}

.path-row:hover .path-image img {
  transform: scale(1.03);
}

@media (min-width: 900px) {
  .path-row {
    flex-direction: row;
    gap: 4rem;
  }
  .path-row.reverse {
    flex-direction: row-reverse;
  }
  .path-content {
    padding: 0 2rem;
  }
}

.path-steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  background: rgba(248, 249, 250, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-red);
}

.path-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.path-step-num {
  font-family: var(--font-heading);
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.path-step-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

.mini-list {
  margin-top: 0.5rem;
}

.mini-list li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
}

.mini-list li::before {
  font-size: 1rem;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 0 2.2rem;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.4rem) / 3);
  gap: 1.2rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card {
  border: 1px solid #e9edf4;
  border-radius: 10px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(10, 34, 57, 0.06);
}

.review-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.review-card blockquote {
  color: #374151;
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.reviewer-name {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.review-date {
  color: #6b7280;
  font-size: 0.86rem;
  margin: 0;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #dbe2ea;
  background: #fff;
  color: var(--primary-blue);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.reviews-nav.prev {
  left: 0;
}

.reviews-nav.next {
  right: 0;
}

.reviews-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #c8d2e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dots button.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* Feature Block Styles */
.feature-text-block {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  z-index: 0;
  line-height: 1;
}

.feature-text-block h3, .feature-text-block p {
  position: relative;
  z-index: 1;
}

/* FAQ Accordion Luxury Styling */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.accordion:hover {
  border-color: #c8d2e0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.accordion[open] {
  border-left: 4px solid var(--primary-red);
}

.accordion summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
  padding-right: 4rem;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--primary-red);
  font-weight: 400;
}

.accordion[open] summary::after {
  content: '−';
}

.accordion-content {
  padding: 0 2rem 1.5rem 2rem;
  color: #555;
  line-height: 1.7;
}

/* Elegant Pod List */
.pod-list-elegant {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pod-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e9edf4;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.pod-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: var(--primary-red);
}

.pod-number {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.pod-name {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.invalid-field-highlight {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 3px rgba(163, 22, 33, 0.2) !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.validation-toast {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  z-index: 6000;
  background: rgba(10, 34, 57, 0.96);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  max-width: min(92vw, 540px);
  text-align: center;
  font-size: 0.9rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.validation-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Land page map and selectors */
.urgency-banner {
  background-color: #fff3cd;
  color: #856404;
  padding: 1rem 1.2rem;
  border-left: 5px solid #ffeeba;
  margin: 0 auto 2rem;
  max-width: 860px;
  text-align: left;
  border-radius: 4px;
}

.map-shell {
  position: relative;
  border-radius: 12px;
  border: 2px solid #eaeaea;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-pod-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(10, 34, 57, 0.9);
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.map-pod-marker:hover,
.map-pod-marker.active {
  background: var(--primary-red);
  transform: translate(-50%, -50%) scale(1.04);
}

.map-pod-marker.sold-out,
.map-pod-marker:disabled {
  background: rgba(107, 114, 128, 0.92);
  border-color: rgba(255, 255, 255, 0.65);
  cursor: not-allowed;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.phase-one-map-label {
  pointer-events: none;
  cursor: default;
}

.phase-one-map {
  border-radius: 0;
  cursor: zoom-in;
}

.phase-one-map:hover img {
  transform: none;
}

.phase-one-map:focus-visible {
  outline: 3px solid rgba(163, 22, 33, 0.55);
  outline-offset: 3px;
}

.site-modal-content.phase-one-map-modal-content {
  width: min(98vw, 1680px);
  max-height: 94vh;
  margin: 2vh auto;
  padding: 0.4rem;
  background: #0a2239;
}

.phase-one-map-modal-content .site-modal-close {
  color: #fff;
  top: 0.45rem;
  right: 0.8rem;
  z-index: 3;
}

.phase-one-map-modal-frame {
  position: relative;
}

.phase-one-map-modal-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pod-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pod-select-btn {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.7rem 1rem;
}

.pod-select-btn.active {
  background: var(--primary-blue);
  color: #fff;
}

.pod-select-btn.sold-out,
.pod-select-btn:disabled {
  background: #e5e7eb;
  color: #64748b;
  border-color: #cbd5e1;
  cursor: not-allowed;
}

.selection-summary {
  background: #fafafa;
  border: 1px solid #ececec;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}

.selection-summary .label {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.selection-summary .value {
  margin: 0;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Design page cards */
.design-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.design-card,
.resource-card {
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.design-image,
.resource-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.design-card-body,
.resource-card-body {
  padding: 1.3rem;
}

.design-card-body h3,
.resource-card-body h3 {
  margin-bottom: 0.5rem;
}

.design-card-body p,
.resource-card-body p {
  color: #555;
  margin-bottom: 1rem;
}

.design-card-actions,
.resource-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.design-select-btn.selected-option {
  background: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(10, 34, 57, 0.25);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* Explore Branson */
.explore-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 1rem;
}

.explore-filter-chip {
  border: 1px solid var(--primary-blue);
  background: #fff;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.56rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.explore-filter-chip:hover {
  background: #f7fbff;
  transform: translateY(-1px);
}

.explore-filter-chip.active {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(10, 34, 57, 0.2);
}

.explore-search-wrap {
  max-width: 720px;
  margin: 0 auto 1.8rem;
}

.explore-search-input {
  border: 1px solid #d7dee9;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background: #fff;
}

.explore-search-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 34, 57, 0.15);
}

.explore-listings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.explore-listing-card {
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 10px;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(10, 34, 57, 0.06);
}

.explore-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.explore-listing-header h3 {
  margin: 0;
  font-size: 1.32rem;
}

.explore-listing-category {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: #f0f6ff;
  border: 1px solid #dbe8fb;
}

.explore-listing-description {
  color: #4b5563;
  margin-bottom: 0.8rem;
}

.explore-listing-distance {
  margin-bottom: 0.7rem;
  color: #111827;
}

.explore-listing-meta p {
  margin-bottom: 0.35rem;
  color: #4b5563;
}

.explore-listing-meta p:last-child {
  margin-bottom: 0;
}

.empty-state-card {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 10px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(10, 34, 57, 0.05);
}

.designer-grid {
  display: grid;
  gap: 1rem;
}

.designer-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ececec;
  background: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.designer-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.builder-toggle-group {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.builder-toggle-btn {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  background: transparent;
}

.builder-toggle-btn:hover {
  background: var(--primary-blue);
  color: #fff;
}

.builder-toggle-btn.active {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 34, 57, 0.22);
}

.builder-detail-panel {
  border: 1px solid #ececec;
  background: #fafafa;
  border-radius: 6px;
  padding: 0.9rem 1rem;
}

.builder-detail-line {
  margin-bottom: 0.35rem;
  color: #444;
}

.builder-detail-line:last-child {
  margin-bottom: 0;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.choice-item input {
  width: 16px;
  height: 16px;
}

.inline-alert {
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  font-size: 0.93rem;
}

.inline-alert.error {
  background: #fff3f3;
  border: 1px solid #ffdada;
  color: #8a1f1f;
}

.inline-alert.success {
  background: #f3fbf4;
  border: 1px solid #d5ecd7;
  color: #1f5f2e;
}

.success-summary {
  margin-top: 1.2rem;
  border: 1px solid #d5ecd7;
  background: #f3fbf4;
  color: #1f5f2e;
  border-radius: 8px;
  padding: 1rem;
}

/* Reusable modal */
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}

.site-modal.open {
  display: block;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.site-modal-content {
  position: relative;
  width: min(760px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: white;
  margin: 4rem auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.site-modal-close {
  border: none;
  background: transparent;
  color: #555;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.modal-meta span {
  background: #f4f4f4;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}

.modal-highlight-list {
  margin: 0 0 1.2rem 1rem;
}

.contractor-modal-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contractor-modal-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  border: 1px solid #ececec;
  background: #fff;
}

.contractor-modal-image {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.contractor-modal-body {
  padding: 1rem;
}

.contractor-modal-body h3 {
  margin-bottom: 0.4rem;
}

.contractor-modal-bio {
  color: #555;
  margin-bottom: 0.5rem;
}

.contractor-modal-actions {
  margin-top: 0.8rem;
}

.modal-form-note {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 992px) {
  .process-grid,
  .resource-grid,
  .design-grid {
    grid-template-columns: 1fr;
  }

  .path-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 1.2rem) / 2);
  }

  .contractor-modal-card {
    grid-template-columns: 1fr;
  }

  .contractor-modal-image {
    height: 200px;
  }
}

/* Accordion Styles */
.accordion-container { max-width: 860px; margin: 0 auto; }
.accordion { background: #fff; border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03); overflow: hidden; }
.accordion summary { padding: 1.5rem; font-size: 1.25rem; font-weight: 600; color: var(--primary-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.5rem; color: var(--primary-red); font-weight: bold; }
.accordion[open] summary::after { content: '-'; }
.accordion-content { padding: 0 1.5rem 1.5rem; color: #555; line-height: 1.6; border-top: 1px solid #f0f0f0; margin-top: 0.5rem; padding-top: 1rem; }

/* Modal Gallery & Categories */
.modal-gallery { margin-bottom: 2rem; }
.modal-gallery .modal-image { width: 100%; height: auto; max-height: 450px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.gallery-thumbnails { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.gallery-thumbnails::-webkit-scrollbar { height: 6px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.gallery-thumb { width: 90px; height: 60px; object-fit: cover; border-radius: 4px; cursor: pointer; border: 2px solid transparent; transition: border 0.3s, opacity 0.2s; opacity: 0.6; flex-shrink: 0; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--primary-gold); }
.modal-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; margin-bottom: 2rem; }
.modal-category h4 { color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 0.8rem; border-bottom: 2px solid var(--primary-gold); padding-bottom: 0.4rem; display: inline-block; }
.modal-category ul { list-style: none; padding: 0; margin: 0; }
.modal-category ul li { position: relative; padding-left: 1.2rem; color: #555; margin-bottom: 0.6rem; font-size: 0.95rem; line-height: 1.4; }
.modal-category ul li::before { content: '\2022'; color: var(--primary-red); font-weight: 700; position: absolute; left: 0; }

.modal-walkthrough {
  margin-bottom: 1.8rem;
}

.modal-walkthrough h3 {
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.modal-walkthrough-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.modal-walkthrough-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Final responsive overrides (kept at file end to win over legacy declarations) */
@media (max-width: 992px) {
  .container { padding: 0 1.4rem; }
  .section-padding { padding: 4.5rem 0; }
  .section-title { font-size: 2.1rem; margin-bottom: 2.3rem; }

  .grid-2,
  .grid-3,
  .process-grid,
  .resource-grid,
  .design-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .hero { min-height: 100svh; }
  .hero-content { max-width: 700px; padding: 0 1.2rem; }
  .hero p, .hero-lead { max-width: 100%; }
  .explore-listings-grid { grid-template-columns: 1fr; }

  .site-modal-content {
    width: min(760px, 94vw);
    margin: 2.2rem auto;
    padding: 1.4rem;
  }

  .modal-categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contractor-modal-card { grid-template-columns: 1fr; }
  .contractor-modal-image { height: 200px; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section-padding { padding: 3.8rem 0; }
  .navbar { padding: 1rem 0; background-color: rgba(10, 34, 57, 0.96); }
  .navbar .container { min-height: 44px; position: relative; }
  .logo { font-size: 1.55rem; letter-spacing: 0.5px; max-width: calc(100% - 56px); }
  .logo img { height: 52px; }
  .mobile-menu-btn { display: block; font-size: 1.8rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 0;
    width: 100%;
    background-color: rgba(10, 34, 57, 0.985);
    flex-direction: column;
    text-align: left;
    padding: 1rem;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
    z-index: 1001;
  }

  .nav-links.active { display: flex; }
  .nav-links li + li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-links a { display: block; padding: 0.9rem 0.25rem; font-size: 0.95rem; }

  .hero {
    align-items: center;
    justify-content: center;
    padding-top: 5.2rem;
    padding-bottom: 3.2rem;
  }

  .hero-content {
    min-height: calc(100svh - 8.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1, .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
    line-height: 1.14;
    letter-spacing: 0.3px;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title-accent { font-size: clamp(1.95rem, 10.4vw, 2.55rem); display: inline-block; margin-top: 0.25rem; }
  .hero p, .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page-header { height: 38vh !important; min-height: 280px; padding-top: 3.2rem; }
  .page-header-title, .page-header h1 { font-size: clamp(1.8rem, 8vw, 2.45rem); margin-bottom: 0.6rem; }
  .page-header-lead { font-size: 0.98rem; line-height: 1.5; }
  .section-title { font-size: clamp(1.55rem, 6.9vw, 2rem); margin-bottom: 1.8rem; }
  .map-pod-marker {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding: 0.42rem 0.56rem;
  }

  .btn-group,
  .design-card-actions,
  .resource-card-actions,
  .builder-toggle-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .btn-group .btn,
  .design-card-actions .btn,
  .resource-card-actions .btn,
  .builder-toggle-group .btn {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
    letter-spacing: 1px;
  }

  .luxury-list li { padding-left: 1.8rem; font-size: 0.98rem; margin-bottom: 0.95rem; }
  .process-step-card, .pod-card, .contact-form, .contact-details-card { padding: 1.25rem; }
  .interest-options { padding: 1rem; }

  .mobile-inline-image {
    margin: 0.9rem 0 1.2rem;
  }

  .site-modal-content { max-height: 86vh; margin: 1rem auto; padding: 1rem; }
  .modal-meta span { font-size: 0.78rem; }
  .gallery-thumb { width: 78px; height: 54px; }
  .path-options-grid { grid-template-columns: 1fr; }
  .reviews-slider { padding: 0 1.9rem; }
  .reviews-track { grid-auto-columns: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.85rem; }
  .logo { font-size: 1.28rem; }
  .logo img { height: 44px; }
  .mobile-menu-btn { font-size: 1.65rem; }
  .hero {
    padding-top: 4.8rem;
    padding-bottom: 2.8rem;
  }
  .hero-content { min-height: calc(100svh - 7.6rem); }
  .hero h1, .hero-title { font-size: clamp(1.65rem, 9.4vw, 2.05rem); }
  .hero-title-accent { font-size: clamp(1.8rem, 9.8vw, 2.2rem); }
  .hero p, .hero-lead, .page-header-lead { font-size: 0.93rem; }
  .section-title { font-size: 1.45rem; }
  .map-pod-marker {
    font-size: 0.68rem;
    letter-spacing: 0.6px;
    padding: 0.38rem 0.5rem;
  }
  .site-modal-content { width: 95vw; max-height: 88vh; margin: 0.7rem auto; padding: 0.9rem; }
  .contact-details-card { padding: 1rem; }
}

/* Admin CMS */
.admin-body {
  background: #f4f6f8;
  min-height: 100vh;
}

.admin-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.2rem 3rem;
}

.admin-auth,
.admin-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.admin-auth {
  max-width: 520px;
  margin: 4rem auto;
  padding: 2rem;
}

.admin-auth h1 {
  margin-bottom: 0.35rem;
}

.admin-auth p {
  color: #555;
  margin-bottom: 1rem;
}

.admin-form-row {
  display: grid;
  gap: 0.8rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-header p {
  color: #555;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.admin-tab {
  border: 1px solid #d7dde4;
  background: #fff;
  color: var(--primary-blue);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.admin-tab.active {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.admin-pane {
  display: none;
}

.admin-pane.active {
  display: block;
}

.admin-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-card {
  padding: 1rem;
}

.admin-list-card {
  min-height: 420px;
}

.admin-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.admin-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
}

.admin-inline-fields.triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #333;
  font-size: 0.95rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.admin-upload-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.admin-upload-row input[type="file"] {
  flex: 1 1 220px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #edf0f4;
  text-align: left;
  padding: 0.65rem 0.45rem;
  vertical-align: top;
  font-size: 0.92rem;
}

.admin-table th {
  color: var(--primary-blue);
  font-weight: 700;
}

.btn-sm {
  font-size: 0.72rem;
  padding: 0.45rem 0.75rem;
  letter-spacing: 1px;
}

/* Contractors page enhancements */
.contractors-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.contractor-page-card {
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contractor-page-image {
  height: 230px;
  min-height: 230px;
}

.contractor-page-card .contractor-modal-body {
  padding: 1.1rem;
}

.contractor-page-card .contractor-modal-body p {
  margin-bottom: 0.55rem;
}

.contractor-page-card .contractor-modal-body p:last-child {
  margin-bottom: 0;
}

.public-submission-panel {
  margin-top: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 1.25rem;
}

@media (max-width: 992px) {
  .admin-pane-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contractor-page-image {
    height: 210px;
    min-height: 210px;
  }

  .admin-header {
    flex-direction: column;
  }

  .admin-inline-fields,
  .admin-inline-fields.triple {
    grid-template-columns: 1fr;
  }
}
