/* ===================================
   VINTAGE RETRO FITNESS STUDIO CSS
   Shimmering Globe Fitness
   Design Style: Vintage & Retro-Inspired
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2C2416;
  background-color: #F5E6D3;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.03) 10px, rgba(139, 69, 19, 0.03) 20px);
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #8B4513;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #A0522D;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #8B4513;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3E3023;
}

a {
  color: #C0392B;
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: #8B0000;
  text-decoration: none;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #3E3023;
}

strong {
  font-weight: 700;
  color: #2C2416;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* VINTAGE HEADER */
header {
  background-color: #D2691E;
  background-image: linear-gradient(135deg, #D2691E 0%, #A0522D 100%);
  border-bottom: 4px solid #8B4513;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2), inset 0 -2px 0 rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* VINTAGE NAVIGATION */
.main-nav {
  display: none;
}

.main-nav a {
  color: #FFF8DC;
  text-decoration: none;
  padding: 12px 18px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(139, 69, 19, 0.3);
  border: 2px solid #8B4513;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.main-nav a:hover {
  background-color: #8B4513;
  color: #FFF;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #8B4513;
  color: #FFF8DC;
  border: 3px solid #654321;
  border-radius: 0;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  background-color: #654321;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #D2B48C;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(139, 69, 19, 0.1) 20px, rgba(139, 69, 19, 0.1) 40px);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4);
  border-left: 6px solid #8B4513;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #8B4513;
  color: #FFF8DC;
  border: 3px solid #654321;
  border-radius: 0;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.mobile-menu-close:hover {
  background-color: #654321;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #2C2416;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #F5DEB3;
  border: 3px solid #8B4513;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.mobile-nav a:hover {
  background-color: #8B4513;
  color: #FFF8DC;
  transform: translateX(-4px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

/* VINTAGE BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 3px solid;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

.btn-primary {
  background-color: #C0392B;
  color: #FFF8DC;
  border-color: #8B0000;
}

.btn-primary:hover {
  background-color: #8B0000;
  color: #FFF;
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: #D68910;
  color: #2C2416;
  border-color: #B8860B;
}

.btn-secondary:hover {
  background-color: #B8860B;
  color: #FFF;
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
}

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

/* HERO SECTION - VINTAGE STYLE */
.hero {
  background-color: #DEB887;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(210, 105, 30, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.2) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(139, 69, 19, 0.05) 50px, rgba(139, 69, 19, 0.05) 100px);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #8B4513;
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, #8B4513 0px, #8B4513 20px, transparent 20px, transparent 40px);
}

.hero h1 {
  color: #8B0000;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 6px 6px 0 rgba(139, 69, 19, 0.1);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  color: #3E3023;
  max-width: 700px;
  margin: 0 auto 32px;
  font-style: italic;
  font-family: 'Georgia', serif;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.trust-badge {
  margin-top: 32px;
  font-weight: 700;
  color: #8B4513;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  background-color: #F5DEB3;
  border: 3px dashed #8B4513;
  display: inline-block;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #C0392B;
  margin: 24px 0;
  padding: 16px 32px;
  background-color: #FFF8DC;
  border: 4px double #8B4513;
  display: inline-block;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* BREADCRUMB - VINTAGE */
.breadcrumb {
  font-size: 14px;
  color: #5D4E37;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #8B4513;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.benefits,
.services-preview,
.testimonials,
.membership-teaser,
.cta-banner,
.course-categories,
.course-schedule,
.services-overview,
.membership-benefits,
.pricing-tiers,
.team-intro,
.story,
.values,
.stats,
.facilities,
.community,
.awards,
.contact-options,
.studio-info,
.legal-content,
.confirmation-message,
.next-actions,
.social-connect {
  padding: 60px 20px;
  background-color: #FAF0E6;
  border-top: 4px solid #D2691E;
  border-bottom: 4px solid #D2691E;
  margin-bottom: 40px;
  position: relative;
}

.benefits::before,
.services-preview::before,
.membership-benefits::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #8B4513 0px, #8B4513 20px, transparent 20px, transparent 40px);
}

/* CARD GRIDS - FLEXBOX LAYOUT */
.benefits-grid,
.services-grid,
.categories-grid,
.tiers-grid,
.trainers-grid,
.values-grid,
.stats-grid,
.facilities-grid,
.options-grid,
.info-grid,
.actions-grid,
.contacts-list,
.rules-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

/* VINTAGE CARDS */
.benefit-card,
.service-card,
.category-card,
.tier-card,
.trainer-card,
.value-card,
.facility-card,
.option-card,
.info-item,
.action-card,
.contact-item,
.rule-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFF8DC;
  padding: 32px 24px;
  border: 4px solid #8B4513;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.tier-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed #D2691E;
  pointer-events: none;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.tier-card:hover,
.trainer-card:hover,
.value-card:hover,
.facility-card:hover,
.option-card:hover,
.action-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #FFF;
}

.benefit-card h3,
.service-card h3,
.category-card h3,
.tier-card h3,
.trainer-card h3,
.value-card h3,
.facility-card h3,
.option-card h3,
.action-card h3,
.contact-item h3,
.rule-item h3 {
  color: #8B0000;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C0392B;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 3px dashed #D2691E;
  font-family: 'Georgia', serif;
}

/* TIER CARD SPECIAL */
.tier-card.highlight {
  border-color: #C0392B;
  background-color: #FFF;
  border-width: 6px;
  position: relative;
}

.tier-card .badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background-color: #C0392B;
  color: #FFF8DC;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #8B0000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.tier-price {
  font-size: 40px;
  font-weight: 700;
  color: #8B0000;
  margin: 20px 0;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.tier-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.tier-card li {
  padding: 12px 0;
  border-bottom: 2px dotted #D2691E;
  position: relative;
  padding-left: 24px;
}

.tier-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D68910;
  font-weight: 700;
  font-size: 18px;
}

/* STAT ITEMS */
.stat-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  background-color: #F5DEB3;
  padding: 32px 20px;
  border: 4px solid #8B4513;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 48px;
  color: #C0392B;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.stat-item p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5D4E37;
  font-weight: 600;
}

/* TESTIMONIALS - VINTAGE STYLE */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF8DC;
  padding: 32px;
  border: 4px solid #8B4513;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #D2691E;
  font-family: 'Georgia', serif;
  opacity: 0.3;
}

.testimonial-card p {
  font-style: italic;
  color: #2C2416;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B4513;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 3px dashed #D2691E;
}

.testimonial-card .rating {
  color: #D68910;
  font-size: 18px;
  margin-top: 8px;
}

.rating-average {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #8B4513;
  font-size: 16px;
}

/* SCHEDULE TABLE */
.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.schedule-item {
  background-color: #FFF8DC;
  padding: 24px;
  border: 3px solid #8B4513;
  border-left: 8px solid #C0392B;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.schedule-item:hover {
  transform: translateX(-4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.schedule-item h3 {
  color: #8B0000;
  margin-bottom: 12px;
}

.availability {
  color: #228B22;
  font-weight: 700;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* COMPARISON TABLE */
.comparison-table {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background-color: #FFF8DC;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

thead {
  background-color: #D2691E;
  color: #FFF8DC;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #8B4513;
}

tbody tr {
  border-bottom: 2px solid #D2B48C;
}

tbody tr:hover {
  background-color: #FFEFD5;
}

tbody td {
  padding: 16px;
  color: #2C2416;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background-color: #F5DEB3;
  padding: 32px 20px;
  border: 4px solid #8B4513;
  position: relative;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.step h3 {
  color: #C0392B;
  margin-bottom: 16px;
  font-size: 20px;
}

.step h3::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background-color: #8B4513;
  border: 3px solid #654321;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF8DC;
  font-size: 24px;
  font-weight: 700;
}

/* CONTRACT OPTIONS */
.contract-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFF8DC;
  padding: 28px 24px;
  border: 3px solid #8B4513;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option.highlight {
  border-color: #C0392B;
  border-width: 5px;
  background-color: #FFF;
}

.option:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.3);
}

.option h3 {
  color: #8B0000;
  margin-bottom: 12px;
}

/* TRAINER PROFILE */
.trainer-profile {
  padding: 60px 20px;
  background-color: #FFF8DC;
  border: 4px solid #D2691E;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.trainer-profile h2 {
  color: #8B0000;
  margin-bottom: 20px;
}

.trainer-profile ul {
  margin: 24px 0;
}

.trainer-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border: 4px solid #8B4513;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role {
  font-weight: 700;
  color: #D68910;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.specialization {
  font-style: italic;
  color: #5D4E37;
  font-size: 14px;
}

/* FAQ SECTION */
.faq {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

.faq-item {
  background-color: #FFF8DC;
  padding: 24px;
  margin-bottom: 20px;
  border: 3px solid #8B4513;
  border-left: 6px solid #D68910;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  color: #8B0000;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #3E3023;
  line-height: 1.7;
}

/* CTA SECTIONS */
.cta-section,
.cta-banner,
.trial-offer,
.booking-info,
.booking-cta {
  background-color: #D2691E;
  background-image: linear-gradient(135deg, #D2691E 0%, #A0522D 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 6px solid #8B4513;
  border-bottom: 6px solid #8B4513;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

.cta-section h2,
.cta-banner h2,
.trial-offer h2,
.booking-info h2,
.booking-cta h2 {
  color: #FFF8DC;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.cta-section p,
.cta-banner p,
.trial-offer p,
.booking-info p {
  color: #FFF8DC;
  font-size: 18px;
  margin-bottom: 24px;
}

.trial-offer {
  background-color: #8B4513;
  background-image: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.price-info {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin-top: 20px;
}

/* CONTACT FORM */
.contact-form-section,
.data-request-form {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

.form-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
  background-color: #FFF8DC;
  padding: 40px;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.form-info {
  background-color: #FFEFD5;
  padding: 20px;
  margin-bottom: 32px;
  border: 3px dashed #D2691E;
  text-align: center;
}

.form-info p {
  margin-bottom: 12px;
  color: #2C2416;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #2C2416;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-placeholder {
  background-color: #F5E6D3;
  border: 3px solid #8B4513;
  padding: 14px 16px;
  color: #5D4E37;
  font-style: italic;
  min-height: 50px;
}

.checkbox-placeholder {
  padding: 12px;
  color: #2C2416;
}

.checkbox-placeholder a {
  color: #C0392B;
  font-weight: 600;
}

/* MAP & DIRECTIONS */
.map-section,
.directions,
.location {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

.map-placeholder {
  background-color: #D2B48C;
  padding: 80px 40px;
  text-align: center;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  margin-top: 32px;
}

.map-placeholder p {
  color: #2C2416;
  font-weight: 600;
}

.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.direction-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF8DC;
  padding: 32px;
  border: 3px solid #8B4513;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.direction-item h3 {
  color: #8B0000;
  margin-bottom: 16px;
}

.direction-item ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.direction-item li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.direction-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D68910;
  font-weight: 700;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background-color: #8B4513;
  background-image: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  padding: 100px 20px;
}

.thank-you-hero h1 {
  color: #FFF8DC;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #228B22;
  border: 5px solid #006400;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.checkmark {
  font-size: 60px;
  color: #FFF;
  font-weight: 700;
}

.message-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.main-message {
  font-size: 20px;
  font-weight: 600;
  color: #2C2416;
  margin-bottom: 32px;
  background-color: #FFEFD5;
  padding: 24px;
  border: 3px solid #D2691E;
}

/* SOCIAL MEDIA */
.social-media,
.social-connect {
  padding: 60px 20px;
  background-color: #DEB887;
  text-align: center;
}

.social-links {
  margin-top: 32px;
}

.social-links p {
  font-weight: 600;
  color: #2C2416;
  margin-bottom: 12px;
  font-size: 16px;
}

.hashtag {
  font-size: 24px;
  font-weight: 700;
  color: #C0392B;
  margin-top: 24px;
  font-family: 'Georgia', serif;
}

.newsletter-info {
  margin-top: 40px;
  background-color: #FFF8DC;
  padding: 32px;
  border: 4px solid #8B4513;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #8B4513;
  background-image: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.legal-hero h1 {
  color: #FFF8DC;
}

.last-updated,
.subtitle {
  color: #F5DEB3;
  font-style: italic;
  margin-top: 16px;
}

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFF8DC;
  padding: 40px;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.content-wrapper h2 {
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 3px dashed #D2691E;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: #8B4513;
  margin-top: 24px;
  margin-bottom: 12px;
}

.cookie-table {
  margin: 32px 0;
}

.cookie-settings {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

.settings-info {
  text-align: center;
  background-color: #FFEFD5;
  padding: 24px;
  margin-bottom: 32px;
  border: 3px dashed #D2691E;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-toggles {
  max-width: 700px;
  margin: 32px auto;
}

.toggle-item {
  background-color: #FFF8DC;
  padding: 24px;
  margin-bottom: 16px;
  border: 3px solid #8B4513;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.toggle-item h3 {
  margin: 0;
  flex: 1;
}

.settings-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* HOUSE RULES */
.house-rules {
  padding: 60px 20px;
  background-color: #FAF0E6;
}

/* FOOTER - VINTAGE STYLE */
footer {
  background-color: #3E2723;
  background-image: linear-gradient(135deg, #3E2723 0%, #2C1810 100%);
  color: #F5DEB3;
  padding: 60px 20px 20px;
  border-top: 6px solid #8B4513;
  box-shadow: inset 0 4px 0 rgba(139, 69, 19, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: #D2691E;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 16px;
}

.footer-section p {
  color: #D2B48C;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #D2B48C;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F5DEB3;
  padding-left: 8px;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 3px dashed #8B4513;
}

.footer-bottom p {
  color: #A0826D;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER - VINTAGE */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3E2723;
  background-image: linear-gradient(135deg, #3E2723 0%, #2C1810 100%);
  padding: 24px 20px;
  z-index: 950;
  border-top: 4px solid #8B4513;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  display: none;
}

#cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1;
  color: #F5DEB3;
  font-size: 14px;
  min-width: 250px;
}

.cookie-consent-text a {
  color: #D2691E;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFF8DC;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 6px solid #8B4513;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #8B4513;
  color: #FFF8DC;
  border: 3px solid #654321;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cookie-modal-close:hover {
  background-color: #654321;
  transform: rotate(90deg);
}

.cookie-category {
  background-color: #FAF0E6;
  padding: 20px;
  margin-bottom: 16px;
  border: 3px solid #8B4513;
}

.cookie-category h3 {
  color: #8B0000;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #3E3023;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #2C2416;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .benefit-card,
  .service-card,
  .category-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(16.666% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .benefit-card,
  .service-card,
  .category-card,
  .tier-card,
  .trainer-card,
  .value-card,
  .facility-card,
  .option-card,
  .action-card,
  .stat-item,
  .testimonial-card,
  .direction-item,
  .step,
  .option {
    flex: 1 1 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .tier-price {
    font-size: 32px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
}

/* ANIMATIONS */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-menu.active {
  animation: slideInFromRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #5D4E37;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-style: italic;
  font-family: 'Georgia', serif;
  padding: 20px;
  background-color: #FFEFD5;
  border: 3px dashed #D2691E;
}

/* ENSURE PROPER SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PREVENT OVERLAPPING */
* + * {
  margin-top: 0;
}

section + section {
  margin-top: 0;
}

/* ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #D68910;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF VINTAGE RETRO CSS */
