/* ===========================
   SILENT VISTA - LUXURY PREMIUM CSS
   Culinary Excellence in Exclusive Atmosphere
   =========================== */

/* CSS RESET & BASE */
* {
  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.7;
  color: #2C1810;
  background-color: #FDFBF7;
  overflow-x: hidden;
}

/* LUXURY TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C1810;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

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

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

a:hover {
  color: #2C1810;
}

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

li {
  margin-bottom: 12px;
  color: #4A3428;
}

strong {
  font-weight: 700;
  color: #2C1810;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #E8D5C4;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #F5EDE3;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #8B6F47 0%, #A68A5E 100%);
  color: #FFFFFF;
  border: none;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.25);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #A68A5E 0%, #8B6F47 100%);
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2C1810 0%, #3D2317 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(44, 24, 16, 0.4);
  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: #E8D5C4;
  border: 2px solid #8B6F47;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #8B6F47;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8D5C4;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 111, 71, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F5EDE3;
  padding-left: 12px;
  border-bottom-color: #8B6F47;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(61, 35, 23, 0.92) 100%), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%233D2317" 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: radial-gradient(circle at 50% 50%, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-subtitle {
  color: #E8D5C4;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-badge {
  color: #B8956A;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 32px;
  background: rgba(139, 111, 71, 0.15);
  border: 1px solid rgba(139, 111, 71, 0.4);
  border-radius: 50px;
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 100%);
  padding: 80px 24px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #F5EDE3;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E8D5C4;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  text-align: center;
  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.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #8B6F47 0%, #A68A5E 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #E8D5C4;
  border: 2px solid #8B6F47;
}

.btn-secondary:hover {
  background: rgba(139, 111, 71, 0.15);
  border-color: #A68A5E;
  color: #F5EDE3;
  transform: translateY(-3px);
}

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

.introduction, .intro, .story, .pricing-intro, .contact-info, .location, .opening-hours, .values, .features, .benefits {
  text-align: center;
  max-width: 900px;
  margin: 60px auto;
}

.section-subtitle {
  color: #8B6F47;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.highlight {
  color: #8B6F47;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  padding: 24px;
  background: linear-gradient(135deg, rgba(232, 213, 196, 0.2) 0%, rgba(232, 213, 196, 0.05) 100%);
  border-left: 4px solid #8B6F47;
  border-radius: 8px;
  margin: 32px 0;
}

/* GRID LAYOUTS USING FLEXBOX */
.services-grid, .courses-grid, .events-grid, .benefits-grid, .features-grid, .values-grid, .pricing-grid, .contact-grid, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

/* CARDS */
.service-card, .course-card, .event-card, .benefit, .feature, .value, .price-card, .contact-card {
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 111, 71, 0.1);
}

.service-card::before, .course-card::before, .event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B6F47 0%, #B8956A 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover, .course-card:hover, .event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(139, 111, 71, 0.2);
}

.service-card h3, .course-card h3, .event-card h3 {
  color: #2C1810;
  font-size: 24px;
  margin-bottom: 16px;
}

.price {
  color: #8B6F47;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

.details {
  color: #6B5647;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(139, 111, 71, 0.2);
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(232, 213, 196, 0.15) 0%, rgba(232, 213, 196, 0.05) 100%);
  padding: 60px 24px;
  margin: 60px 0;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #8B6F47;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #8B6F47;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner, .cta {
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 100%);
  padding: 80px 24px;
  text-align: center;
  margin: 60px 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-banner h2, .cta h2 {
  color: #F5EDE3;
  margin-bottom: 20px;
}

.cta-banner p, .cta p {
  color: #E8D5C4;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LOCATION INFO */
.location-info {
  background: rgba(232, 213, 196, 0.15);
  padding: 60px 24px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

/* TABLE STYLING */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
}

th {
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 100%);
  color: #F5EDE3;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

td {
  padding: 20px;
  border-bottom: 1px solid rgba(139, 111, 71, 0.1);
  color: #2C1810;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background: rgba(232, 213, 196, 0.05);
}

tr:hover {
  background: rgba(232, 213, 196, 0.15);
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #2C1810;
  margin-bottom: 32px;
  text-align: center;
}

.legal-page h2 {
  color: #2C1810;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8B6F47;
}

.legal-page h3 {
  color: #4A3428;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-page .subtitle {
  color: #8B6F47;
  font-size: 18px;
  text-align: center;
  margin-bottom: 48px;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 60px 24px;
  text-align: center;
}

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

.confirmation-box {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(232, 213, 196, 0.1) 100%);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  border: 2px solid #8B6F47;
}

.confirmation-box p {
  color: #2C1810;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0;
}

.step {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
  margin-bottom: 20px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0;
}

.suggestion-card {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.contact-reminder {
  background: rgba(232, 213, 196, 0.15);
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
}

/* FORM NOTE */
.form-note {
  background: rgba(232, 213, 196, 0.2);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #8B6F47;
  margin: 32px 0;
  text-align: left;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 100%);
  color: #E8D5C4;
  padding: 60px 24px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #F5EDE3;
  font-size: 20px;
  margin-bottom: 20px;
}

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

.footer-legal {
  border-top: 1px solid rgba(139, 111, 71, 0.3);
  padding-top: 32px;
  text-align: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

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

.footer-legal a:hover {
  color: #F5EDE3;
}

.footer-legal p {
  color: #8B6F47;
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 100%);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(44, 24, 16, 0.4);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  color: #E8D5C4;
  font-size: 14px;
  flex: 1 1 300px;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #8B6F47 0%, #A68A5E 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.4);
}

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

.cookie-reject:hover {
  background: rgba(139, 111, 71, 0.15);
  border-color: #A68A5E;
}

.cookie-settings {
  background: transparent;
  color: #D4BFA9;
  border: 1px solid rgba(139, 111, 71, 0.5);
}

.cookie-settings:hover {
  background: rgba(139, 111, 71, 0.1);
  color: #E8D5C4;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.9);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FDFBF7;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease-out;
}

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

.cookie-category {
  padding: 20px;
  background: rgba(232, 213, 196, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C1810;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

.cookie-toggle input[type="checkbox"]:checked {
  background: #8B6F47;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

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

.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;
  justify-content: flex-end;
}

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE DESIGN - TABLET */
@media (max-width: 992px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 44px; }
  
  .services-grid, .courses-grid, .events-grid {
    gap: 24px;
  }
  
  .footer-content {
    gap: 32px;
  }
}

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  /* Cards full width on mobile */
  .service-card, .course-card, .event-card, .benefit, .feature, .value, .price-card, .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Grid adjustments */
  .services-grid, .courses-grid, .events-grid, .benefits-grid, .features-grid, .values-grid, .pricing-grid, .contact-grid, .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-legal nav {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Table responsive */
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 8px;
  }
  
  /* Modal on mobile */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  /* Steps and suggestions */
  .steps, .suggestions {
    flex-direction: column;
  }
  
  .step, .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .logo img {
    height: 40px;
  }
}

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