/* ===================================
   STORMY EVENTS - GRADIENT MODERN CSS
   Design Style: Modern with Gradient Elements
   =================================== */

/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

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

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

a:hover {
  color: #4A7BA7;
}

ul {
  list-style: none;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1D4A6C 0%, #3A6B97 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C5F8D;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

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

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

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6C 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #E8B923;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 50%, #5B8FC0 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

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

.trust-badges span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

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

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

.page-hero p {
  color: #ffffff;
  font-size: 18px;
  opacity: 0.95;
}

.last-updated,
.effective-date {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 16px;
}

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

.section-subtitle {
  text-align: center;
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

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

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

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2C5F8D, #E8B923);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

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

.feature-card p {
  color: #4A4A4A;
  font-size: 14px;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

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

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
  color: #4A4A4A;
  font-size: 14px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #2C5F8D 0%, #E8B923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
}

/* PROCESS */
.process {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  padding: 60px 20px;
  border-radius: 20px;
}

.process h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 220px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #E8B923;
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 12px;
}

.step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* SOCIAL PROOF */
.social-proof {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  display: block;
  background: linear-gradient(135deg, #2C5F8D 0%, #E8B923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: #4A4A4A;
  font-size: 14px;
  display: block;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, #2C5F8D 0%, #E8B923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.testimonial-card p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.testimonial-author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2C5F8D;
  font-size: 16px;
}

.testimonial-author span {
  color: #4A4A4A;
  font-size: 14px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-section h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

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

.cta-section .btn-primary:hover {
  background: #E8B923;
  color: #ffffff;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #2C5F8D;
}

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

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

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  color: #E8B923;
  background: none;
  -webkit-text-fill-color: #E8B923;
  font-size: 18px;
  margin-bottom: 20px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

/* STORY SECTION */
.story {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px 20px;
}

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

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

.timeline-item {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.15);
}

.timeline-item .year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(135deg, #2C5F8D 0%, #E8B923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.timeline-item p {
  color: #4A4A4A;
  font-size: 14px;
}

/* MISSION VISION */
.mission-vision {
  padding: 60px 20px;
}

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

.mission,
.values {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-list li {
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
  line-height: 1.6;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B923;
  font-weight: 700;
  font-size: 18px;
}

.values-list strong {
  color: #2C5F8D;
}

/* TEAM */
.team {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.team-member {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.team-member h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.team-member .position {
  display: block;
  color: #E8B923;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-member p {
  color: #4A4A4A;
  font-size: 14px;
}

/* EXPERTISE */
.expertise {
  padding: 60px 20px;
}

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

.expertise-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.expertise-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* SERVICES DETAIL */
.services-detail {
  padding: 40px 20px;
}

.service-detail-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 20px 0;
}

.service-features li {
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B923;
  font-weight: 700;
  font-size: 18px;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(135deg, #2C5F8D 0%, #E8B923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

/* ADD-ONS */
.add-ons {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.addon-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.15);
}

.addon-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.addon-item p {
  color: #4A4A4A;
  font-size: 14px;
}

/* FAQ */
.faq {
  padding: 60px 20px;
}

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

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
  color: #4A4A4A;
  font-size: 14px;
}

/* GALLERY */
.gallery-categories {
  padding: 40px 20px;
  text-align: center;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.filter-tab {
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  border-color: transparent;
}

.event-showcase {
  padding: 40px 20px;
}

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

.event-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.event-image {
  height: 200px;
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.event-placeholder {
  color: #ffffff;
  font-weight: 600;
  padding: 20px;
  text-align: center;
}

.event-card h3 {
  padding: 20px 24px 8px;
  font-size: 20px;
}

.event-card p {
  padding: 0 24px;
  color: #4A4A4A;
  font-size: 14px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px 24px;
}

.event-meta span {
  font-size: 12px;
  color: #4A4A4A;
  background: rgba(44, 95, 141, 0.1);
  padding: 6px 12px;
  border-radius: 12px;
}

/* TESTIMONIALS INLINE */
.testimonials-inline {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

.testimonials-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-compact {
  flex: 1 1 400px;
  max-width: 500px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-compact p {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 15px;
}

.testimonial-compact strong {
  color: #2C5F8D;
  font-size: 14px;
}

/* CLIENT LOGOS */
.client-logos {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* TESTIMONIALS DETAILED */
.testimonials-detailed {
  padding: 60px 20px;
}

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

.testimonial-large {
  flex: 1 1 100%;
  max-width: 800px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: #2C5F8D;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  color: #4A4A4A;
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-date {
  color: #999;
  font-size: 13px;
}

.testimonial-rating {
  color: #E8B923;
  font-size: 20px;
  margin-top: 12px;
}

/* CASE STUDIES */
.case-studies {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.case-study-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.case-study-content p {
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.case-study-content strong {
  color: #2C5F8D;
  display: block;
  margin-top: 8px;
}

/* STATISTICS */
.statistics {
  padding: 60px 20px;
}

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

.stat-large {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

/* TRUST INDICATORS */
.trust-indicators {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.trust-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.trust-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* CONTACT PAGES */
.contact-methods {
  padding: 60px 20px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

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

.contact-card p {
  color: #4A4A4A;
  font-size: 14px;
}

.contact-card a {
  color: #2C5F8D;
  font-weight: 600;
}

/* CONTACT FORM */
.contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-info p {
  color: #4A4A4A;
  font-size: 14px;
}

.form-info strong {
  color: #2C5F8D;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.form-note {
  font-size: 13px;
  color: #999;
}

.form-note a {
  color: #2C5F8D;
  text-decoration: underline;
}

.form-cta {
  margin-top: 32px;
  text-align: center;
}

/* CONSULTATION BOOKING */
.consultation-booking {
  padding: 60px 20px;
}

.booking-benefits {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.booking-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.booking-benefits li {
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
}

.booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B923;
  font-weight: 700;
  font-size: 18px;
}

/* QUICK CONTACT INFO */
.quick-contact-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.contact-info-box {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box p {
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info-box strong {
  color: #2C5F8D;
  font-size: 18px;
  display: block;
  margin-bottom: 16px;
}

/* FAQ CONTACT */
.faq-contact {
  padding: 60px 20px;
}

.faq-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.faq-item-compact {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-item-compact h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item-compact p {
  color: #4A4A4A;
  font-size: 14px;
}

/* SOCIAL PROOF MINI */
.social-proof-mini {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 40px 0;
}

.social-proof-mini h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 24px;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mini-stat span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

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

.legal-section p,
.legal-section li {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-section li {
  padding-left: 28px;
  position: relative;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #2C5F8D;
  font-size: 20px;
}

/* RIGHTS LIST */
.rights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.right-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

/* PROCESS STEPS (GDPR) */
.process-step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
}

.step-num {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

/* SECURITY MEASURES */
.security-measures ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

/* COOKIE CATEGORIES */
.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cookie-category {
  flex: 1 1 300px;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: rgba(232, 185, 35, 0.2);
  color: #E8B923;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  backdrop-filter: blur(10px);
}

.thank-you-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-message {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
}

.confirmation-notice {
  color: #E8B923;
  font-weight: 600;
  font-size: 16px;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.step-status {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  color: #999;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  flex-shrink: 0;
}

.step-status.done {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.step-content p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* URGENT CONTACT */
.urgent-contact {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  padding: 40px 20px;
  text-align: center;
}

.urgent-box {
  max-width: 600px;
  margin: 0 auto;
}

.urgent-box h2 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-email {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}

.contact-email a {
  color: #2C5F8D;
  text-decoration: underline;
}

/* ADDITIONAL RESOURCES */
.additional-resources {
  padding: 60px 20px;
}

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

.resource-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.resource-card h3 {
  font-size: 20px;
}

/* SOCIAL PROOF COMPACT */
.social-proof-compact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 20px;
  text-align: center;
}

.trust-badge {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 16px;
}

/* BACK HOME */
.back-home {
  text-align: center;
  padding: 40px 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6C 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: #E8B923;
  color: #2C5F8D;
}

.cookie-btn-accept:hover {
  background: #F5C940;
  transform: translateY(-2px);
}

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

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

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.cookie-preference-item {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.preference-header h3 {
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A7BA7 100%);
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.preference-description {
  color: #4A4A4A;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .feature-card,
  .service-card {
    flex: 1 1 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  .service-detail-item {
    padding: 24px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-tabs {
    flex-direction: column;
  }
  
  .filter-tab {
    width: 100%;
  }
}

/* ANIMATIONS */
@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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* 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-visible {
  outline: 3px solid #E8B923;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  header,
  footer {
    display: none !important;
  }
}