/* ===========================
   Pages Shared Styles
   Additional styles for inner pages
   =========================== */

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Navigation Active State */
.nav-link.active {
  color: var(--foreground);
}

/* Container Variants */
.container-narrow {
  max-width: 56rem;
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }

/* Two Column Grid */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reverse-mobile {
  direction: ltr;
}

@media (min-width: 768px) {
  .reverse-mobile > *:first-child {
    order: 1;
  }
}

/* Prose */
.prose {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.prose p {
  margin-bottom: 1rem;
}

.prose em {
  color: var(--foreground);
  font-style: italic;
}

.prose blockquote {
  padding-left: 1rem;
  border-left: 2px solid rgba(212, 168, 75, 0.5);
  margin: 1.5rem 0;
  color: var(--foreground);
  font-style: italic;
}

.prose blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(75, 85, 99, 0.6);
}

/* Stat Showcase */
.stat-showcase {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1), var(--card), rgba(229, 161, 28, 0.1));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.stat-showcase-content {
  text-align: center;
}

.stat-showcase-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-showcase-label {
  color: var(--muted-foreground);
}

.stat-showcase-sublabel {
  font-size: 0.875rem;
  color: rgba(75, 85, 99, 0.6);
  margin-top: 0.25rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color var(--transition-normal);
}

.value-card:hover {
  border-color: rgba(212, 168, 75, 0.5);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Background Gradient */
.bg-gradient {
  background: linear-gradient(to bottom, var(--background), rgba(223, 233, 243, 0.5), var(--background));
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
  }

  .timeline-left {
    padding-right: 3rem;
    text-align: right;
  }

  .timeline-right {
    margin-left: 50%;
    padding-left: 3rem;
  }
}

.timeline-dot {
  position: absolute;
  left: 1rem;
  top: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background);
}

@media (min-width: 768px) {
  .timeline-left .timeline-dot {
    left: auto;
    right: 0;
    transform: translateX(50%);
  }

  .timeline-right .timeline-dot {
    left: 0;
    transform: translateX(-50%);
  }
}

.timeline-content {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  display: inline-block;
}

.timeline-year {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.timeline-title {
  font-weight: 600;
  margin-top: 0.25rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Stats Mini Grid */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-mini {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-mini-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-mini-value.primary { color: var(--primary); }
.stat-mini-value.accent { color: var(--accent); }
.stat-mini-value.navy { color: #4a6fa5; }

.stat-mini-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
}

/* ===========================
   Leadership Page
   =========================== */
.leader-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .leader-section {
    grid-template-columns: 1fr 1fr;
  }

  .leader-section.reverse .leader-image {
    order: 2;
  }
}

.leader-image {
  position: relative;
}

.leader-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.leader-image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.leader-name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.leader-role {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.leader-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.highlight-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.leader-bio {
  list-style: none;
  margin-bottom: 1.5rem;
}

.leader-bio li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.leader-bio li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.leader-quote {
  padding-left: 1rem;
  border-left: 2px solid rgba(212, 168, 75, 0.5);
  margin-bottom: 1.5rem;
}

.leader-quote p {
  color: var(--foreground);
  font-style: italic;
}

.leader-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(75, 85, 99, 0.6);
}

/* Open Door Card */
.open-door-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1), var(--card), rgba(229, 161, 28, 0.1));
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.open-door-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.open-door-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.open-door-header h3 {
  font-weight: 600;
}

.open-door-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.open-door-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Horizontal Timeline */
.horizontal-timeline {
  position: relative;
  padding: 2rem 0;
}

.horizontal-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
}

.horizontal-timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.h-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.h-timeline-dot {
  width: 1rem;
  height: 1rem;
  background: var(--muted);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.h-timeline-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.2);
}

.h-timeline-content {
  margin-top: 1rem;
}

.h-timeline-year {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
}

.h-timeline-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  max-width: 80px;
  margin-top: 0.25rem;
}

/* ===========================
   Facility Page
   =========================== */
.facility-hero-image {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.facility-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.facility-hero-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 1;
}

.facility-hero-caption p:first-child {
  font-weight: 600;
  font-size: 1.25rem;
}

.facility-hero-caption p:last-child {
  color: var(--muted-foreground);
}

/* Facility Explorer */
.facility-explorer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .facility-explorer {
    grid-template-columns: 1fr 2fr;
  }
}

.facility-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.facility-tab {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: left;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.facility-tab:hover {
  border-color: rgba(212, 168, 75, 0.3);
}

.facility-tab.active {
  background: rgba(212, 168, 75, 0.1);
  border-color: rgba(212, 168, 75, 0.5);
}

.facility-tab-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.facility-tab-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all var(--transition-fast);
}

.facility-tab.active .facility-tab-icon {
  background: rgba(212, 168, 75, 0.2);
  color: var(--primary);
}

.facility-tab-text h3 {
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
}

.facility-tab.active .facility-tab-text h3 {
  color: var(--foreground);
}

.facility-tab-text p {
  font-size: 0.75rem;
  color: rgba(75, 85, 99, 0.6);
}

.facility-detail {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.facility-detail-image {
  position: relative;
  aspect-ratio: 16/9;
}

.facility-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.facility-detail-content {
  padding: 1.5rem;
}

.facility-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.facility-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.facility-detail-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.facility-detail-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.facility-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.facility-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.facility-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Tech Specs Grid */
.tech-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .tech-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-spec {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.tech-spec-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.tech-spec-value {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.amenity-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color var(--transition-normal);
}

.amenity-card:hover {
  border-color: rgba(212, 168, 75, 0.3);
}

.amenity-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.amenity-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Services List */
.services-list {
  list-style: none;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.services-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.services-list li strong {
  display: block;
  font-weight: 500;
}

.services-list li span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(4) {
  margin-top: 2rem;
}

/* ===========================
   Portfolio Page
   =========================== */
.value-chain {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(248, 249, 250, 0.8);
  border: 1px solid var(--border);
}

.value-chain-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.value-chain-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .value-chain-steps {
    gap: 1rem;
  }
}

.value-chain-step {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
}

.value-chain-arrow {
  color: var(--muted-foreground);
  display: none;
}

@media (min-width: 640px) {
  .value-chain-arrow {
    display: block;
  }
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-divider {
  width: 1px;
  background: var(--border);
  display: none;
}

@media (min-width: 640px) {
  .filter-divider {
    display: block;
  }
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--foreground);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.filter-btn.active-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-foreground);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.portfolio-card:hover {
  border-color: rgba(212, 168, 75, 0.5);
  transform: translateY(-4px);
}

.portfolio-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.portfolio-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  /* background: rgba(212, 168, 75, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-tier {
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-card-tier.tier1 {
  background: rgba(212, 168, 75, 0.2);
  color: var(--primary);
}

.portfolio-card-tier.tier2 {
  background: rgba(229, 161, 28, 0.2);
  color: var(--accent);
}

.portfolio-card-tier.tier3 {
  background: rgba(74, 111, 165, 0.2);
  color: #6b8cba;
}

.portfolio-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
  transition: color var(--transition-fast);
}

.portfolio-card:hover h3 {
  color: var(--primary);
}

.portfolio-card-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.portfolio-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.portfolio-card-footer span:first-child {
  color: var(--muted-foreground);
}

.portfolio-card-footer span:last-child {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.portfolio-card:hover .portfolio-card-footer span:last-child {
  gap: 0.5rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  background: rgba(212, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-header p {
  color: var(--muted-foreground);
}

.modal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .modal-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modal-stat {
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: rgba(233, 236, 239, 0.5);
  text-align: center;
}

.modal-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.modal-stat-value {
  font-weight: 600;
}

.modal-section {
  margin-bottom: 1rem;
}

.modal-section h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-section p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===========================
   Contact Page
   =========================== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.audience-card:hover {
  border-color: rgba(212, 168, 75, 0.3);
}

.audience-card.active {
  background: rgba(212, 168, 75, 0.1);
  border-color: rgba(212, 168, 75, 0.5);
}

.audience-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--muted-foreground);
  transition: all var(--transition-fast);
}

.audience-card.active .audience-icon {
  background: rgba(212, 168, 75, 0.2);
  color: var(--primary);
}

.audience-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
}

.audience-card.active h3 {
  color: var(--foreground);
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Open Door Section */
.open-door-section {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1), var(--card), rgba(229, 161, 28, 0.1));
  border: 1px solid rgba(212, 168, 75, 0.2);
}

@media (min-width: 768px) {
  .open-door-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }
}

.open-door-content h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.open-door-content h2 svg {
  color: var(--primary);
}

.open-door-content .quote {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.open-door-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.open-door-image {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .open-door-image {
    margin: 0;
  }
}

.open-door-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.open-door-image-caption {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .open-door-image-caption {
    bottom: 1rem;
    right: 1rem;
  }
}

.open-door-image-caption p:first-child {
  font-weight: 600;
  font-size: 0.875rem;
}

.open-door-image-caption p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
}

.contact-info-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info-card a {
  color: var(--primary);
  transition: text-decoration var(--transition-fast);
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-card .small {
  font-size: 0.75rem;
  color: rgba(75, 85, 99, 0.6);
  margin-top: 0.5rem;
}

/* Map */
.map-container {
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Success Message */
.success-message {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(212, 168, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.success-message h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--muted-foreground);
}
