/* ============================================
   MainConstruct Performance - Scandinavian Clean Design
   Modern Fitness Studio CSS
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

/* ============================================
   SCANDINAVIAN TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.subheadline {
  font-size: 20px;
  color: #6a6a6a;
  line-height: 1.5;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
  text-align: center;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   BUTTONS - SCANDINAVIAN STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #E63946;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
  background-color: #C41E2A;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #1D3557;
  border: 2px solid #1D3557;
}

.btn-secondary:hover {
  background-color: #1D3557;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D3557;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1000;
  background-color: #1D3557;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1D3557;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1D3557;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E63946;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
}

.hero h1 {
  color: #1D3557;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #1D3557;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #E63946;
}

/* ============================================
   SECTIONS
   ============================================ */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1D3557;
}

/* ============================================
   FEATURE CARDS - FLEXBOX GRID
   ============================================ */

.feature-grid,
.service-grid,
.values-grid,
.category-grid,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-card,
.service-card,
.value-card,
.category-card,
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-card img,
.value-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.feature-card h3,
.service-card h3,
.value-card h3,
.category-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p,
.service-card p,
.value-card p,
.category-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card .price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E63946;
  margin-top: 16px;
}

/* ============================================
   PROCESS STEPS - FLEXBOX
   ============================================ */

.process-steps,
.stats-grid,
.testimonial-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step,
.stat,
.testimonial-card,
.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
}

.step {
  background-color: #F1FAEE;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
  margin-bottom: 8px;
}

.step h3 {
  color: #1D3557;
  font-size: 20px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #F1FAEE;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card .quote {
  font-size: 18px;
  line-height: 1.6;
  color: #2b2b2b;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1D3557;
  margin-bottom: 4px;
}

.testimonial-card .role {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background-color: #1D3557;
  padding: 60px 20px;
}

.stats h2 {
  color: #ffffff;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat .number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
}

.stat .label {
  font-size: 16px;
  color: #F1FAEE;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #E63946;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.15);
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 28px;
  color: #1D3557;
  text-align: center;
}

.pricing-card .price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card .price span {
  font-size: 18px;
  color: #6a6a6a;
  font-weight: 400;
}

.pricing-card .billing {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin-bottom: 24px;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #4a4a4a;
}

.pricing-card ul li:first-child {
  border-top: 1px solid #f0f0f0;
}

.pricing-card .best-for {
  font-size: 14px;
  color: #6a6a6a;
  text-align: center;
  font-style: italic;
}

.badge {
  background-color: #E63946;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, #1D3557 0%, #0d1b2a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 60px;
}

.cta-section h2,
.cta-section h3 {
  color: #ffffff;
}

.cta-section p {
  color: #F1FAEE;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-section .cta-buttons {
  justify-content: center;
}

.trust {
  font-size: 14px;
  color: #F1FAEE;
  margin-top: 24px;
  text-align: center;
}

/* ============================================
   TEAM MEMBERS
   ============================================ */

.team-member {
  background-color: #F1FAEE;
  border-radius: 2px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-member h3 {
  color: #1D3557;
  font-size: 24px;
}

.team-member .role {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member .credentials {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

/* ============================================
   SCHEDULE & COURSE DETAILS
   ============================================ */

.schedule-grid,
.day {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.day {
  flex: 1 1 calc(14.285% - 16px);
  min-width: 150px;
  background-color: #F1FAEE;
  padding: 20px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day h3 {
  color: #1D3557;
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 2px solid #E63946;
  padding-bottom: 8px;
}

.day p {
  font-size: 14px;
  line-height: 1.8;
}

.course-detail {
  background-color: #F1FAEE;
  padding: 40px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.course-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.difficulty {
  display: inline-block;
  background-color: #1D3557;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

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

.methods-grid,
.location-grid,
.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.method-card,
.location-details,
.direction-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #F1FAEE;
  padding: 32px 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.method-card img {
  width: 64px;
  height: 64px;
}

.map-placeholder {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #e0e0e0;
  padding: 80px 40px;
  border-radius: 2px;
  text-align: center;
  color: #6a6a6a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-note {
  background-color: #F1FAEE;
  padding: 32px;
  border-radius: 2px;
  border-left: 4px solid #E63946;
}

.form-note p {
  margin-bottom: 12px;
}

.form-note a {
  color: #E63946;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

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

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

.content-wrapper h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1D3557;
}

.content-wrapper h3 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #1D3557;
}

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

.content-wrapper ul li,
.content-wrapper ol li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.legal-nav {
  background-color: #F1FAEE;
  padding: 40px 20px;
  text-align: center;
}

.legal-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.legal-nav nav a {
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #1D3557;
  transition: all 0.3s ease;
}

.legal-nav nav a:hover {
  background-color: #E63946;
  color: #ffffff;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #F1FAEE;
}

.success-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1D3557;
  color: #F1FAEE;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}

.footer-column h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-column nav a:hover {
  color: #E63946;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #F1FAEE;
}

.footer-bottom {
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D3557;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #F1FAEE;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-buttons .accept-all {
  background-color: #E63946;
  color: #ffffff;
}

.cookie-buttons .accept-all:hover {
  background-color: #C41E2A;
}

.cookie-buttons .reject-all {
  background-color: transparent;
  color: #F1FAEE;
  border: 1px solid #F1FAEE;
}

.cookie-buttons .reject-all:hover {
  background-color: rgba(241, 250, 238, 0.1);
}

.cookie-buttons .settings {
  background-color: transparent;
  color: #F1FAEE;
  text-decoration: underline;
  border: none;
  padding: 10px;
}

.cookie-buttons .settings:hover {
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

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

.cookie-modal-content h2 {
  color: #1D3557;
  margin-bottom: 24px;
}

.cookie-option {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-option h3 {
  font-size: 18px;
  color: #1D3557;
  margin-bottom: 4px;
}

.cookie-option p {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #e0e0e0;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

/* ============================================
   LISTS & MISC ELEMENTS
   ============================================ */

.benefits,
.facility-features,
.credentials-list,
.price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefits li,
.facility-features li,
.credentials-list li,
.price-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
  line-height: 1.6;
}

.benefits li::before,
.facility-features li::before,
.credentials-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: bold;
  font-size: 18px;
}

.tagline {
  font-size: 20px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
}

.note {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .subheadline {
    font-size: 18px;
  }

  /* Show mobile menu */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Adjust sections padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 16px;
  }

  /* Flexbox grids stack on mobile */
  .feature-grid,
  .service-grid,
  .values-grid,
  .category-grid,
  .pricing-grid,
  .process-steps,
  .testimonial-grid,
  .team-grid,
  .methods-grid,
  .location-grid,
  .directions-grid {
    flex-direction: column;
  }

  .feature-card,
  .service-card,
  .value-card,
  .category-card,
  .pricing-card,
  .step,
  .stat,
  .testimonial-card,
  .team-member,
  .method-card,
  .location-details,
  .direction-method {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Stats number size */
  .stat .number {
    font-size: 42px;
  }

  /* Schedule grid */
  .schedule-grid {
    flex-direction: column;
  }

  .day {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .feature-card,
  .service-card,
  .value-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }

  .pricing-card.featured {
    flex: 1 1 100%;
  }

  .step,
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.feature-card,
.service-card {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

.show {
  display: block;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */
