/* ===================================
   RADIANT OFFICE - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  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;
}

/* ===================================
   VIBRANT COLOR PALETTE
   =================================== */

:root {
  --primary: #FF3366;
  --secondary: #9D4EDD;
  --accent: #FF8C00;
  --electric-blue: #00D9FF;
  --lime: #CCFF00;
  --hot-pink: #FF1493;
  --dark: #1a1a1a;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #FF3366 0%, #9D4EDD 100%);
  --gradient-2: linear-gradient(135deg, #00D9FF 0%, #CCFF00 100%);
  --gradient-3: linear-gradient(135deg, #FF8C00 0%, #FF1493 100%);
}

/* ===================================
   TYPOGRAPHY - BOLD & ENERGETIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: var(--primary);
}

h3 {
  font-size: 24px;
  color: var(--secondary);
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--primary);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.3));
}

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

.nav-menu a {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 80%;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--gradient-1);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--white);
  color: var(--primary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateX(10px) scale(1.05);
}

/* ===================================
   BUTTONS - VIBRANT & BOLD
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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.5s ease, height 0.5s ease;
  z-index: -1;
}

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

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 51, 102, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.btn-secondary:hover {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
}

/* ===================================
   HERO SECTION - EXPLOSIVE ENERGY
   =================================== */

.hero {
  background: var(--gradient-1);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.trust-indicators span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background: var(--gradient-2);
  color: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50 50 100 0 50z" fill="%23fff" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.page-hero h1 {
  font-size: 48px;
  color: var(--dark);
  -webkit-text-fill-color: var(--dark);
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  background: var(--white);
  position: relative;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid var(--primary);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-1);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 51, 102, 0.3);
}

.benefit-card:hover::before {
  opacity: 0.1;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  color: var(--gray);
  margin-bottom: 0;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */

.services-overview {
  background: var(--light-gray);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--gray);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid var(--electric-blue);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
  border-color: var(--lime);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card .btn {
  margin-top: auto;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.services-detailed {
  background: var(--white);
}

.service-detail {
  background: var(--light-gray);
  padding: 48px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  border-left: 8px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.service-detail h2 {
  margin-bottom: 20px;
}

.service-detail p {
  color: var(--gray);
  margin-bottom: 24px;
}

.features-list {
  margin: 24px 0;
  padding-left: 0;
}

.features-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: var(--dark);
  font-weight: 600;
}

.features-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 20px;
  color: var(--accent);
}

.service-detail .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 24px;
  font-family: 'Montserrat', sans-serif;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background: var(--gradient-3);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}

.quote {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.client-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--white);
}

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

/* ===================================
   PRICING CARDS
   =================================== */

.pricing-cards {
  background: var(--white);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  max-width: 380px;
  background: var(--white);
  padding: 48px 32px;
  border-radius: 20px;
  border: 4px solid var(--secondary);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 6px;
  transform: scale(1.05);
  background: var(--gradient-1);
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--white);
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(157, 78, 221, 0.3);
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 30px 70px rgba(255, 51, 102, 0.5);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-3);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.pricing-card h3 {
  margin-bottom: 24px;
  text-align: center;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.8);
}

.features {
  margin: 32px 0;
  flex-grow: 1;
}

.features li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--dark);
}

.pricing-card.featured .features li {
  color: var(--white);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ===================================
   ADDITIONAL SERVICES & PROMOTIONS
   =================================== */

.additional-services {
  background: var(--light-gray);
}

.service-item {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 3px solid var(--electric-blue);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.service-item h3 {
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 28px;
  color: var(--primary);
  margin: 0;
}

.promotions {
  background: var(--gradient-2);
}

.promotions h2 {
  text-align: center;
  margin-bottom: 60px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.promo-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid var(--accent);
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.3);
}

.promo-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.promo-code {
  background: var(--gradient-1);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-top: 16px;
  letter-spacing: 2px;
}

/* ===================================
   ABOUT & TIMELINE
   =================================== */

.about-story {
  background: var(--white);
}

.timeline {
  margin: 60px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  padding: 32px;
  background: var(--light-gray);
  border-radius: 16px;
  border-left: 8px solid var(--primary);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
  border-left-width: 12px;
}

.year {
  display: inline-block;
  background: var(--gradient-1);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-item h3 {
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--gray);
  margin-bottom: 0;
}

/* ===================================
   MISSION & STATS
   =================================== */

.mission-vision {
  background: var(--gradient-3);
  color: var(--white);
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.mission-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 48px 40px;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.mission-item h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.8;
}

.team {
  background: var(--white);
  text-align: center;
}

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

.stat-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px;
  background: var(--light-gray);
  border-radius: 20px;
  border: 4px solid var(--electric-blue);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--lime);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.number {
  display: block;
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: block;
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   CERTIFICATIONS
   =================================== */

.certifications {
  background: var(--light-gray);
}

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

.cert-list li {
  padding: 24px 24px 24px 60px;
  background: var(--white);
  border-radius: 16px;
  border-left: 6px solid var(--accent);
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cert-list li::before {
  content: '🏆';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.cert-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

/* ===================================
   LOCATION & TRANSPORT
   =================================== */

.main-location {
  background: var(--white);
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
}

.address-block,
.contact-block,
.hours-block {
  flex: 1 1 300px;
  background: var(--light-gray);
  padding: 32px;
  border-radius: 16px;
  border: 3px solid var(--secondary);
}

.address-block h3,
.contact-block h3,
.hours-block h3 {
  margin-bottom: 16px;
}

.note {
  margin-top: 16px;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}

.transport {
  background: var(--gradient-2);
}

.transport h2 {
  text-align: center;
  margin-bottom: 60px;
}

.transport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.transport-option {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  border: 4px solid var(--dark);
  transition: all 0.3s ease;
}

.transport-option:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.transport-option h3 {
  margin-bottom: 16px;
}

.neighborhood {
  background: var(--white);
}

.neighborhood-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

.neighborhood-list li {
  padding: 20px 20px 20px 50px;
  background: var(--light-gray);
  border-radius: 12px;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.neighborhood-list li::before {
  content: '📍';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.neighborhood-list li:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
}

.building-features {
  background: var(--light-gray);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 4px solid var(--electric-blue);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.2);
}

.feature-item h3 {
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--gray);
  margin-bottom: 0;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-methods {
  background: var(--white);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: var(--light-gray);
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid var(--secondary);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 12px;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-section {
  background: var(--gradient-1);
  color: var(--white);
}

.contact-form-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: rgba(255, 255, 255, 0.95);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 48px 40px;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 16px;
}

/* ===================================
   OFFICE HOURS & FAQ
   =================================== */

.office-hours {
  background: var(--white);
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.hours-item {
  flex: 1 1 250px;
  background: var(--light-gray);
  padding: 32px;
  border-radius: 16px;
  border: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.hours-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.2);
}

.hours-item h3 {
  margin-bottom: 12px;
}

.hours-item p {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.faq-contact {
  background: var(--light-gray);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.15);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.faq-item p {
  color: var(--gray);
  margin-bottom: 0;
}

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

.thank-you-hero {
  background: var(--gradient-1);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 5px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  animation: successPop 0.6s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-bottom: 24px;
}

.thank-you-hero p {
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps {
  background: var(--white);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: var(--light-gray);
  border-radius: 16px;
  border: 4px solid var(--electric-blue);
  position: relative;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  border-color: var(--lime);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.2);
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.step-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.step-item p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

.meanwhile {
  background: var(--light-gray);
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid var(--secondary);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.suggestion-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.suggestion-card h3 {
  margin-bottom: 16px;
}

.suggestion-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.suggestion-card .btn {
  margin-top: auto;
}

.testimonial-single {
  background: var(--gradient-3);
  color: var(--white);
}

.testimonial-single .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
}

.contact-reminder {
  background: var(--white);
  text-align: center;
}

.contact-info {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 24px;
}

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

.legal-hero {
  background: var(--gradient-2);
  color: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.legal-hero h1 {
  color: var(--dark);
  -webkit-text-fill-color: var(--dark);
  margin-bottom: 16px;
}

.legal-hero p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 0;
}

.legal-content {
  background: var(--white);
}

.legal-section {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  border-left: 6px solid var(--primary);
}

.legal-section h2 {
  margin-bottom: 20px;
}

.legal-section p {
  color: var(--gray);
  margin-bottom: 16px;
}

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

.legal-section li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--dark);
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

.cookies-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.cookie-type {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.cookie-type:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
}

.cookie-type h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-type p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

.related-links {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 3px solid var(--secondary);
  margin-top: 40px;
}

.related-links h3 {
  margin-bottom: 16px;
}

.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.related-links li {
  padding: 0;
}

.related-links a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--light-gray);
  border-radius: 25px;
  color: var(--primary);
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-links a:hover {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
  background: var(--gradient-1);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s infinite;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-section .cta-buttons {
  position: relative;
  z-index: 2;
  justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 24px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-1);
}

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

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

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-1);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--accent);
}

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

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

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

.cookie-banner-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid var(--white);
  border-radius: 25px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.cookie-btn-accept {
  background: var(--white);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--primary);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--light-gray);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 3px solid var(--secondary);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: var(--gray);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(30px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 44px; }
  .page-hero h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Sections */
  section { padding: 60px 0; }
  
  .hero { padding: 80px 0; }
  .page-hero { padding: 60px 0; }
  .cta-section { padding: 80px 0; }
  
  /* Grid Layouts */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .pricing-grid,
  .promo-grid,
  .mission-grid,
  .transport-grid,
  .features-grid,
  .contact-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card,
  .promo-card,
  .mission-item,
  .transport-option,
  .feature-item,
  .contact-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card:hover,
  .pricing-card.featured:hover {
    transform: translateY(-10px) scale(1);
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    justify-content: center;
  }
  
  .trust-indicators span {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  /* Steps & Stats */
  .steps-grid {
    flex-direction: column;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Location Info */
  .location-info {
    flex-direction: column;
  }
  
  .address-block,
  .contact-block,
  .hours-block {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
  
  p { font-size: 15px; }
  
  /* Buttons */
  .btn {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card,
  .service-detail,
  .mission-item,
  .suggestion-card {
    padding: 32px 24px;
  }
  
  /* Price */
  .price {
    font-size: 36px;
  }
  
  .service-card .price {
    font-size: 28px;
  }
  
  /* Success Icon */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
  
  /* Step Numbers */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 90%;
  }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

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

/* Accessibility */
.sr-only {
  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,
select:focus,
textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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