/* =================================================================
   SUNDOWN HILLS - GRADIENT MODERN DESIGN SYSTEM
   Modern literature community with gradient aesthetics
   ================================================================= */

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

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

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 28px; margin-bottom: 16px; }
h4 { font-size: 24px; margin-bottom: 14px; }
h5 { font-size: 20px; margin-bottom: 12px; }
h6 { font-size: 18px; margin-bottom: 12px; }

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

a {
  color: #8B4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2C5F2D;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(244,228,193,0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(139, 69, 19, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B4513 0%, #2C5F2D 100%);
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f4e4c1 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1e4520 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #4a4a4a;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 4px solid #8B4513;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(139, 69, 19, 0.1);
  transform: translateX(8px);
  color: #8B4513;
  border-left-width: 8px;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(44, 95, 45, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4e4c1" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(244, 228, 193, 0.2) 100%);
  pointer-events: none;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: white;
  animation: fadeInUp 0.8s ease;
}

.tagline {
  font-size: 24px;
  color: #F4E4C1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
  font-style: italic;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease;
}

.hero-small {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(44, 95, 45, 0.8) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%23f4e4c1" width="1200" height="300"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 24px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-small h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-small p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 16px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #2C5F2D 0%, #1e4520 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(44, 95, 45, 0.4);
}

/* SECTIONS */
section {
  margin-bottom: 80px;
  padding: 60px 24px;
  position: relative;
}

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

.introduction {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 228, 193, 0.3) 100%);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.values-list li {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(44, 95, 45, 0.1) 100%);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: #4a4a4a;
  border: 2px solid rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

.values-list li:hover {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(44, 95, 45, 0.2) 100%);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
}

/* GRIDS & CARDS */
.services-grid,
.benefits-grid,
.testimonials-grid,
.team-grid,
.stats-grid,
.features-grid,
.schedule-grid,
.contact-grid,
.team-contact-grid,
.links-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.testimonial-card,
.team-member,
.stat-item,
.feature,
.schedule-item,
.contact-item,
.team-contact-item,
.link-card,
.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 228, 193, 0.2) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.08);
  transition: all 0.4s ease;
  flex: 1 1 280px;
  margin-bottom: 24px;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover,
.benefit-item:hover,
.team-member:hover,
.link-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.15);
  border-color: rgba(139, 69, 19, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(244, 228, 193, 0.4) 100%);
}

.service-card h3,
.benefit-item h3,
.team-member h3,
.link-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F2D;
  margin-top: 16px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1e4520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.benefit-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(44, 95, 45, 0.05) 100%);
  padding: 80px 24px;
  border-radius: 24px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
  border-left: 6px solid #8B4513;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2d2d2d;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #8B4513;
  opacity: 0.3;
  font-family: 'Georgia', serif;
}

.author {
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 4px;
}

.role,
.membership {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

/* STATS */
.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 228, 193, 0.3) 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.08);
  flex: 1 1 200px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(139, 69, 19, 0.15);
}

.number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B4513 0%, #2C5F2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.label {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(44, 95, 45, 0.85) 100%);
  padding: 80px 24px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 80px;
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
}

.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.trust-badge,
.special-offer {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* SERVICE DETAILS */
.service-detail {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 228, 193, 0.2) 100%);
  padding: 40px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.08);
  border-left: 6px solid #2C5F2D;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(139, 69, 19, 0.15);
}

.instructor,
.schedule,
.group-size,
.guaranteed,
.confidentiality {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 12px;
  font-style: italic;
}

/* LISTS */
.benefits-list,
.highlights {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.benefits-list li,
.highlights li {
  padding: 12px 0 12px 32px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}

.benefits-list li::before,
.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
  font-size: 20px;
}

.steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 16px 0 16px 48px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 228, 193, 0.2) 100%);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
  transform: translateY(-4px);
}

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

.faq-item p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-section {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.05);
  border-left: 4px solid #8B4513;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #8B4513;
}

.legal-section p,
.legal-section ul {
  color: #4a4a4a;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
  border-radius: 24px;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1e4520 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(44, 95, 45, 0.3);
  animation: scaleIn 0.6s ease;
}

.subtitle {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.confirmation-message,
.next-steps-section {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 40px 24px;
}

.next-steps ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(44, 95, 45, 0.9) 100%);
  color: white;
  padding: 60px 24px 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-menu {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand .tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

footer h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 20px;
  margin-bottom: 16px;
}

footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #F4E4C1;
  transform: translateX(6px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 193, 0.95) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(139, 69, 19, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
}

.cookie-banner-text p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.cookie-banner-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 24px;
  backdrop-filter: blur(5px);
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f4e4c1 100%);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 50px rgba(139, 69, 19, 0.3);
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: linear-gradient(135deg, #6d3410 0%, #5a2a0d 100%);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #8B4513;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid rgba(139, 69, 19, 0.1);
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C5F2D;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #2C5F2D 0%, #1e4520 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-small h1 { font-size: 28px; }
  .tagline { font-size: 18px; }
  .hero-description { font-size: 16px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Layout */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 80px 16px;
  }
  
  .hero-small {
    padding: 60px 16px 40px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Grids */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .team-grid,
  .stats-grid,
  .features-grid,
  .schedule-grid,
  .contact-grid,
  .team-contact-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .team-member,
  .stat-item,
  .feature,
  .schedule-item,
  .contact-item,
  .team-contact-item,
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 16px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .service-card,
  .benefit-item,
  .team-member,
  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .main-nav {
    gap: 20px;
  }
}

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