/* ============================================
   LLAYD Website Styles - Redesigned
   Warm, Welcoming Flow inspired by Ryan Leak
   ============================================ */

/* ============================================
   CSS Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2D3748;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   CSS Variables - Warm Color Palette
   ============================================ */
:root {
  /* Primary - Warm & Inviting */
  --color-orange: #F77836;
  --color-orange-light: #FFE8DD;
  --color-orange-hover: #E56825;
  --color-navy: #1A2744;
  --color-navy-light: #2D3F5F;
  --color-gold: #F7E739;
  --color-white: #FFFFFF;
  --color-cream: #FDF8F3;

  /* Warm Grays */
  --color-warm-gray: #F7F5F3;
  --color-text: #2D3748;
  --color-text-light: #5A6778;
  --color-text-muted: #8896A6;

  /* Accents */
  --color-success: #38A169;
  --color-coral: #FF6B6B;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows - Warm */
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
  --shadow-glow: 0 0 60px rgba(247, 120, 54, 0.2);

  /* Container */
  --container-max: 1280px;
}

/* ============================================
   Typography - Warm & Personal
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 600; }
h4 { font-size: 24px; font-weight: 600; }
h5 { font-size: 20px; font-weight: 600; }

p {
  margin-bottom: var(--space-lg);
  max-width: 65ch;
}

.text-orange { color: var(--color-orange); }
.text-navy { color: var(--color-navy); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.lead {
  font-size: 1.35rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section--cream { background: var(--color-cream); }
.section--warm-gray { background: var(--color-warm-gray); }
.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--color-white);
}

.section--gradient {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
}

/* ============================================
   Header - Clean & Minimal
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--color-orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav__link:hover {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.nav__link--active {
  background: var(--color-orange);
  color: white;
}

/* Dropdown Navigation */
.nav__item {
  position: relative;
}

.nav__item--dropdown > .nav__link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.nav__item--dropdown:hover > .nav__link::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(26, 39, 68, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav__dropdown-link:hover {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.nav__dropdown-link span {
  font-size: 18px;
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--color-warm-gray);
  margin: 8px 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Buttons - Warm & Inviting
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(247, 120, 54, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(247, 120, 54, 0.4);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--color-navy);
}

.btn--outline {
  background: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.btn--outline:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--color-navy);
}

.btn--lg {
  font-size: 18px;
  padding: 20px 40px;
}

.btn--sm {
  font-size: 14px;
  padding: 12px 24px;
}

/* ============================================
   Hero Section - Warm Welcome
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-orange-light) 100%);
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--color-orange);
  border-radius: 50%;
  right: -200px;
  top: 10%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  border-radius: 50%;
  left: -150px;
  bottom: 10%;
  opacity: 0.1;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 650px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-orange-light);
  color: var(--color-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__headline {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__headline span {
  color: var(--color-orange);
  position: relative;
}

.hero__subheadline {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero__trust-item strong {
  color: var(--color-navy);
  font-size: 20px;
}

.hero__image {
  position: relative;
}

.hero__image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero__image-float {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: floatSlow 6s ease-in-out infinite;
}

.hero__image-float--1 {
  top: 10%;
  left: -40px;
}

.hero__image-float--2 {
  bottom: 15%;
  right: -40px;
  animation-delay: -3s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   Training Ways Section
   ============================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.way-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.way-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-orange);
}

.way-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-cream) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 36px;
}

.way-card__title {
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.way-card__text {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-orange);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card__content {
  padding: var(--space-xl);
}

.service-card__title {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.service-card__text {
  color: var(--color-text-light);
  font-size: 15px;
  margin-bottom: var(--space-md);
}

/* ============================================
   Stats Section - Animated
   ============================================ */
.stats-section {
  background: var(--color-navy);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

.stat-item__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.stat-item__label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   Community Section
   ============================================ */
.community-section {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.community-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.community-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-coral) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.community-image:nth-child(2) {
  margin-top: var(--space-xl);
}

.community-image:nth-child(3) {
  margin-top: calc(var(--space-xl) * -1);
}

.highlight-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-orange);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
}

.highlight-box p {
  margin: 0;
  font-style: italic;
}

/* ============================================
   Products Section - Premium Features
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  min-height: 280px;
}

.product-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--color-gold) 0%, #FFD700 100%);
  color: var(--color-navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.product-card__title {
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.product-card__text {
  color: var(--color-text-light);
  font-size: 15px;
}

.product-card__features {
  list-style: none;
  margin: var(--space-md) 0;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.product-card__features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
}

/* ============================================
   Testimonials - Warm Stories
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--color-orange);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card__badge {
  display: inline-block;
  background: var(--color-orange-light);
  color: var(--color-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.testimonial-card__quote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-card__info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-card__info p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================
   Newsletter - Warm CTA
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-orange) 0%, #E56825 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  right: -100px;
  top: -100px;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.newsletter-content p {
  color: rgba(255,255,255,0.9);
  margin: 0 auto var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.newsletter-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--color-navy);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.05;
}

.cta-section::before {
  top: -150px;
  left: -150px;
}

.cta-section::after {
  bottom: -150px;
  right: -150px;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin: 0 auto var(--space-xl);
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer - Warm & Complete
   ============================================ */
.footer {
  background: #0D1321;
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand h3 {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand h3 span {
  color: var(--color-orange);
}

.footer__tagline {
  color: var(--color-orange);
  font-style: italic;
  font-size: 18px;
  margin-bottom: var(--space-md);
}

.footer__brand > p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
}

.footer__column h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__legal a:hover {
  color: var(--color-white);
}

/* ============================================
   Animations
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   Mobile Menu Styles - iPhone Optimized
   ============================================ */
.nav__list.active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 100px 24px 40px;
  padding-top: calc(100px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  padding-left: calc(24px + env(safe-area-inset-left, 0px));
  padding-right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 9999;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: mobileMenuSlideIn 0.3s ease;
}

@keyframes mobileMenuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__list.active .nav__item {
  width: 100%;
}

.nav__list.active .nav__link {
  font-size: 18px;
  padding: 18px 24px;
  display: block;
  text-align: center;
  border-radius: 12px;
  background: var(--color-warm-gray);
  color: var(--color-navy);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.nav__list.active .nav__link:active {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.nav__list.active .nav__item--dropdown .nav__dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  background: transparent;
  margin-top: 8px;
  border-radius: 12px;
  padding: 0;
  min-width: auto;
}

.nav__list.active .nav__dropdown::before {
  display: none;
}

.nav__list.active .nav__dropdown-link {
  padding: 14px 20px;
  font-size: 15px;
  background: var(--color-cream);
  border-radius: 8px;
  margin-bottom: 6px;
  justify-content: center;
}

.nav__list.active .nav__dropdown-link:active {
  background: var(--color-orange-light);
}

.nav__list.active .nav__dropdown-divider {
  display: none;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Mobile CTA buttons visibility */
.nav__item--mobile-cta {
  display: none;
}

/* Header buttons on mobile */
@media (max-width: 991px) {
  .header {
    z-index: 10000;
  }

  .nav__desktop-btn {
    display: none !important;
  }

  .nav__list.active .nav__item--mobile-cta {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Add CTA buttons to mobile menu */
.nav__list.active::before {
  content: '';
  display: block;
  height: 0;
}

.nav__list.active::after {
  content: '';
  display: block;
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================
   Touch-Friendly Enhancements
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets */
  .btn {
    min-height: 48px;
    min-width: 48px;
  }

  .btn--sm {
    min-height: 44px;
    padding: 12px 24px;
  }

  .nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer__links a {
    display: block;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Disable hover effects on touch */
  .way-card:hover,
  .service-card:hover,
  .testimonial-card:hover,
  .product-card:hover,
  .event-card:hover,
  .included-card:hover {
    transform: none;
  }

  /* Add active states instead */
  .way-card:active,
  .service-card:active,
  .testimonial-card:active,
  .product-card:active {
    transform: scale(0.98);
  }

  .btn:active {
    transform: scale(0.95);
  }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large tablets and small laptops */
@media (max-width: 1199px) {
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr 1.5fr; }
}

/* Tablets */
@media (max-width: 991px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero__image { order: -1; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .community-images { order: -1; max-width: 500px; margin: 0 auto var(--space-2xl); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: span 3; margin-bottom: var(--space-lg); }

  .nav__list { display: none; }
  .mobile-menu-toggle { display: flex; z-index: 1001; }

  /* Tablet-specific header */
  .header {
    height: 80px;
  }

  .header.scrolled {
    height: 65px;
  }
}

/* Alternating tools layout tablet */
@media (max-width: 991px) {
  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
  }

  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="order: 2"],
  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="order: 1"] {
    order: unset !important;
  }
}

/* Mobile phones */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding: var(--space-3xl) 0; }

  /* Tools section mobile */
  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    gap: 32px !important;
    margin-bottom: 48px !important;
  }

  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="padding: 60px"] {
    padding: 40px !important;
  }

  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] h3 {
    font-size: 28px !important;
  }

  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] p {
    font-size: 16px !important;
  }

  #tools > .container > div[style*="grid-template-columns: 1fr 1fr"] div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA banner mobile */
  #tools > .container > div[style*="padding: 48px 64px"] {
    padding: 32px 24px !important;
    text-align: center;
  }

  #tools > .container > div[style*="padding: 48px 64px"] h3 {
    font-size: 22px !important;
  }

  #tools > .container > div[style*="padding: 48px 64px"] > div[style*="display: flex; gap: 16px"] {
    justify-content: center;
  }

  #tools > .container > div[style*="padding: 48px 64px"] .btn {
    width: 100%;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero { min-height: auto; padding: 100px 0 var(--space-3xl); }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .hero__trust { flex-direction: column; align-items: flex-start; }
  .hero__headline { font-size: clamp(32px, 8vw, 44px); }
  .hero__subheadline { font-size: 1.1rem; }

  .ways-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .stat-item__number { font-size: 36px; }

  .product-card { grid-template-columns: 1fr; }
  .product-card__image { min-height: 200px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }

  /* Service card images responsive */
  .service-card__image {
    height: 180px;
  }

  .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Community images responsive */
  .community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Header mobile adjustments */
  .header {
    height: 70px;
  }

  .header__logo img {
    height: 35px !important;
  }

  /* Page hero mobile */
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* Trip cards mobile */
  .trip-card__header {
    padding: 24px;
  }

  .trip-card__title {
    font-size: 24px;
  }

  .trip-card__body {
    padding: 24px;
  }

  .trip-card__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Event cards mobile */
  .events-grid {
    grid-template-columns: 1fr;
  }

  /* Included cards mobile */
  .included-grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .hero__badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  h2 {
    font-size: clamp(24px, 6vw, 36px);
  }

  .lead {
    font-size: 1.1rem;
  }

  .stat-item__number {
    font-size: 28px;
  }

  .stats-grid {
    gap: var(--space-md);
  }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 90px 0 var(--space-2xl);
  }

  .hero__image {
    display: none;
  }

  .page-hero {
    padding: 90px 0 40px;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header {
    border-bottom: 0.5px solid rgba(0,0,0,0.05);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu-toggle,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 20pt 0;
    page-break-inside: avoid;
  }
}
