/* =================================================================
   TRASA CHALY - SCANDINAVIAN CLEAN DESIGN SYSTEM
   CSS Reset & Base Styles with Flexbox-Only Layouts
   ================================================================= */

/* CSS Reset & Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3436;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography - Scandinavian Clean Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a3a5c;
  margin-bottom: 16px;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 32px; letter-spacing: -0.3px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #5a6c7d;
  line-height: 1.7;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FF8C42;
}

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

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

li {
  margin-bottom: 8px;
  color: #5a6c7d;
}

/* Container & Layout - Flexbox Only */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

/* =================================================================
   HEADER & NAVIGATION - Scandinavian Minimalism
   ================================================================= */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8f1f5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.05);
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

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

.tagline {
  font-size: 12px;
  color: #5a6c7d;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #2d3436;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #2C5F8D;
  background-color: #E8F1F5;
}

.header-cta {
  display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #1a3a5c;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid #e8f1f5;
  border-radius: 4px;
  font-size: 24px;
  color: #2d3436;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.mobile-menu-close:hover {
  background-color: #e8f1f5;
  border-color: #2C5F8D;
  color: #2C5F8D;
}

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

.mobile-nav a {
  padding: 14px 16px;
  color: #2d3436;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #E8F1F5;
  color: #2C5F8D;
}

/* =================================================================
   BUTTONS - Scandinavian Clean Style
   ================================================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1a3a5c;
  border-color: #1a3a5c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

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

/* =================================================================
   HERO SECTION - Clean Scandinavian Layout
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 40px;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.trust-indicator {
  font-size: 14px;
  color: #5a6c7d;
  font-weight: 500;
  margin-top: 16px;
}

/* =================================================================
   CARD LAYOUTS - Flexbox Grid System
   ================================================================= */

.benefits-grid,
.services-grid,
.categories-grid,
.products-grid,
.features-grid,
.testimonials-grid,
.methods-grid,
.indicators-grid,
.reasons-grid,
.packages-grid,
.tips-grid,
.rooms-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card,
.service-card,
.category-card,
.product-card,
.feature-card,
.testimonial-card,
.method-card,
.indicator,
.reason-card,
.package-card,
.tip-card,
.room-card,
.action-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.product-card:hover,
.feature-card:hover,
.method-card:hover,
.reason-card:hover,
.package-card:hover,
.tip-card:hover,
.room-card:hover,
.action-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  transform: translateY(-4px);
}

.benefit-icon,
.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E8F1F5;
  border-radius: 8px;
  margin-bottom: 12px;
}

.benefit-icon img,
.method-icon img {
  width: 32px;
  height: 32px;
}

/* Testimonial Cards - Dark text on light background */
.testimonial-card {
  background-color: #f8f9fa;
  border: 1px solid #e8f1f5;
  padding: 32px;
  gap: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #1a3a5c;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: #5a6c7d;
  font-size: 14px;
}

/* Service/Product Pricing */
.price,
.product-price,
.service-price,
.package-price {
  font-size: 24px;
  font-weight: 700;
  color: #FF8C42;
  font-family: 'Montserrat', sans-serif;
  margin-top: 8px;
}

.product-features,
.service-duration {
  font-size: 14px;
  color: #5a6c7d;
  margin-top: 8px;
}

/* Package Badge */
.package-card.popular {
  border-color: #FF8C42;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #FF8C42;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =================================================================
   TEXT + IMAGE SECTIONS - Flexbox Alignment
   ================================================================= */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section .text-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section .image-content {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================================================================
   HOW IT WORKS / STEPS - Flexbox Layout
   ================================================================= */

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

.step,
.process-step {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #2C5F8D;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-duration,
.step-time {
  font-size: 13px;
  color: #FF8C42;
  font-weight: 600;
  margin-top: 8px;
}

/* =================================================================
   CTA BANNER - Scandinavian Clean
   ================================================================= */

.cta-banner {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

.cta-banner h2 {
  font-size: 32px;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons,
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

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

/* =================================================================
   TRUST INDICATORS
   ================================================================= */

.trust-indicators {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 60px 0;
}

.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.indicator {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: auto;
}

.indicator:hover {
  transform: none;
  box-shadow: none;
}

.indicator-number {
  font-size: 40px;
  font-weight: 700;
  color: #2C5F8D;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.indicator-label {
  font-size: 14px;
  color: #5a6c7d;
  font-weight: 500;
}

/* =================================================================
   PAGE HERO - Breadcrumbs
   ================================================================= */

.page-hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 40px 20px;
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #2C5F8D;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.section-subtitle {
  font-size: 18px;
  color: #5a6c7d;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

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

.legal-page {
  padding: 40px 20px;
}

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

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
  color: #1a3a5c;
}

.legal-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 24px;
  color: #2C5F8D;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 32px;
}

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

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

.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #E8F1F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-icon img {
  width: 40px;
  height: 40px;
}

.thank-you-content h1 {
  font-size: 40px;
  color: #1a3a5c;
}

.thank-you-content .subtitle {
  font-size: 20px;
  color: #2C5F8D;
  font-weight: 600;
}

.thank-you-content .message {
  font-size: 16px;
  color: #5a6c7d;
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  width: 100%;
  max-width: 400px;
}

/* Next Steps Section */
.next-steps,
.while-you-wait {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.contact-reminder,
.contact-info {
  padding: 60px 20px;
}

.contact-info-grid,
.info-grid,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}

.info-item,
.info-block,
.method {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
}

.info-item h3,
.info-block h3,
.method h3 {
  color: #1a3a5c;
  margin-bottom: 12px;
}

.method-value,
.hours {
  font-size: 16px;
  color: #2C5F8D;
  font-weight: 600;
  margin-bottom: 8px;
}

.method-hours,
.method-note {
  font-size: 14px;
  color: #5a6c7d;
}

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

.faq,
.faq-contact {
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
  margin-bottom: 16px;
}

.faq-item h3 {
  color: #1a3a5c;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5a6c7d;
  font-size: 15px;
  line-height: 1.7;
}

/* =================================================================
   MISSION/VISION & VALUES SECTIONS
   ================================================================= */

.mission-vision {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.mission-card,
.vision-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
}

.mission-card h2,
.vision-card h2 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

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

.value-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #FF8C42;
}

.value-card h4 {
  color: #1a3a5c;
  margin-bottom: 8px;
}

/* =================================================================
   STORY & TEAM SECTIONS
   ================================================================= */

.story,
.team {
  padding: 60px 20px;
}

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

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

.stat {
  flex: 1 1 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F8D;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #5a6c7d;
}

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

.team-member {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
  text-align: center;
}

.team-member h3 {
  color: #1a3a5c;
  margin-bottom: 8px;
}

.role {
  font-size: 14px;
  color: #FF8C42;
  font-weight: 600;
  margin-bottom: 12px;
}

/* =================================================================
   CASE STUDIES & SERVICE ITEMS
   ================================================================= */

.case-studies,
.tips-guides {
  padding: 60px 20px;
}

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

.case-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-card h3 {
  color: #1a3a5c;
  margin-bottom: 12px;
}

.case-card p strong {
  color: #2C5F8D;
  font-weight: 600;
}

.reading-time {
  font-size: 13px;
  color: #FF8C42;
  font-weight: 600;
  margin-top: 8px;
}

/* Service Items List */
.services-list {
  padding: 60px 20px;
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e8f1f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #1a3a5c;
  margin-bottom: 8px;
}

.benefit {
  font-size: 14px;
  color: #FF8C42;
  font-weight: 600;
  margin-top: 8px;
}

/* Room by Room Section */
.room-by-room {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

/* =================================================================
   FOOTER - Scandinavian Clean
   ================================================================= */

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p,
.footer-column a {
  color: #c9d6df;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FF8C42;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #c9d6df;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8f1f5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 2000;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-consent.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-text {
  font-size: 14px;
  color: #5a6c7d;
  text-align: center;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.cookie-accept:hover {
  background-color: #1a3a5c;
}

.cookie-reject {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.cookie-reject:hover {
  background-color: #e8f1f5;
}

.cookie-settings {
  background-color: transparent;
  color: #5a6c7d;
  border-color: #e8f1f5;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #5a6c7d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C5F8D;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8f1f5;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  color: #1a3a5c;
  font-size: 18px;
  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;
  appearance: none;
  background-color: #e8f1f5;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #2C5F8D;
}

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

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

.cookie-toggle label {
  font-size: 14px;
  color: #2d3436;
  font-weight: 500;
}

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

/* =================================================================
   RESPONSIVE DESIGN - Mobile First
   ================================================================= */

/* Tablets (768px and up) */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-cta {
    flex-direction: row;
    max-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .cta-section {
    flex-direction: row;
    max-width: 100%;
  }
  
  .benefit-card,
  .service-card,
  .category-card,
  .feature-card,
  .reason-card,
  .tip-card,
  .room-card,
  .action-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .product-card,
  .package-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .process-step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .case-card,
  .mission-card,
  .vision-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .team-member {
    flex: 1 1 calc(50% - 16px);
  }
  
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-text {
    text-align: left;
    flex: 1;
  }
  
  .cookie-buttons {
    flex-shrink: 0;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .header-cta {
    display: block;
  }
  
  .benefit-card,
  .category-card,
  .feature-card,
  .reason-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .service-card,
  .product-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .step,
  .process-step {
    flex: 1 1 calc(25% - 18px);
  }
  
  .package-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .tip-card,
  .room-card,
  .action-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .case-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 100px 20px;
  }
}

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

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

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

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #FF8C42;
  outline-offset: 2px;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent {
    display: none;
  }
}