/* ===================================
   CLOUDLESS DREAM - PROFESSIONAL CORPORATE STYLE
   Complete CSS Styles for All Pages
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #F8F9FA;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

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

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

/* HEADER & NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #34495E;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

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

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

.nav-menu a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #34495E;
  border-bottom-color: #34495E;
}

/* CTA BUTTONS */
.cta-button,
.cta-primary,
.cta-secondary,
.cta-button-large {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button,
.cta-primary {
  background: #34495E;
  color: #FFFFFF;
  border: 2px solid #34495E;
}

.cta-button:hover,
.cta-primary:hover {
  background: #2C3E50;
  border-color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
}

.cta-secondary {
  background: transparent;
  color: #34495E;
  border: 2px solid #34495E;
}

.cta-secondary:hover {
  background: #34495E;
  color: #FFFFFF;
}

.cta-button-large {
  background: #34495E;
  color: #FFFFFF;
  border: 2px solid #34495E;
  font-size: 16px;
  padding: 16px 48px;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #34495E;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 4px;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #2C3E50;
  z-index: 3000;
  transition: right 0.3s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subheadline {
  font-size: 20px;
  color: #ECF0F1;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

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

.highlight {
  background: rgba(255,255,255,0.1);
  color: #ECF0F1;
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
}

/* FEATURE CARDS */
.features-grid,
.services-grid,
.values-grid,
.team-grid,
.categories-grid,
.projects-grid,
.workshops-grid,
.methods-grid,
.services-contact-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.feature-card,
.service-card,
.value-card,
.team-member,
.category-card,
.project-card,
.workshop-card,
.method-card,
.service-contact-card,
.stat-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #34495E;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.project-card:hover,
.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.feature-card h3,
.service-card h3,
.value-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #34495E;
  margin-top: 16px;
}

.level,
.duration {
  display: inline-block;
  background: #ECF0F1;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category,
.status {
  display: inline-block;
  background: #34495E;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

/* VALUE PROPOSITION */
.value-proposition,
.services-overview,
.values,
.team,
.portfolio-categories,
.featured-projects,
.workshop-types,
.service-specific-contact {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* PROCESS STEPS */
.process {
  background: #F8F9FA;
  padding: 60px 20px;
}

.process-steps,
.experience-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.timeline-step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.step img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* TESTIMONIALS */
.testimonials,
.testimonials-gallery {
  background: #ECF0F1;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  margin-bottom: 20px;
  border-left: 4px solid #34495E;
}

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

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

.context,
.role {
  font-size: 14px;
  color: #7F8C8D;
}

/* ABOUT PREVIEW & STORY */
.about-preview,
.story,
.achievements,
.commitment,
.workshop-overview,
.what-you-learn,
.included-benefits {
  background: #FFFFFF;
  padding: 60px 20px;
}

.key-points,
.achievements-list,
.learning-list,
.benefits-list,
.promises-list {
  margin: 32px 0;
  padding-left: 24px;
}

.key-points li,
.achievements-list li,
.learning-list li,
.benefits-list li,
.promises-list li {
  color: #4A5568;
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #34495E;
  padding-left: 16px;
}

/* CTA BANNER */
.cta-banner,
.booking-cta,
.emergency-contact {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2,
.booking-cta h2,
.emergency-contact h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}
.emergency-contact p{
  color: #FFFFFF;
}
.cta-banner p {
  color: #ECF0F1;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* CONTACT INFO */
.contact-info,
.contact-methods,
.location-info {
  background: #F8F9FA;
  padding: 60px 20px;
}

.contact-grid,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  background: #FFFFFF;
  padding: 32px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.contact-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

/* SERVICE DETAILED */
.service-detailed {
  background: #FFFFFF;
  padding: 60px 20px;
  border-bottom: 1px solid #ECF0F1;
}

.tagline {
  font-size: 20px;
  font-style: italic;
  color: #5A6C7D;
  margin-bottom: 24px;
}

.service-detailed ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detailed li {
  color: #4A5568;
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #34495E;
  padding-left: 16px;
}

/* PROCESS GUIDE */
.process-guide {
  background: #F8F9FA;
  padding: 60px 20px;
}

.process-list {
  max-width: 800px;
  margin: 32px auto;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #34495E;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: #34495E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* CALENDAR & EVENTS */
.calendar-upcoming,
.workshop-experience {
  background: #FFFFFF;
  padding: 60px 20px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.event-card,
.action-card,
.commitment-card,
.season-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #34495E;
}

.date {
  font-size: 16px;
  font-weight: 600;
  color: #34495E;
  margin-bottom: 8px;
}

/* FORM PLACEHOLDER */
.contact-form-section {
  background: #F8F9FA;
  padding: 60px 20px;
}

.form-placeholder {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 32px auto;
  text-align: center;
  border: 2px dashed #BDC3C7;
}

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

/* LOCATION DETAILS */
.location-details {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 32px auto;
}

.location-details h3,
.location-details h4 {
  color: #34495E;
  margin-top: 24px;
}

.location-details ul {
  margin: 16px 0;
  padding-left: 24px;
}

.location-details li {
  margin-bottom: 8px;
  color: #4A5568;
}

/* STATISTICS */
.statistics,
.social-proof {
  background: #ECF0F1;
  padding: 60px 20px;
  text-align: center;
}

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

.stat-card,
.stat {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 36px;
  color: #34495E;
  margin-bottom: 8px;
}

.stat-card p {
  color: #5A6C7D;
  font-size: 14px;
  margin: 0;
}

/* SEASONAL INSPIRATION */
.seasonal-inspiration,
.seasons-grid {
  background: #FFFFFF;
  padding: 60px 20px;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.season-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

/* COMMITMENT GRID */
.commitment-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.commitment-card,
.action-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.legal-content h2 {
  color: #34495E;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #ECF0F1;
}

.legal-content h3 {
  color: #2C3E50;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: #4A5568;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #BDC3C7;
  margin-top: 8px;
}

.intro {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  padding: 20px;
  background: #ECF0F1;
  border-radius: 4px;
}

/* THANK YOU / SUCCESS PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  background: #27AE60;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

.confirmation-details,
.immediate-actions,
.urgent-contact,
.reassurance {
  background: #F8F9FA;
  padding: 60px 20px;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.urgency {
  font-weight: 600;
  color: #E74C3C;
  margin-top: 16px;
}

.hours {
  font-size: 14px;
  color: #7F8C8D;
  margin: 12px 0;
}

.signature {
  text-align: center;
  font-size: 16px;
  color: #2C3E50;
  margin-top: 32px;
  font-style: italic;
}

/* FOOTER */
footer {
  background: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 24px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 36px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-section a {
  color: #BDC3C7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-section p {
  color: #BDC3C7;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-bottom p {
  color: #95A5A6;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #27AE60;
  color: #FFFFFF;
  border: 2px solid #27AE60;
}

.cookie-accept:hover {
  background: #229954;
  border-color: #229954;
}

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

.cookie-reject:hover {
  background: #95A5A6;
}

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

.cookie-settings:hover {
  background: rgba(255,255,255,0.1);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 4px solid #34495E;
}

.cookie-category h3 {
  color: #34495E;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .feature-card,
  .service-card,
  .value-card,
  .category-card,
  .project-card,
  .workshop-card,
  .season-card,
  .commitment-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .timeline-step {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .nav-menu,
  .main-nav .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* CARDS & GRIDS */
  .feature-card,
  .service-card,
  .value-card,
  .team-member,
  .category-card,
  .project-card,
  .workshop-card,
  .method-card,
  .service-contact-card,
  .stat-card,
  .season-card,
  .commitment-card,
  .action-card,
  .event-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .contact-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .timeline-step {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* SECTIONS */
  .section {
    padding: 32px 16px;
  }
  
  .value-proposition,
  .services-overview,
  .process,
  .testimonials,
  .about-preview,
  .cta-banner,
  .contact-info,
  .story,
  .values,
  .team,
  .achievements,
  .commitment,
  .service-detailed,
  .process-guide,
  .calendar-upcoming,
  .contact-form-section,
  .location-info,
  .portfolio-categories,
  .featured-projects,
  .statistics,
  .seasonal-inspiration,
  .workshop-overview,
  .workshop-types,
  .what-you-learn,
  .workshop-experience,
  .included-benefits,
  .booking-cta,
  .contact-methods,
  .service-specific-contact,
  .emergency-contact,
  .legal-content,
  .confirmation-details,
  .immediate-actions,
  .urgent-contact,
  .social-proof,
  .reassurance {
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero {
    padding: 40px 16px;
  }
  
  .contact-item {
    flex: 1 1 100%;
  }
  
  .feature-card,
  .service-card,
  .value-card {
    padding: 24px;
  }
  
  .form-placeholder {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-button,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* ACCESSIBILITY */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #34495E;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* LOADING STATE */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* END OF CSS */