/* ==========================================
   CRYSTAL MENTOR - MODERN BOLD CSS STYLES
   Design Style: Modern Bold
   ========================================== */

/* CSS RESET & NORMALIZE */
* {
  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: #1a1a1a;
  background-color: #ffffff;
  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: none;
}

/* ==========================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: 40px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 800;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.subheadline {
  font-size: 22px;
  font-weight: 600;
  color: #2C5F8D;
  margin-bottom: 32px;
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ==========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================
   HEADER - MODERN BOLD DESIGN
   ========================================== */

header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4066 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.main-nav a:hover {
  color: #F5F0E8;
  transform: translateY(-2px);
}

.cta-button {
  background: #C41E3A;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a01730;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #C41E3A;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #a01730;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F8D 0%, #1a4066 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(196, 30, 58, 0.3);
  transform: translateX(10px);
  border-left-width: 8px;
}

/* ==========================================
   HERO SECTION - BOLD & IMPACTFUL
   ========================================== */

.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4066 50%, #C41E3A 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero .subheadline {
  color: #F5F0E8;
  font-size: 24px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #F5F0E8;
  font-weight: 600;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #C41E3A;
}

/* ==========================================
   BUTTONS - BOLD MODERN STYLE
   ========================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #C41E3A;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
  background: #a01730;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
}

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

.btn-link {
  background: transparent;
  color: #2C5F8D;
  padding: 12px 30px;
  font-weight: 700;
  border: 2px solid #2C5F8D;
}

.btn-link:hover {
  background: #2C5F8D;
  color: #ffffff;
}

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

/* ==========================================
   SECTIONS - CONSISTENT SPACING
   ========================================== */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: #C41E3A;
  border-radius: 3px;
}

/* ==========================================
   CARDS - FLEXBOX LAYOUT WITH PROPER SPACING
   ========================================== */

.features-grid,
.services-grid,
.team-grid,
.values-grid,
.stats-grid,
.posts-grid,
.gallery-categories,
.seasons-grid,
.tips-grid,
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature,
.service-card,
.team-member,
.value,
.stat,
.post-card,
.category-card,
.season,
.tip,
.cta-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
  border-left: 5px solid #C41E3A;
}

.feature:hover,
.service-card:hover,
.team-member:hover,
.value:hover,
.post-card:hover,
.category-card:hover,
.season:hover,
.tip:hover,
.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.2);
  border-left-width: 8px;
}

.service-card h2,
.service-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-weight: 900;
}

.service-details {
  margin: 20px 0;
  padding: 20px;
  background: #F5F0E8;
  border-radius: 8px;
}

.service-details p {
  margin-bottom: 8px;
  font-size: 16px;
}

.price {
  font-size: 24px;
  font-weight: 900;
  color: #C41E3A;
  margin: 20px 0;
}

/* ==========================================
   TESTIMONIALS - HIGH CONTRAST FOR READABILITY
   ========================================== */

.testimonials {
  background: #F5F0E8;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border-top: 5px solid #2C5F8D;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F8D;
  font-style: normal;
  font-size: 16px;
}

.testimonial p {
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.rating,
.trust-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F8D;
  margin-top: 32px;
}

/* ==========================================
   TIMELINE - FLEXBOX LAYOUT
   ========================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.timeline-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4066 100%);
  color: #ffffff;
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.timeline-item h3 {
  font-size: 32px;
  color: #C41E3A;
  margin-bottom: 12px;
  font-weight: 900;
}

.timeline-item p {
  font-size: 16px;
  color: #F5F0E8;
}

/* ==========================================
   INFO SECTIONS - FLEXBOX GRIDS
   ========================================== */

.info-grid,
.contact-grid,
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.info-item,
.contact-method,
.category {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 24px;
  background: #F5F0E8;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #2C5F8D;
  margin-bottom: 20px;
}

.info-item h3,
.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-weight: 900;
}

.category {
  background: #2C5F8D;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover {
  background: #C41E3A;
  transform: scale(1.05);
}

/* ==========================================
   CTA BANNER - BOLD DESIGN
   ========================================== */

.cta-banner {
  background: linear-gradient(135deg, #C41E3A 0%, #a01730 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: slide 20s linear infinite;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #ffffff;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.offer {
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 32px;
  border: 2px solid #ffffff;
}

/* ==========================================
   FOOTER - MODERN BOLD STYLE
   ========================================== */

footer {
  background: #1a1a1a;
  color: #F5F0E8;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-section h3 {
  color: #C41E3A;
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
}

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

.footer-nav a {
  color: #F5F0E8;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: -20px;
  color: #C41E3A;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C41E3A;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #333333;
  color: #999999;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  font-size: 16px;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-accept {
  background: #C41E3A;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #a01730;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background: #ffffff;
  color: #2C5F8D;
}

.cookie-settings {
  background: transparent;
  color: #F5F0E8;
  border: 2px solid #F5F0E8;
}

.cookie-settings:hover {
  background: #F5F0E8;
  color: #2C5F8D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1a1a1a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C41E3A;
  color: #ffffff;
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: #F5F0E8;
  border-radius: 12px;
  border-left: 4px solid #2C5F8D;
}

.cookie-category h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-weight: 900;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #cccccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2C5F8D;
}

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

.toggle-switch.active::after {
  transform: translateX(30px);
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2C5F8D;
}

.content-section h2 {
  color: #2C5F8D;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 900;
}

.content-section h2::after {
  display: none;
}

.last-update {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 12px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 32px auto;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  animation: scaleIn 0.5s ease;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #F5F0E8;
  border-radius: 12px;
  text-align: center;
  border-top: 5px solid #2C5F8D;
  margin-bottom: 20px;
}

.step h3 {
  color: #2C5F8D;
  font-weight: 900;
  margin-bottom: 12px;
}

.email-confirmation {
  text-align: center;
  font-weight: 700;
  color: #2C5F8D;
  font-size: 18px;
  margin-top: 32px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #C41E3A;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.15);
}

.faq-item h3 {
  color: #2C5F8D;
  font-weight: 900;
  margin-bottom: 12px;
}

.faq-item p {
  color: #1a1a1a;
}

/* ==========================================
   BLOG & GALLERY
   ========================================== */

.post-featured {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4066 100%);
  color: #ffffff;
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.3);
}

.post-featured h2 {
  color: #ffffff;
  text-align: left;
  margin-bottom: 20px;
}

.post-featured h2::after {
  display: none;
}

.post-featured p {
  font-size: 20px;
  margin-bottom: 24px;
  color: #F5F0E8;
}

/* ==========================================
   FORM STYLING
   ========================================== */

.form-info {
  background: #F5F0E8;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 5px solid #2C5F8D;
}

.form-info ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 16px;
}

.form-info li {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.note,
.cta-text {
  font-size: 16px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-50%, -50%);
  }
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }
  .subheadline { font-size: 18px; }
  
  /* Header */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo img {
    height: 45px;
  }
  
  /* Hero */
  .hero {
    padding: 50px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-link {
    font-size: 16px;
    padding: 14px 28px;
    width: 100%;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  /* Cards - Stack on Mobile */
  .features-grid,
  .services-grid,
  .team-grid,
  .values-grid,
  .stats-grid,
  .posts-grid,
  .gallery-categories,
  .seasons-grid,
  .tips-grid,
  .cta-grid,
  .timeline,
  .steps {
    flex-direction: column;
  }
  
  .feature,
  .service-card,
  .team-member,
  .value,
  .stat,
  .post-card,
  .category-card,
  .season,
  .tip,
  .cta-card,
  .timeline-item,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Blog */
  .post-featured {
    padding: 32px 20px;
  }
  
  /* Legal Content */
  .content-section {
    padding: 24px 16px;
  }
  
  /* Info Grids */
  .info-grid,
  .contact-grid,
  .categories-list {
    flex-direction: column;
  }
  
  .info-item,
  .contact-method,
  .category {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust for tablets */
  .feature,
  .service-card,
  .team-member,
  .value,
  .post-card,
  .category-card,
  .season,
  .tip,
  .cta-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 12px);
  }
  
  .timeline-item,
  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

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

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

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

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

/* ==========================================
   ACCESSIBILITY
   ========================================== */

:focus-visible {
  outline: 3px solid #C41E3A;
  outline-offset: 3px;
}

/* Ensure sufficient color contrast */
a:focus,
button:focus {
  outline: 3px solid #C41E3A;
  outline-offset: 2px;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF CSS */