/* =================================================================
   RecoVibe - Elegant Classic Design Style CSS
   Professional Recovery Gadgets Website
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* TYPOGRAPHY - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

blockquote {
  font-style: italic;
  padding: 24px 32px;
  margin: 32px 0;
  border-left: 4px solid #8B7355;
  background-color: #FFFFFF;
  color: #4A4A4A;
  font-size: 18px;
}

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E3DC;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #4A4A4A;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #8B7355;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #8B7355;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #8B7355;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #6F5B44;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #4A4A4A;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8B7355;
}

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

.mobile-nav a {
  color: #4A4A4A;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #F0EBE5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B7355;
  padding-left: 8px;
}

/* BUTTONS - Elegant Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background-color: #8B7355;
  color: #FFFFFF;
  border-color: #8B7355;
}

.btn-primary:hover {
  background-color: #6F5B44;
  border-color: #6F5B44;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #8B7355;
  border-color: #8B7355;
}

.btn-secondary:hover {
  background-color: #8B7355;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F9F7F4 0%, #F0EBE5 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #E8E3DC;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.trust-indicators span {
  font-size: 14px;
  color: #6A6A6A;
  letter-spacing: 0.3px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #F9F7F4 0%, #F0EBE5 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #E8E3DC;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #5A5A5A;
  max-width: 700px;
  margin: 0 auto;
}

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  text-align: center;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.benefit-card p {
  font-size: 15px;
  color: #6A6A6A;
  line-height: 1.6;
}

/* PRODUCT SECTIONS */
.featured-products,
.products-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.featured-products h2,
.products-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.product-grid,
.product-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #D4CAB8;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #8B7355;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.product-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9F7F4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.product-image img {
  max-height: 160px;
  width: auto;
  opacity: 0.9;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.product-card p {
  font-size: 14px;
  color: #6A6A6A;
  line-height: 1.6;
  flex-grow: 1;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.product-benefits li {
  font-size: 14px;
  color: #5A5A5A;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.product-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
}

.product-price {
  font-size: 24px;
  font-weight: 600;
  color: #8B7355;
  margin: 16px 0;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 48px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #8B7355;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #6A6A6A;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1A1A1A;
  font-style: normal;
}

.testimonial-author span {
  font-size: 14px;
  color: #8B7355;
  font-style: normal;
}

/* TRUST SECTION */
.trust-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.trust-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
}

.trust-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

.trust-item p {
  font-size: 15px;
  color: #4A4A4A;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8B7355 0%, #6F5B44 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #F0EBE5;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #8B7355;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #F0EBE5;
  border-color: #F0EBE5;
}

.cta-banner .btn-secondary,
.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-banner .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #8B7355;
}

.urgency-note {
  font-size: 14px;
  color: #F0EBE5;
  font-style: italic;
}

/* EDUCATION & CONTENT SECTIONS */
.education-content,
.text-section {
  padding: 40px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.benefits-detailed {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.benefit-detailed {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.benefit-detailed h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.benefit-detailed p {
  font-size: 15px;
  color: #6A6A6A;
}

/* RECOVERY METHODS */
.recovery-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.method-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  padding: 24px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  text-align: center;
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.method-card p {
  font-size: 14px;
  color: #6A6A6A;
}

/* TIMELINE */
.recovery-timeline {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.timeline-marker {
  min-width: 64px;
  height: 64px;
  background-color: #8B7355;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  color: #6A6A6A;
}

/* PROCESS & GUIDES */
.process-overview {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.steps-horizontal {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.step-horizontal {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.step-number-large {
  width: 80px;
  height: 80px;
  background-color: #8B7355;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* WORKOUT GUIDE */
.workout-guide {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.workout-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.workout-type-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.workout-type-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.workout-type-card p {
  font-size: 15px;
  color: #6A6A6A;
}

/* TIMING GUIDE */
.timing-guide {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.timing-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.timing-block {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  padding: 24px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.timing-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8B7355;
}

.timing-block p {
  font-size: 15px;
  color: #5A5A5A;
}

/* SAFETY SECTION */
.safety-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.safety-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.safety-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.safety-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2C2C2C;
}

.safety-item ul {
  list-style-position: inside;
  padding-left: 0;
}

.safety-item li {
  font-size: 15px;
  color: #6A6A6A;
  padding: 6px 0;
}

/* FAQ SECTIONS */
.faq-section,
.faq-contact {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

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

.faq-item p {
  font-size: 15px;
  color: #6A6A6A;
  line-height: 1.7;
}

/* BRAND STORY */
.brand-story {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.mission-vision {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.mission-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.mission-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #8B7355;
}

.values {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 32px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.values h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  color: #2C2C2C;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
}

/* TEAM SECTION */
.team-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.team-section > p {
  text-align: center;
  color: #6A6A6A;
  margin-bottom: 32px;
}

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

.team-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  text-align: center;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.team-card p {
  font-size: 14px;
  color: #6A6A6A;
}

.team-note {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  color: #8B7355;
}

/* EXPERTISE SECTION */
.expertise-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.expertise-list {
  max-width: 600px;
  margin: 0 auto 40px;
  list-style: none;
  padding: 0;
}

.expertise-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.expertise-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
  font-size: 20px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stats span {
  font-size: 16px;
  color: #8B7355;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* LOCATION SECTION */
.location-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.location-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.location-info h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2C2C2C;
}

.location-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.location-info li {
  font-size: 15px;
  color: #4A4A4A;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.location-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
}

/* CONTACT SECTIONS */
.contact-options {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.contact-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  text-align: center;
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.contact-option h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.contact-option p {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 8px;
}

.contact-option strong {
  color: #8B7355;
}

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

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  color: #6A6A6A;
  margin-bottom: 40px;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.form-note p {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.form-note strong {
  color: #2C2C2C;
}

.form-note input[type="checkbox"] {
  margin-right: 8px;
}

.form-note .note {
  font-size: 13px;
  color: #8B7355;
  font-style: italic;
}

/* SHOWROOM INFO */
.showroom-info {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.showroom-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.showroom-details h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2C2C2C;
}

.showroom-details h4 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #8B7355;
}

.showroom-details ul {
  list-style: none;
  padding: 0;
}

.showroom-details li {
  font-size: 15px;
  color: #4A4A4A;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.showroom-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
}

/* GUARANTEE SECTIONS */
.guarantee-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

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

.guarantee-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  text-align: center;
}

.guarantee-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

.guarantee-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C2C2C;
}

.guarantee-item p {
  font-size: 14px;
  color: #6A6A6A;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F9F7F4 0%, #F0EBE5 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #8B7355;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 12px;
}

.confirmation-note {
  font-size: 15px;
  color: #8B7355;
  font-style: italic;
}

.next-steps {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.while-waiting {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.suggestions {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.suggestion {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
  text-align: center;
}

.suggestion h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.contact-alternatives {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.guarantee-reminder {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #F9F7F4 0%, #F0EBE5 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #E8E3DC;
}

.legal-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 14px;
  color: #6A6A6A;
}

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: #8B7355;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #6F5B44;
}

/* FOOTER */
footer {
  background-color: #2C2C2C;
  color: #D4CAB8;
  padding: 60px 20px 20px;
  border-top: 3px solid #8B7355;
}

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

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col h4 {
  color: #F0EBE5;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #B8AE9E;
  margin-bottom: 12px;
}

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

.footer-nav a {
  font-size: 14px;
  color: #B8AE9E;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #F0EBE5;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #4A4A4A;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #8A8A8A;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2C2C;
  color: #F0EBE5;
  padding: 20px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #8B7355;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  letter-spacing: 0.3px;
}

.cookie-accept {
  background-color: #8B7355;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #6F5B44;
}

.cookie-reject {
  background-color: transparent;
  color: #B8AE9E;
  border: 1px solid #4A4A4A;
}

.cookie-reject:hover {
  background-color: #3A3A3A;
  border-color: #5A5A5A;
}

.cookie-settings {
  background-color: transparent;
  color: #8B7355;
  border: 1px solid #8B7355;
}

.cookie-settings:hover {
  background-color: #8B7355;
  color: #FFFFFF;
}

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

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #4A4A4A;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #8B7355;
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background-color: #F9F7F4;
  border: 1px solid #E8E3DC;
  border-radius: 4px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  color: #2C2C2C;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: #D4CAB8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #8B7355;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #6A6A6A;
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust header */
  .header-cta {
    flex: 1 1 100%;
    justify-content: center;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Adjust grid layouts */
  .benefits-grid,
  .product-grid,
  .product-grid-full,
  .testimonials-grid,
  .trust-grid,
  .methods-grid,
  .workout-types,
  .timing-blocks,
  .safety-info,
  .mission-grid,
  .team-grid,
  .guarantee-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .product-card,
  .testimonial-card,
  .trust-item,
  .method-card,
  .workout-type-card,
  .timing-block,
  .safety-item,
  .mission-block,
  .team-card,
  .guarantee-item,
  .contact-option {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Steps and timeline */
  .steps,
  .steps-horizontal {
    flex-direction: column;
    gap: 32px;
  }
  
  .step,
  .step-horizontal {
    max-width: 100%;
  }
  
  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Adjust spacing */
  .section {
    padding: 40px 16px;
  }
  
  /* Timeline */
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .product-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .trust-item,
  .method-card,
  .team-card,
  .guarantee-item,
  .contact-option {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ANIMATIONS & TRANSITIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.product-card,
.testimonial-card,
.trust-item,
.method-card {
  animation: fadeIn 0.5s ease forwards;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #8B7355;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #8B7355;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF CSS */