* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #1a1a1a;
}

:root {
  /* Overpar brand colors - Black & White */
  --dark-bg: #000000;
  --dark-elevated: #0a0a0a;
  --dark-card: #1a1a1a;
  --accent-primary: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
  --border-subtle: rgba(255, 255, 255, 0.15);
  --overlay-dark: rgba(0, 0, 0, 0.7);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* HEADER NAVIGATION (The Tips Style) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo img {
  height: 56px;
  width: auto;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 2.75rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link.active {
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.lang-switcher {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
  color: #000000;
  background: #ffffff;
}

.header-cta-button {
  padding: 0.65rem 1.75rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.header-cta-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hide mobile-only items on desktop */
.mobile-only {
  display: none !important;
}

@media (max-width: 968px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.mobile-active {
    display: flex;
  }

  .main-nav li {
    padding: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header-container {
    padding: 0 1.5rem;
  }

  /* Hide language switcher and CTA on mobile - only show hamburger */
  .lang-switcher,
  .header-cta-button {
    display: none !important;
  }

  /* Add lang and CTA to mobile menu */
  .main-nav.mobile-active .mobile-only {
    display: flex !important;
  }

  .mobile-lang-switcher {
    display: none;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    overflow: hidden;
    margin: 1rem 2rem;
  }

  .main-nav.mobile-active .mobile-lang-switcher {
    display: flex;
  }

  .mobile-cta-wrapper {
    display: none;
    padding: 1rem 2rem;
  }

  .main-nav.mobile-active .mobile-cta-wrapper {
    display: block;
  }

  .mobile-cta-wrapper a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-cta-wrapper a:hover {
    background: rgba(255, 255, 255, 0.9);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent-primary);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--dark-bg);
  border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background: #1a1a1a;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-indicators {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--text-secondary);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
}

.trust-item::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--accent-primary);
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* Experience Trifecta */
.trifecta {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.trifecta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.trifecta-card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 3rem 2.5rem;
  text-align: left;
  transition: all 0.3s ease;
}

.trifecta-card:hover {
  transform: translateY(-8px);
  border-color: #000000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trifecta-number {
  color: #000000;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.trifecta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
}

.trifecta-card p {
  color: #505050;
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 300;
}

.trifecta .section-title {
  color: #000000;
}

.trifecta .section-subtitle {
  color: #505050;
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.service-label {
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.service-content {
  padding: 2.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 400;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-left: 0;
  list-style: none;
}

.service-feature {
  color: var(--text-secondary);
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.25rem;
  font-weight: 300;
}

.service-feature::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--accent-primary);
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* Testimonials */
.testimonials {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 2.5rem;
}

.quote {
  font-style: italic;
  color: #505050;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.975rem;
  font-weight: 300;
}

.author {
  font-weight: 400;
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.testimonials .section-title {
  color: #000000;
}

/* For Everyone Section */
.for-everyone {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border-subtle);
}

.use-case {
  background: var(--dark-card);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--accent-primary);
}

.use-case h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.use-case p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 300;
}

/* Memberships / Pricing (Home Page Simplified) */
.memberships {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.corporate-badge {
  display: inline-block;
  background: #ff9500;
  color: #000000;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-radius: 2px;
}

.pricing-card.corporate-card {
  border-color: #ff9500;
  border-width: 1px;
}

.membership-cta-inline {
  margin-top: 4rem;
  text-align: center;
}

/* Membership preview section - dark background for contrast */
.memberships {
  background: #1a1a1a;
  padding: 6rem 0;
}

.memberships .section-title {
  color: #ffffff;
}

.memberships .section-subtitle {
  color: #a0a0a0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3rem 2.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #ffffff;
  border-width: 2px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-primary);
}

.price span {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.plan-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 300;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* External benefits list (below the card) */
.plan-features-external {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features-external li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.75rem 0;
  font-weight: 300;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.faq-list {
  max-width: 900px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2.5rem 3rem;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000000;
  letter-spacing: -0.01em;
}

.faq-answer {
  color: #505050;
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 300;
}

.faq .section-title {
  color: #000000;
}

/* Contact Section */
.contact-section {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--dark-elevated);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.info-block h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.info-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.info-block a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--text-primary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--text-primary);
}

/* Footer */
.site-footer {
  padding: 6rem 2rem 3rem;
  background: var(--dark-elevated);
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MEMBERSHIP PAGE SPECIFIC STYLES */

.membership-hero {
  height: 60vh;
  min-height: 500px;
}

.membership-overview {
  padding: 6rem 2rem;
  background: #ffffff;
  color: #000000;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.overview-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

/* Removed overview-icon for cleaner look */

.overview-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000000;
}

.overview-card p {
  color: #505050;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Detailed Pricing Cards */
.memberships-detailed {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.pricing-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.pricing-card-detailed {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-detailed.featured {
  border-color: var(--accent-primary);
  border-width: 2px;
}

.pricing-card-detailed.corporate {
  border-color: #ff9500;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.corporate-label {
  display: inline-block;
  background: #ff9500;
  color: #000000;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tier-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2.5rem;
}

.tier-section h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tier-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tier-benefits li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
  font-weight: 300;
  line-height: 1.6;
}

.tier-benefits li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--accent-primary);
  position: absolute;
  left: 0;
  top: 0.7em;
}

.tier-benefits li strong {
  color: var(--text-primary);
  font-weight: 500;
}

.tier-benefits li em {
  color: var(--accent-primary);
  font-style: normal;
}

.tier-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Pricing Tables */
.pricing-tables {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.pricing-tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pricing-table-card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
}

.pricing-table-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #000000;
}

.table-subtitle {
  color: #505050;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.pricing-table thead {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.pricing-table th {
  text-align: left;
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.pricing-table td {
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #505050;
  font-size: 0.95rem;
  font-weight: 300;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #505050;
  line-height: 1.7;
  font-weight: 300;
}

.guest-policy-card {
  margin-top: 3rem;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.15);
  padding: 2.5rem;
  text-align: center;
}

.guest-policy-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000000;
}

.guest-policy-card p {
  color: #505050;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.guest-price {
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
}

/* Booking Windows */
.booking-windows {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.booking-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.booking-column {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2.5rem;
}

.booking-column h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.booking-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.booking-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-list li:last-child {
  border-bottom: none;
}

.tier-name {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 0.95rem;
}

.booking-days {
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.booking-footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.booking-footer strong {
  color: var(--text-primary);
}

/* Raffles Section */
.raffles-section {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.raffles-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.raffle-prizes h3,
.raffle-pricing h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #000000;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.prize-item {
  background: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #505050;
  font-weight: 300;
}

.raffle-price-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.raffle-price-list li {
  color: #505050;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 300;
}

.raffle-price-list li:last-child {
  border-bottom: none;
}

.raffle-price-list strong {
  color: #000000;
  font-weight: 500;
}

.raffle-note {
  color: #707070;
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Membership FAQ */
.membership-faq {
  background: #ffffff;
  color: #000000;
}

/* Membership CTA */
.membership-cta {
  padding: 8rem 2rem;
  background: var(--dark-bg);
  text-align: center;
}

.membership-cta h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.membership-cta p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1rem;
}

/* ABOUT PAGE STYLES */

.about-hero,
.services-hero {
  height: 60vh;
  min-height: 500px;
}

.story-section {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.story-content {
  max-width: 800px;
  margin: 3rem auto 0;
}

.story-content p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #505050;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.why-indoor {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.technology-section {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.technology-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.tech-main h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #000000;
}

.tech-main p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #505050;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.tech-specs {
  background: rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
}

.tech-specs h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #000000;
}

.tech-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-list li {
  color: #505050;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 300;
}

.tech-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 500;
}

.community-section {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.community-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.community-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.text-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #ffffff;
}

.about-cta {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-cta p {
  font-size: 1.125rem;
  color: #505050;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

/* FACILITIES PAGE STYLES */

.facilities-hero {
  height: 60vh;
  min-height: 500px;
}

.facilities-overview-section {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
}

.facilities-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.facility-card-large {
  grid-column: span 2;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.12);
  padding: 3rem 2.5rem;
  transition: all 0.3s ease;
}

.facility-card-large.featured-facility {
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.02);
}

.facility-card-main {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.facility-card-large:hover,
.facility-card-main:hover {
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Removed emoji icons for cleaner, professional look */

.facility-card-large h3,
.facility-card-main h3 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: #000000;
}

.facility-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 2rem;
  font-weight: 300;
}

.facility-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #505050;
  font-size: 0.95rem;
  font-weight: 300;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  flex-shrink: 0;
}

.play-modes {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.play-modes h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #000000;
}

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mode-tag {
  display: inline-block;
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.mode-tag:hover {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.25);
}

.amenities-highlight {
  padding: 8rem 2rem;
  background: var(--dark-bg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.amenity-item-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.amenity-number {
  font-size: 3rem;
  font-weight: 200;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.amenity-item-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.amenity-item-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.facilities-cta {
  padding: 8rem 2rem;
  background: #ffffff;
  color: #000000;
  text-align: center;
}

.facilities-cta h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.facilities-cta p {
  font-size: 1.125rem;
  color: #505050;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    height: auto;
    min-height: 600px;
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .trifecta, .services, .testimonials, .for-everyone, .memberships, .faq, .contact-section {
    padding: 5rem 1.5rem;
  }

  .trust-indicators {
    gap: 1.5rem;
  }

  .faq-item {
    padding: 2rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Membership page responsive */
  .membership-hero {
    height: auto;
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .membership-overview,
  .memberships-detailed,
  .pricing-tables,
  .booking-windows,
  .raffles-section,
  .membership-cta {
    padding: 5rem 1.5rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid-detailed {
    grid-template-columns: 1fr;
  }

  .pricing-tables-grid {
    grid-template-columns: 1fr;
  }

  .booking-comparison {
    grid-template-columns: 1fr;
  }

  .raffles-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  /* About page responsive */
  .about-hero,
  .services-hero {
    height: auto;
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .story-section,
  .why-indoor,
  .technology-section,
  .community-section,
  .about-cta {
    padding: 5rem 1.5rem;
  }

  .story-content {
    margin-top: 2rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .technology-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  /* Facilities page responsive */
  .facilities-hero {
    height: auto;
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .facilities-overview-section,
  .amenities-highlight,
  .facilities-cta {
    padding: 5rem 1.5rem;
  }

  .facilities-grid-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facility-card-large {
    grid-column: span 1;
  }

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

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1001;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
}

.announcement-banner-content {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
}

.announcement-banner-text {
  font-size: clamp(0.65rem, 2.5vw, 0.875rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3;
  display: inline;
  white-space: nowrap;
}

.announcement-banner-highlight {
  font-weight: 600;
  color: #ffffff;
}

/* Mobile: Smaller text, single line */
@media (max-width: 640px) {
  .announcement-banner {
    padding: 0.4rem 0.5rem;
  }
  
  .announcement-banner-text {
    letter-spacing: 0;
  }
  
  body:has(.announcement-banner) .site-header {
    top: 24px;
  }

  body:has(.announcement-banner) .hero {
    padding-top: calc(72px + 24px);
  }
}

/* Extra small screens - even tighter */
@media (max-width: 375px) {
  .announcement-banner {
    padding: 0.35rem 0.25rem;
  }
  
  .announcement-banner-text {
    font-size: 0.6rem;
  }
  
  body:has(.announcement-banner) .site-header {
    top: 20px;
  }

  body:has(.announcement-banner) .hero {
    padding-top: calc(72px + 20px);
  }
}

/* Adjust header positioning when announcement banner is present */
body:has(.announcement-banner) .site-header {
  top: 32px;
}

body:has(.announcement-banner) .hero {
  padding-top: calc(72px + 32px);
}

@media (max-width: 768px) and (min-width: 641px) {
  .announcement-banner {
    padding: 0.4rem 1rem;
  }

  .announcement-banner-text {
    font-size: 0.75rem;
  }

  body:has(.announcement-banner) .site-header {
    top: 26px;
  }

  body:has(.announcement-banner) .hero {
    padding-top: calc(72px + 26px);
  }
}

/* ============================================
   FOOTER - THETIPS STYLE
   ============================================ */
.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 0 0;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem 3rem 2.5rem;
}

/* Footer Top Section - Navigation Grid */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column ul li {
  margin-bottom: 0.75rem;
}

.footer-nav-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
  color: var(--text-primary);
}

/* Footer Middle Section - Address, Hours, Subscribe, Social */
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info-block h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-info-block p,
.footer-info-block address {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-info-block a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info-block a:hover {
  color: var(--text-primary);
}

/* Email Subscribe Form */
.footer-subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-subscribe-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-subscribe-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.footer-subscribe-input::placeholder {
  color: var(--text-muted);
}

.footer-subscribe-btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent-primary);
  color: var(--dark-bg);
  border: none;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Social Links */
.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Footer Logo Section - CENTERED & LARGE */
.footer-logo-section {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrapper {
  display: inline-block;
  max-width: 300px;
  margin: 0 auto;
}

.footer-logo-wrapper img {
  width: 100%;
  height: auto;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.footer-logo-wrapper:hover img {
  opacity: 1;
}

/* Footer Bottom - Legal & Credits */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-main {
    padding: 0 1.5rem 2rem 1.5rem;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-subscribe-form {
    flex-direction: column;
  }

  .footer-subscribe-btn {
    width: 100%;
  }

  .footer-logo-section {
    padding: 2rem 0;
  }

  .footer-logo-wrapper {
    max-width: 200px;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
/* ==========================================
   PAGE TRANSITIONS (SWUP)
   ========================================== */

/* Page container - always visible */
#swup {
  /* No transitions - Swup disabled */
}

/* Header scroll effect */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.98);
  transition: all 0.3s ease;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .transition-fade {
    transition: none !important;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Hero */
.contact-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Contact Main Section */
.contact-main-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.contact-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Column */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-info-block p {
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Social Links Large */
.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

/* Map Column */
.contact-map-column {
  position: sticky;
  top: 2rem;
}

.map-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Contact Options Section */
.contact-options-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-option-card {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.option-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.contact-option-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-option-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Waitlist CTA Section */
.waitlist-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-content-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.cta-content-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-content-box p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-map-column {
    position: relative;
    top: 0;
  }

  .map-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-main-section {
    padding: 3rem 0;
  }

  .contact-options-section {
    padding: 3rem 0;
  }

  .waitlist-cta-section {
    padding: 3rem 0;
  }

  .cta-content-box {
    padding: 2rem 1.5rem;
  }

  .cta-content-box h2 {
    font-size: 2rem;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.service-detail-section {
  padding: 6rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-content {
  max-width: 600px;
}

/* Removed duplicate .service-label - using primary definition at line 468 */

.service-detail-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.service-detail-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.service-features-list li strong {
  color: var(--text-primary);
}

.pricing-info {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-primary);
}

.pricing-info p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-primary);
}

.service-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-detail-image {
  position: relative;
}

.service-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
}

/* Responsive Design for Services */
@media (max-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-detail-grid.reverse {
    direction: ltr;
  }
  
  .service-detail-content h2 {
    font-size: 2.25rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .service-detail-content h2 {
    font-size: 1.875rem;
  }
  
  .service-detail-content h3 {
    font-size: 1.5rem;
  }
  
  .service-intro {
    font-size: 1rem;
  }
  
  .service-cta {
    flex-direction: column;
  }
  
  .service-cta .btn {
    width: 100%;
  }
}

/* Contact page responsive - map & contact info */
@media (max-width: 968px) {
  .story-section > .container > div[style*="grid-template-columns: 1fr 350px"] {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  .story-section > .container > div[style*="grid-template-columns: 1fr 350px"] > div:last-child {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .story-section > .container > div[style*="grid-template-columns: 1fr 350px"] > div:first-child,
  #map {
    height: 350px !important;
  }
}

