/* ========================================
   PATENRADIO - 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: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
  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;
}

/* ========================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C5F8D;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #FF6B9D 0%, #C06C84 50%, #2C5F8D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

h2 {
  font-size: 32px;
  color: #FF6B9D;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #FFC107);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #C06C84;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2a2a2a;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

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

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

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

/* ========================================
   HEADER - ELECTRIC & BOLD
   ======================================== */

header {
  background: linear-gradient(135deg, #FF6B9D 0%, #C06C84 50%, #2C5F8D 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
  animation: headerPulse 2s ease-in-out infinite;
}

@keyframes headerPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(255, 107, 157, 0.5); }
}

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

.logo img {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU - DYNAMIC & BOLD
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B9D, #FFC107);
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B9D 0%, #C06C84 50%, #2C5F8D 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateX(10px);
}

/* ========================================
   BUTTONS - VIBRANT & ENERGETIC
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  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.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FF6B9D, #FFC107);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
  background: white;
  color: #FF6B9D;
  border: 3px solid #FF6B9D;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.btn-secondary:hover {
  background: #FF6B9D;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* ========================================
   HERO SECTION - HIGH ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #FFC107 50%, #4ECDC4 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-text-fill-color: white;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.trust-indicators span {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ========================================
   PAGE HERO - DYNAMIC STYLE
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B9D 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #FF6B9D 0%, #FFC107 50%, #4ECDC4 100%);
  border-radius: 50% 50% 0 0;
}

.page-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  -webkit-text-fill-color: white;
}

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

.last-updated {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 16px;
}

/* ========================================
   BENEFITS SECTION - ENERGETIC CARDS
   ======================================== */

.benefits {
  padding: 60px 20px;
  background: white;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
  border-radius: 20px;
  border: 3px solid #FF6B9D;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.benefit-card:hover::before {
  transform: scale(1);
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
  border-color: #FFC107;
}

.benefit-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #2a2a2a;
  position: relative;
  z-index: 1;
}

/* ========================================
   SERVICES SECTION - VIBRANT LAYOUT
   ======================================== */

.services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
}

.services h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #FF6B9D, #FFC107, #4ECDC4);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3);
}

.service-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #FF6B9D;
  margin-bottom: 16px;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   SERVICES DETAILED - COMPREHENSIVE
   ======================================== */

.services-detailed {
  padding: 60px 20px;
  background: white;
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-detail {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
  border-radius: 16px;
  border-left: 5px solid #FF6B9D;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
}

.service-detail h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B9D;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 16px;
  font-size: 16px;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
}

.service-detail ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #2a2a2a;
}

.service-detail ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #FFC107;
  font-size: 18px;
}

/* ========================================
   TESTIMONIALS - READABLE & VIBRANT
   ======================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  text-align: center;
}

.testimonials h2 {
  color: white;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 3px solid #FFC107;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #FF6B9D;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .rating {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CTA SECTION - HIGH ENERGY
   ======================================== */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF6B9D 0%, #FFC107 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: backgroundScroll 20s linear infinite;
}

@keyframes backgroundScroll {
  from { transform: translateX(0) translateY(0); }
  to { transform: translateX(20px) translateY(20px); }
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.opening-hours {
  color: white;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* ========================================
   VALUES & STORY SECTIONS
   ======================================== */

.story, .values {
  padding: 60px 20px;
  background: white;
}

.story h2, .values h2 {
  text-align: center;
  margin-bottom: 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE5EC 0%, #E8F1F5 100%);
  border-radius: 20px;
  border: 3px solid #4ECDC4;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(78, 205, 196, 0.3);
  border-color: #FF6B9D;
}

.value-card h3 {
  color: #4ECDC4;
  margin-bottom: 16px;
}

/* ========================================
   ACHIEVEMENTS - DYNAMIC STATS
   ======================================== */

.achievements {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFC107 0%, #FF6B9D 100%);
  text-align: center;
}

.achievements h2 {
  color: white;
  margin-bottom: 48px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.achievement {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 800;
  color: #FF6B9D;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #FFC107;
}

.achievement:hover {
  transform: translateY(-10px) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ========================================
   PRICING SECTION - VIBRANT TABLES
   ======================================== */

.pricing {
  padding: 60px 20px;
  background: white;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-category {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
  border-radius: 16px;
  border-left: 5px solid #4ECDC4;
}

.pricing-category h3 {
  color: #2C5F8D;
  margin-bottom: 24px;
  font-size: 24px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.price-item:hover {
  border-color: #FF6B9D;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.price-item span:first-child {
  color: #2a2a2a;
  font-weight: 600;
}

.price-item span:last-child {
  color: #FF6B9D;
  font-weight: 800;
  font-size: 18px;
}

.pricing-notes {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
}

.pricing-notes h2 {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-notes ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.pricing-notes ul li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  position: relative;
  border-left: 4px solid #FFC107;
  transition: all 0.3s ease;
}

.pricing-notes ul li::before {
  content: '💡';
  position: absolute;
  left: 16px;
  font-size: 20px;
}

.pricing-notes ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

/* ========================================
   CONTACT SECTIONS - ENERGETIC
   ======================================== */

.contact-info {
  padding: 60px 20px;
  background: white;
}

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

.contact-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE5EC 0%, #E8F1F5 100%);
  border-radius: 20px;
  text-align: center;
  border: 3px solid #4ECDC4;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 25px rgba(78, 205, 196, 0.3);
  border-color: #FF6B9D;
}

.contact-item h3 {
  color: #4ECDC4;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-item p {
  color: #2a2a2a;
}

.contact-item a {
  color: #FF6B9D;
  font-weight: 700;
}

.contact-item a:hover {
  color: #4ECDC4;
  text-decoration: underline;
}

.response-time {
  text-align: center;
  font-weight: 700;
  color: #FF6B9D;
  font-size: 18px;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  text-align: center;
  border: 3px solid #FFC107;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.3);
}

.method h3 {
  color: #FFC107;
  margin-bottom: 16px;
}

/* ========================================
   MAP & OPENING HOURS
   ======================================== */

.map-section {
  padding: 60px 20px;
  background: white;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, #E8F1F5 0%, #FFE5EC 100%);
  border-radius: 16px;
  border-left: 5px solid #FF6B9D;
}

.map-info h3 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

.map-info ul {
  list-style: none;
}

.map-info ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2a2a2a;
}

.map-info ul li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 18px;
}

.opening-hours {
  padding: 60px 20px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.opening-hours h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto 32px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  border: 3px solid #FFC107;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid #FFE5EC;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 700;
  color: #2C5F8D;
}

.hours-item span:last-child {
  color: #FF6B9D;
  font-weight: 600;
}

.opening-hours .note {
  text-align: center;
  color: white;
  font-size: 14px;
  font-style: italic;
}

/* ========================================
   FAQ SECTION - INTERACTIVE
   ======================================== */

.faq {
  padding: 60px 20px;
  background: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
  border-radius: 12px;
  border-left: 4px solid #4ECDC4;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.2);
  border-left-color: #FF6B9D;
}

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

.faq-item p {
  color: #2a2a2a;
  margin-bottom: 0;
}

/* ========================================
   GALLERY SECTIONS
   ======================================== */

.gallery-intro {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.gallery-intro h2 {
  margin-bottom: 24px;
}

.gallery-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.gallery-categories {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
}

.gallery-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-item {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  text-align: center;
  border: 3px solid #FFC107;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
  border-color: #FF6B9D;
}

.category-item h3 {
  color: #FFC107;
  margin-bottom: 12px;
}

.category-item p {
  color: #2a2a2a;
}

/* ========================================
   THANK YOU PAGE - CELEBRATION
   ======================================== */

.thank-you-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #4ECDC4;
  margin: 0 auto 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.thank-you-section h1 {
  color: white;
  margin-bottom: 24px;
  -webkit-text-fill-color: white;
}

.thank-you-section .message {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.thank-you-section .confirmation {
  color: white;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 40px;
}

.next-steps {
  padding: 60px 20px;
  background: white;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE5EC 0%, #E8F1F5 100%);
  border-radius: 20px;
  text-align: center;
  border: 3px solid #FFC107;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B9D, #FFC107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.step p {
  color: #2a2a2a;
  font-weight: 600;
}

.quick-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FF6B9D 0%, #FFC107 100%);
  text-align: center;
}

.quick-contact h2 {
  color: white;
  margin-bottom: 24px;
}

.quick-contact p {
  color: white;
  font-size: 16px;
}

.quick-contact .phone {
  font-size: 32px;
  font-weight: 800;
  margin: 24px 0;
}

.quick-contact .phone a {
  color: white;
}

.quick-contact .phone a:hover {
  text-decoration: underline;
}

.quick-contact .hours {
  font-weight: 700;
  margin-bottom: 16px;
}

.quick-contact .alternative a {
  color: white;
  text-decoration: underline;
}

.useful-links {
  padding: 60px 20px;
  background: white;
}

.useful-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, #E8F1F5 0%, #FFE5EC 100%);
  border-radius: 16px;
  border: 3px solid #4ECDC4;
  transition: all 0.3s ease;
  text-align: center;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(78, 205, 196, 0.3);
}

.link-card h3 a {
  color: #4ECDC4;
}

.link-card h3 a:hover {
  color: #FF6B9D;
}

.link-card p {
  color: #2a2a2a;
  margin-bottom: 0;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  text-align: center;
}

.social-proof h2 {
  color: white;
  margin-bottom: 24px;
}

.social-proof .rating {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 32px;
}

.social-proof .testimonial {
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-proof .testimonial p {
  color: #2a2a2a;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
}

.social-proof .testimonial .author {
  color: #4ECDC4;
  font-weight: 700;
  font-style: normal;
}

.social-proof .stats {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

/* ========================================
   LEGAL PAGES - CLEAN & PROFESSIONAL
   ======================================== */

.legal-content {
  padding: 60px 20px;
  background: white;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
  border-radius: 12px;
  border-left: 4px solid #2C5F8D;
}

.legal-section h2 {
  color: #2C5F8D;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-section p {
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2a2a2a;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF6B9D;
  font-size: 20px;
}

/* ========================================
   FOOTER - VIBRANT & INFORMATIVE
   ======================================== */

footer {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FFC107;
  text-decoration: underline;
}

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

.footer-nav a {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* ========================================
   COOKIE CONSENT BANNER - VIBRANT
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FFC107;
}

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

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

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

.cookie-text p {
  margin-bottom: 8px;
}

.cookie-text a {
  color: #FFC107;
  text-decoration: underline;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

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

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

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

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

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 4px solid #FF6B9D;
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF6B9D;
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C06C84;
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF5F8 0%, #E8F1F5 100%);
  border-radius: 12px;
  border-left: 4px solid #4ECDC4;
}

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

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

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

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

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 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;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .values-grid,
  .achievements-grid,
  .contact-grid,
  .steps-grid,
  .links-grid,
  .category-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .contact-item,
  .step,
  .link-card,
  .category-item {
    max-width: 100%;
    width: 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    max-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Price items */
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }

  /* Contact methods */
  .contact-methods {
    flex-direction: column;
  }

  .method {
    max-width: 100%;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

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

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

/* Apply animations to sections */
.section {
  animation: fadeIn 0.8s ease;
}

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

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ========================================
   PRINT STYLES
   ======================================== */

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

  body {
    background: white;
  }

  .hero,
  .page-hero,
  .cta-section {
    background: white;
    color: black;
  }

  h1, h2, h3 {
    color: black;
  }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

:focus {
  outline: 3px solid #FFC107;
  outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: white;
  }

  .btn-primary,
  .btn-secondary {
    border: 3px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   END OF STYLESHEET
   ======================================== */