/* ============================================
   SAPPHIRE MIND - MODERN BOLD CSS
   Design Style: Bold Modern with Strong Typography
   ============================================ */

/* ============================================
   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, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul {
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ============================================
   TYPOGRAPHY - BOLD MODERN STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0A3D6B;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
}

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

strong {
  font-weight: 700;
  color: #0A3D6B;
}

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

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

/* ============================================
   BUTTONS - BOLD GEOMETRIC STYLE
   ============================================ */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background-color: #F4A261;
  color: #ffffff;
  box-shadow: 4px 4px 0 #0A3D6B;
}

.btn-primary:hover {
  background-color: #e89350;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #0A3D6B;
}

.btn-secondary {
  background-color: transparent;
  color: #0A3D6B;
  border: 3px solid #0A3D6B;
  box-shadow: 4px 4px 0 #F4A261;
}

.btn-secondary:hover {
  background-color: #0A3D6B;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #F4A261;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #ffffff;
  border-bottom: 4px solid #0A3D6B;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.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: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0A3D6B;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #F4A261;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU - BURGER NAVIGATION
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #0A3D6B;
  color: #ffffff;
  font-size: 28px;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 4px 4px 0 #F4A261;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #F4A261;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #0A3D6B;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F4A261;
  color: #ffffff;
  font-size: 28px;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 3px 3px 0 #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #ffffff;
}

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

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #F4A261;
  padding-left: 24px;
  background-color: rgba(244, 162, 97, 0.1);
}

/* ============================================
   HERO SECTION - BOLD & IMPACTFUL
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0A3D6B 0%, #0F4C81 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: #F4A261;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.3;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ffffff;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background-color: #F4A261;
  color: #ffffff;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0A3D6B 0%, #0F4C81 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #F4A261 0px,
    #F4A261 20px,
    #0A3D6B 20px,
    #0A3D6B 40px
  );
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

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

/* ============================================
   GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */
.values-grid,
.services-grid,
.testimonial-grid,
.stats-grid,
.team-grid,
.cert-grid,
.tiers-grid,
.discount-grid,
.packages-grid,
.included-grid,
.contact-grid,
.highlights-grid,
.seasons-grid,
.locations-grid,
.actions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* ============================================
   CARDS - BOLD GEOMETRIC DESIGN
   ============================================ */
.value-item,
.service-card,
.testimonial-card,
.stat-item,
.team-member,
.cert-item,
.tier-card,
.discount-item,
.package-card,
.included-item,
.contact-method,
.highlight-card,
.season-card,
.location-card,
.action-card,
.step-card {
  background-color: #ffffff;
  border: 4px solid #0A3D6B;
  padding: 32px;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 8px 8px 0 #F4A261;
  transition: all 0.3s ease;
}

.value-item:hover,
.service-card:hover,
.highlight-card:hover,
.action-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 #F4A261;
}

.service-card h3,
.value-item h3,
.highlight-card h3 {
  color: #0A3D6B;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #F4A261;
  margin-bottom: 16px;
  display: block;
}

.duration {
  font-weight: 700;
  color: #0A3D6B;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.service-card ul,
.tier-card ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-card li,
.tier-card li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  list-style: none;
}

.service-card li::before,
.tier-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 4px solid #0A3D6B;
  padding: 32px;
  box-shadow: 8px 8px 0 #F4A261;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0A3D6B;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #F4A261;
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial {
  font-style: italic;
  color: #0A3D6B;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   STATS & NUMBERS - BOLD DISPLAY
   ============================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #F4A261;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0 #0A3D6B;
}

.stat-item p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0A3D6B;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============================================
   CTA SECTIONS - HIGH IMPACT
   ============================================ */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #F4A261 0%, #e89350 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: #0A3D6B;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.3;
}

.cta-content h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

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

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

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-proposition {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #666;
}

.feature-highlight {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0A3D6B;
  font-size: 18px;
  margin-top: 32px;
  padding: 16px;
  background-color: #F4A261;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TIMELINE - COMPANY STORY
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
  padding-left: 40px;
  border-left: 4px solid #0A3D6B;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #F4A261;
  border: 4px solid #0A3D6B;
}

.timeline-item h3 {
  color: #F4A261;
  font-size: 28px;
  margin-bottom: 8px;
}

/* ============================================
   PRICING SECTIONS
   ============================================ */
.price-range {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #F4A261;
  display: block;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #0A3D6B;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  margin-bottom: 8px;
}

.package-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #0A3D6B;
  margin-bottom: 8px;
}

.savings {
  color: #F4A261;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

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

.legal-page h1 {
  border-bottom: 4px solid #0A3D6B;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  font-size: 28px;
}

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

.legal-page li {
  margin-bottom: 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, #0A3D6B 0%, #0F4C81 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #F4A261;
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid #ffffff;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.subtitle {
  font-size: 20px;
  margin-bottom: 32px;
}

.timeframe,
.note,
.highlight {
  font-weight: 700;
  color: #0A3D6B;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0A3D6B;
  margin-bottom: 16px;
}

.form-container {
  background-color: #f8f9fa;
  border: 4px solid #0A3D6B;
  padding: 40px;
  margin-top: 32px;
  box-shadow: 8px 8px 0 #F4A261;
}

.form-note {
  font-size: 18px;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #0A3D6B;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 8px solid #F4A261;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #F4A261;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 900;
}

.footer-col p,
.footer-col a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  display: block;
}

.footer-col a:hover {
  color: #F4A261;
  padding-left: 8px;
}

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0A3D6B;
  color: #ffffff;
  padding: 24px;
  z-index: 1500;
  border-top: 4px solid #F4A261;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cookie-accept {
  background-color: #F4A261;
  color: #ffffff;
  box-shadow: 3px 3px 0 #ffffff;
}

.cookie-accept:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #ffffff;
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 3px 3px 0 #F4A261;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #F4A261;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border: 4px solid #0A3D6B;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 #F4A261;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #0A3D6B;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header */
  .header-content {
    padding: 16px 0;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards - Stack on mobile */
  .value-item,
  .service-card,
  .testimonial-card,
  .tier-card,
  .discount-item,
  .package-card,
  .contact-method,
  .highlight-card,
  .season-card,
  .location-card,
  .action-card,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat-item h3 {
    font-size: 48px;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  .timeline-item {
    padding-left: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .value-item,
  .service-card,
  .highlight-card,
  .season-card,
  .location-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .tier-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.hero-content,
.page-hero,
.value-item,
.service-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for internal links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* Hidden but accessible */
.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;
}