/* Lucille's Premium Catering - Custom CSS */

/* CSS Variables - Design System */
:root {
  /* Brand Colors */
  --background: #FFFEF7; /* Cream */
  --foreground: #2C3E2C; /* Dark Charcoal */
  
  --card: #FFFFFF; /* White */
  --card-foreground: #333333;
  
  /* Primary: Light Green */
  --primary: #90C695;
  --primary-light: #A8D5BA;
  --primary-foreground: #FFFFFF;
  
  /* Secondary: Gold */
  --secondary: yellow;
  --secondary-light: #FFD700;
  --secondary-foreground: #333333;
  --gold: #D4AF37;
  
  /* Accent: Dark Green */
  --accent: #218f27;
  --accent-foreground: #FFFFFF;
  --accent-darkgreen:#1B5E20;
  
  --muted: #F0F0F0;
  --muted-foreground: #666666;
  
  --border: #E0E0E0;
  --input: #E0E0E0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #90C695 0%, #A8D5BA 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
  --gradient-hero: linear-gradient(135deg, rgba(144, 198, 149, 0.3) 0%, rgba(44, 95, 45, 1.0) 100%);
  
  /* Typography */
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --card-padding: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  
  /* Border Radius */
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  
  /* Floating Video */
  --video-size: 300px;
  --video-border-radius: 16px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-inter);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

/* ===================== */
/* Learn More slide panel */
/* ===================== */
.learn-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(520px, 90vw);
  background: var(--accent);
  color: #fff;
  box-shadow: -12px 0 24px rgba(0,0,0,0.25);
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.learn-panel.minimized {
  transform: translateX(calc(100% - 64px));
}

.learn-panel.hidden {
  transform: translateX(100%);
}

/* When minimized/hidden, don't block page taps; keep handle clickable */
.learn-panel.hidden { pointer-events: none; }
.learn-panel.hidden .learn-handle { pointer-events: auto; }
.learn-panel.minimized { pointer-events: none; }
.learn-panel.minimized .learn-handle { pointer-events: auto; }

.learn-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.learn-panel-content {
  padding: 64px 40px 24px 40px;
  overflow-y: auto;
}

.learn-title {
  margin: 0 0 24px 0;
  font-size: 28px;
  font-weight: 700;
}

.learn-links { list-style: none; padding: 0; margin: 0; }

.learn-link {
  display: block;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.learn-link:hover { opacity: 0.9; }

.learn-link.emphasis {
  border: 0;
  margin-top: 8px;
  display: inline-block;
  padding: 12px 18px;
  background: #fff;
  color: var(--accent);
  border-radius: 6px;
  font-weight: 600;
}

.learn-handle {
  position: absolute;
  left: -64px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2000;
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Hide top nav links when panel open */
.navbar.panel-open .nav-menu { visibility: hidden; opacity: 0; pointer-events: none; }
.navbar.panel-open .logo-img { height: 110px; }

@media (max-width: 768px) {
  /* On mobile, do not auto-open; show a small handle to open */
  .learn-panel { 
    width: 100vw; 
    transform: translateX(100%); /* Start completely hidden */
    overflow: visible !important; /* Allow button to show outside panel */
  }
  /* On mobile, keep the panel fully off-screen when minimized; show only the handle */
  .learn-panel.minimized { 
    transform: translateX(calc(100% - 0px)) !important; /* Hide panel completely but allow overflow */
    pointer-events: none; /* Prevent panel from blocking interactions */
    background: transparent !important; /* Hide green background */
    overflow: visible !important; /* Critical: allows button to be visible */
  }
  .learn-panel.minimized .learn-panel-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .learn-panel.minimized .learn-close {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .learn-panel.minimized .learn-handle {
    position: absolute !important;
    left: -80px !important; /* Position button to the left of the hidden panel */
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    transform-origin: center center !important;
    z-index: 9999 !important;
    display: block !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 14px !important;
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }
  .learn-panel.hidden { 
    transform: translateX(calc(100% - 0px)) !important; /* Hide panel completely but allow overflow */
    pointer-events: none; /* Prevent panel from blocking interactions */
    background: transparent !important; /* Hide green background */
    overflow: visible !important; /* Critical: allows button to be visible */
  }
  .learn-panel.hidden .learn-panel-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .learn-panel.hidden .learn-close {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .learn-panel.hidden .learn-handle {
    position: absolute !important;
    left: -80px !important; /* Position button to the left of the hidden panel */
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    transform-origin: center center !important;
    z-index: 9999 !important;
    display: block !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 14px !important;
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }
  .learn-panel:not(.hidden):not(.minimized) { 
    transform: translateX(0) !important; 
    background: var(--accent) !important; /* Show green background when open */
  }
  
  /* Force learn-handle to always be visible on mobile */
  .learn-handle { 
    display: block !important;
    visibility: visible !important;
  }
  
  /* Mobile logo and spacing adjustments */
  .nav-container {
    padding: 16px 20px; /* Reduce header padding */
  }
  
  .nav-logo .logo-img {
    height: 60px; /* Reduce logo size on mobile */
    width: auto;
  }
  
  .hero-headline {
    margin-top: 20px; /* Add gap above "Celebrate with Confidence" */
    font-size: 2.2rem; /* Slightly smaller on mobile */
  }
  
  .hero-mobile .hero-headline {
    margin-top: 24px; /* Extra spacing for mobile hero */
  }
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--foreground);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

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

.gradient-text {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
  min-height: 44px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
  min-height: 52px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: rgba(144, 198, 149, 0.9);
}

.btn-gold {
  background: #DC143C;
  color: #FFFEF7;
  border-color: #DC143C;
  font-weight: bold;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #B22222;
  color: #FFFEF7;
  border: 2px solid #B22222;
}

.btn-outline {
  background: #1B5E20;
  color: #FFFFFF;
  border: 3px solid #1B5E20;
  font-weight: bold;
}

.btn-outline:hover {
  background: #156919;
  color: #FFFFFF;
  border: 3px solid #156919;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  background: #156919;
  color: #FFFFFF;
}

.btn-outline-gold {
  background: var(--accent-darkgreen);
  color: #FFFFFF;
  border: 3px solid var(--accent);
  font-weight: bold;
}

a.btn-outline-gold:hover,
.btn-outline-gold:hover {
  background: var(--accent);
  color: #FFFFFF;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-outline-gold:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  background: var(--accent-darkgreen);
  color: #FFFFFF;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

a.btn-outline-white:hover,
.btn-outline-white:hover {
  background: white;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  border-color: white;
}

/* Navigation */
.navbar {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled,
.navbar.menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px; /* taller header */
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.nav-logo .logo-link {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 96px; /* bigger logo */
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFD700;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow {
  font-size: 12px;
  transition: var(--transition);
}

.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  text-shadow: none;
  border: none;
}

.dropdown-menu a:hover {
  background: var(--muted);
  color: #000000;
  font-weight: 600;
}

/* Call Button */
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #DC143C;
  color: #FFFEF7;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #B22222;
  color: #FFFEF7;
}

.phone-icon {
  font-size: 18px;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section - New Split Layout */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--background);
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

/* Desktop Hero */
.hero-desktop {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-mobile {
  display: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 100%;
  align-items: center;
  width: 100%;
}

.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 60px 80px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 60px 60px;
}

.hero-text-content {
  max-width: 600px;
}

.hero-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: none;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: none;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--foreground);
  text-shadow: none;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta .btn-dark {
  background: #DC143C;
  color: #FFFEF7;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #DC143C;
  transition: var(--transition);
}

.hero-cta .btn-dark:hover {
  background: #B22222;
  color: #FFFEF7;
  border-color: #B22222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-cta .btn-outline-dark {
  background: transparent;
  color: var(--foreground);
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--foreground);
  transition: var(--transition);
}

.hero-cta .btn-outline-dark:hover {
  background: var(--foreground);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-feature-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* Old hero styles for other pages */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000000;
  padding-top: 150px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #000000;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #000000;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Hero Section Button Hover Effects */
.hero-buttons .btn-outline:hover,
.hero-buttons a.btn-outline:hover {
  background: #156919;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 3px solid #156919;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-left {
    padding: 100px 40px 40px 40px;
  }
  
  .hero-right {
    padding: 100px 40px 40px 40px;
  }
  
  .hero-main-title {
    font-size: 2rem;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    background: var(--background);
  }
  
  /* Hide desktop hero */
  .hero-desktop {
    display: none;
  }
  
  /* Show mobile hero */
  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px 40px;
    text-align: center;
  }
  
  .hero-mobile .hero-headline {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .hero-mobile .hero-image-wrapper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
  }
  
  .hero-mobile .hero-feature-image {
    width: 100%;
    height: auto;
  }
  
  .hero-mobile .hero-description {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .hero-mobile .hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .hero-mobile .hero-cta .btn-dark,
  .hero-mobile .hero-cta .btn-outline-dark {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .hero-mobile .hero-cta .btn-dark {
    background: #DC143C;
    color: #FFFEF7;
    border: 2px solid #DC143C;
  }
  
  .hero-mobile .hero-cta .btn-dark:hover {
    background: #B22222;
    color: #FFFEF7;
    border-color: #B22222;
  }
  
  .hero-mobile .hero-cta .btn-outline-dark {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--foreground);
  }
  
  .hero-mobile .hero-cta .btn-outline-dark:hover {
    background: var(--foreground);
    color: #FFFFFF;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 100px 20px 60px 20px;
    text-align: center;
  }
  
  .hero-main-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .hero-headline {
    font-size: 1.75rem;
    text-align: center;
  }
  
  .hero-description {
    text-align: center;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-dark,
  .hero-cta .btn-outline-dark {
    padding: 14px 30px;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* Sections */
section {
  padding: var(--section-padding);
}

.about-preview {
  background: #FFFFFF;
  width: 100%;
  padding: 60px 0;
}

.about-preview .container {
  max-width: 100vw;
  width: 100%;
  padding: 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 100%;
  width: 100%;
}

.about-image {
  order: 1;
}

.about-content {
  order: 2;
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content .section-title {
  font-size: 2.5rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  margin-bottom: 20px;
  max-width: 100%;
}

.about-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Why Choose Us */
.why-choose-us {
  background: var(--accent);
  position: relative;
}

.why-choose-us .section-title {
  color: white;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.features-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.feature-card {
  background: var(--card);
  padding: var(--card-padding);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
}

.feature-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
}

.feature-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Custom Icon Styles - Exact Lucide Icons from Original Design */
.icon-leaf::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-heart::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.51 4.04 3 5.5l7 7Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-shield::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-award::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526'/%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-plant::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 20h10'/%3E%3Cpath d='M10 20c5.5-2.5.8-6.4 3-10'/%3E%3Cpath d='M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z'/%3E%3Cpath d='M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* Additional Service Page Icons */
.icon-heart-wedding::before {
  content: '';
  width: 50px;
  height: 50px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.51 4.04 3 5.5l7 7Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-briefcase::before {
  content: '';
  width: 50px;
  height: 50px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3Crect width='20' height='14' x='2' y='6' rx='2'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-party::before {
  content: '';
  width: 50px;
  height: 50px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l4 6-10 13L2 9Z'/%3E%3Cpath d='M11 3 8 9l4 13 4-13-3-6'/%3E%3Cpath d='M2 9h20'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-shopping::before {
  content: '';
  width: 50px;
  height: 50px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 11 2-2-2-2'/%3E%3Cpath d='M11 13h4'/%3E%3Crect width='18' height='18' x='3' y='3' rx='2' ry='2'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-mobile::before {
  content: '';
  width: 50px;
  height: 50px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='20' x='5' y='2' rx='2' ry='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-users::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-utensils::before,
.icon-dining::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-building::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v8h20v-8a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* Additional icons for market cards, celebrations, etc. */
.icon-cake::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8'/%3E%3Cpath d='M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1'/%3E%3Cpath d='M2 21h20'/%3E%3Cpath d='M7 8v3'/%3E%3Cpath d='M12 8v3'/%3E%3Cpath d='M17 8v3'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-gift::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8v13m0-13V6a2 2 0 1 1 2 2h-2zm0 0V5.5A2.5 2.5 0 1 0 9.5 8H12zm-7 4h14M5 12a2 2 0 1 1 0-4h14a2 2 0 1 1 0 4M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-7'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-graduation::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l4 6-10 13L2 9Z'/%3E%3Cpath d='M11 3 8 9l4 13 4-13-3-6'/%3E%3Cpath d='M2 9h20'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-rings::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.51 4.04 3 5.5l7 7Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-government::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v8h20v-8a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-handshake::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-email::before {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* Card Styling - Add borders for hover effects */
.feature-card, .value-card, .market-card, .platform-card, .celebration-card, .contact-item {
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Feature Card Hover Effects - Only border changes, not icon */
.feature-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Value Card Hover Effects - Only border changes, not icon */
.value-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Market Card Hover Effects - Only border changes, not icon */
.market-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Platform, Celebration, and other card hover effects - Only border changes */
.platform-card:hover,
.celebration-card:hover,
.contact-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Hero Icons for Service Pages - Remove circular backgrounds */
.service-hero .hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Market Card and Value Card Icon Styling - Remove circular backgrounds */
.market-icon, .value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

/* Feature Icon Styling - Remove circular backgrounds */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

/* Platform, Celebration, Accreditation, and Bento Icon Styling - Remove circular backgrounds */
.platform-icon, .celebration-icon, .accreditation-icon, .bento-icon, .contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.feature-description {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* Style for the community program description */
.feature-card:nth-child(4) .feature-description {
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  text-transform: none;
}

/* Certification Cards - UNESCO logo styling */
.certification-card:nth-child(4) .certification-logo {
  background-color: #0077be;  /* UNESCO blue background */
  padding: 10px;
}

.certification-card:nth-child(4) .certification-img {
  width: 100%;
  height: 100%;
}

/* Services */
.services {
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.service-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: var(--card-padding);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-price {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 20px;
}

.service-card .btn-outline {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}

.service-card .btn-outline:hover {
  background: #156919;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Target Markets */
.target-markets {
  background: var(--accent);
}

.target-markets .section-title {
  color: white;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.market-card {
  background: var(--card);
  padding: var(--card-padding);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.market-image {
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.market-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.market-card:hover .market-img {
  transform: scale(1.05);
}

.market-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.market-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.market-description {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* CTA Section */
/* CTA Section */
.cta-section {
  position: relative;
  background: white;
  color: var(--foreground);
  padding: var(--section-padding);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.contact-cta {
  position: relative;
  background: white;
  color: var(--foreground);
  padding: var(--section-padding);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--foreground);
  display: block;
  visibility: visible;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: var(--foreground);
  display: block;
  visibility: visible;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* CTA Section Button Styles */
.cta-section .btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--foreground);
}

/* CTA Section Button Hover Effects */
.cta-section .btn-outline:hover {
  background: #156919;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Page Hero Styles */
.page-hero {
  background: var(--primary);
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  text-align: center;
}

/* Menu Hero with Background Grid */
.menu-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 140px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  margin-top: 0;
}

.hero-background-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .hero-overlay is defined globally above - no need to redefine */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.menu-hero .hero-content {
  padding-top: 0;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary-foreground);
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-foreground);
  font-weight: 700;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

/* Responsive adjustments for hero background grid */
@media (max-width: 1024px) {
  .hero-background-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .page-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-hero {
    min-height: 350px;
    padding: 100px 15px 60px;
  }
  
  .hero-background-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    min-height: 300px;
    padding: 90px 15px 50px;
  }
  
  .hero-background-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .page-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* ==================== MENU PAGE STYLES ==================== */

/* Filter Tabs */
.filter-tabs {
  background: var(--background);
  padding: 20px 0;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 100;
}

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

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-gold);
  border-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Buffet Packages */
.buffet-packages {
  padding: 80px 0;
  background: var(--background);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.package-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-gold);
  color: var(--secondary-foreground);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.package-color {
  height: 8px;
  width: 100%;
}

.budget-color { background: var(--accent); }
.premium-color { background: var(--gradient-gold); }
.deluxe-color { background: var(--accent); }
.ultimate-color { background: var(--gradient-gold); }

.package-content {
  padding: 24px;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.package-inclusions {
  margin-bottom: 24px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
}

.check-icon {
  color: var(--primary);
  margin-right: 8px;
  font-weight: bold;
  flex-shrink: 0;
}

.sample-dishes {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 24px;
}

.sample-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--muted-foreground);
}

.sample-list {
  font-size: 12px;
  color: var(--muted-foreground);
}

.package-btn {
  width: 100%;
}

/* All-In Packages */
.allin-packages {
  padding: 80px 0;
  background: var(--accent);
  color: white;
}

.allin-packages .section-title {
  color: white;
}

.allin-packages h3 {
  color: white;
}

.allin-packages p {
  color: rgba(255, 255, 255, 0.9);
}

.allin-packages .allin-pax {
  color: var(--foreground);
}

.allin-packages .special-note {
  background: var(--muted) !important;
  border: 2px solid var(--border) !important;
}

.allin-packages .special-note h3 {
  color: var(--accent) !important;
}

.allin-packages .special-note p {
  color: var(--foreground) !important;
}

.allin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.allin-card {
  background: var(--card);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.allin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.allin-price {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.allin-pax {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.allin-includes {
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

/* Responsive styles for All-In packages */
@media (max-width: 1200px) {
  .allin-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .allin-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .allin-card {
    padding: 24px;
  }
  
  .allin-price {
    font-size: 1.5rem;
  }
  
  .allin-pax {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .allin-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .allin-card {
    padding: 16px;
  }
  
  .allin-price {
    font-size: 1.25rem;
  }
  
  .allin-pax {
    font-size: 0.875rem;
  }
  
  .allin-includes {
    font-size: 0.875rem;
  }
}

/* Add-on Stations */
.addon-stations {
  padding: 80px 0;
  background: var(--background);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.addon-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.addon-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.addon-description {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 16px;
}

.addon-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.addon-details li {
  font-size: 13px;
  color: var(--muted-foreground);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.addon-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Responsive styles for Add-ons */
@media (max-width: 1024px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .addon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .addon-card {
    padding: 24px;
  }
}

/* Download CTA */
.download-cta {
  padding: 80px 0;
  background: var(--accent);
  color: white;
}

.download-cta .cta-title {
  color: white;
}

.download-cta .cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.download-icon {
  margin-right: 8px;
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: var(--background);
}

.contact-header {
  margin-bottom: 60px;
}

.contact-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-header .contact-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  padding-right: 20px;
  min-width: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 50%;
  margin-top: 2px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-content {
  flex: 1;
  min-width: 0;
}

.contact-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.contact-content p {
  color: var(--foreground);
  margin: 0;
  line-height: 1.6;
  padding-left: 0;
}

.contact-content a {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition);
}

.contact-content a:hover {
  color: var(--accent);
}

.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn svg {
  flex-shrink: 0;
}

.social-btn.facebook {
  background: #1877F2;
  color: white;
}

.social-btn.instagram {
  background: #E4405F;
  color: white;
}

.social-btn.tiktok {
  background: #000000;
  color: white;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-form-container {
  background: var(--card);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  min-width: 0;
  width: 100%;
}

.contact-form-container h2 {
  background: var(--primary);
  color: white;
  margin: 0;
  padding: 24px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: 1.5rem;
}

.contact-form-container p {
  padding: 0 32px;
  margin: 16px 0 24px;
  color: var(--muted-foreground);
}

.contact-form {
  padding: 0 32px 32px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .contact-form-container h2 {
    padding: 20px 24px;
    font-size: 1.25rem;
  }
  
  .contact-form-container p {
    padding: 0 24px;
  }
  
  .contact-form {
    padding: 0 24px 24px;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-text {
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-button a {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* About Page - Story Hero Section with Multiple Image Background */
.story-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 20px 80px;
  width: 100%;
  max-width: 100vw;
  margin-top: 0;
}

.hero-images-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-images-slider {
  display: flex;
  animation: slideImages 40s linear infinite;
  height: 100%;
  width: max-content;
}

.hero-bg-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  padding: 20px;
  flex-shrink: 0;
}

@keyframes slideImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate images for seamless loop */
.hero-images-slider::after {
  content: '';
  display: flex;
}

.story-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.story-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-foreground);
  margin-bottom: 1rem;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.story-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-foreground);
  font-weight: 700;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

/* Story Content */
.story-content {
  padding: 80px 0;
}

.story-with-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.story-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.story-image-item.large {
  grid-column: 1 / -1;
}

.story-image-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.story-image-item.large .story-img {
  height: 300px;
}

.story-image-item:not(.large) .story-img {
  height: 200px;
}

.story-image-item:hover .story-img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* Responsive styles for story hero */
@media (max-width: 768px) {
  .story-hero {
    min-height: 350px;
    padding: 100px 15px 60px;
    max-width: 100vw;
  }

  .story-title {
    font-size: 2.2rem;
  }

  .story-subtitle {
    font-size: 1.1rem;
  }

  .hero-bg-img {
    padding: 15px;
    height: 280px;
  }
  
  .feature-card:nth-child(4) .feature-description {
    font-size: 0.7rem;
    letter-spacing: 0.2px;
  }
}

@media (max-width: 480px) {
  .story-hero {
    min-height: 300px;
    padding: 90px 15px 50px;
    max-width: 100vw;
  }

  .story-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .story-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-bg-img {
    padding: 8px;
    height: 220px;
  }
  
  .feature-card:nth-child(4) .feature-description {
    font-size: 0.65rem;
    letter-spacing: 0;
  }
}

.story-text-content {
  padding: 20px 0;
}

.story-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
}

.story-milestone {
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative;
}

.milestone-year {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient-gold);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: center;
}

.story-milestone p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.story-milestone.highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  padding: 20px 20px 20px 70px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
}

.story-milestone strong {
  color: var(--accent-darkgreen);
  font-weight: 700;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #4a5568;
}

/* Journey Timeline */
.journey-section {
  padding: 80px 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: var(--gradient-gold);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--gradient-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-year::before {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-year::before {
  left: -40px;
}

.timeline-content {
  flex: 1;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin: 0 40px;
}

.timeline-content h3 {
  color: var(--accent-darkgreen);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #4a5568;
  line-height: 1.6;
}

/* Vision Mission Section */
.vision-mission-section {
  padding: 80px 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card, .mission-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.vision-card:hover, .mission-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.vision-card h2, .mission-card h2 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.vision-card p, .mission-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Core Values Section */
.core-values-section {
  padding: 80px 0;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.core-values-section .value-card {
  background: white;
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.core-values-section .value-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.core-values-section .value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

.value-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.core-values-section .value-card:hover .value-img {
  transform: scale(1.05);
}

/* Icon Styles */
.icon-medal, .icon-lightbulb, .icon-heart, .icon-users {
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
}

.icon-medal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.61 2.14a2 2 0 0 1 .13 2.2L16.79 15'/%3E%3Cpath d='m11 12 1 9 3-3 3 3 1-9'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-lightbulb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5'/%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-heart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.icon-users::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.core-values-section .value-card h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.core-values-section .value-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.team-member:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.member-info h3 {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 8px;
}

.member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.member-description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  color: white;
  text-align: center;
}

.certifications-section .section-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.certifications-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
  color: white;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.certification-card {
  background: var(--card);
  padding: var(--card-padding);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.certification-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.certification-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
}

.certification-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.certification-card:hover .certification-img {
  transform: scale(1.05);
}

.certification-title {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.certification-description {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
}

/* ==================== Gallery Page Styles (moved from pages/gallery.html) ==================== */
.page-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary-foreground);
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-foreground);
  font-weight: 700;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.gallery-filters {
  background: var(--background);
  padding: 20px 0;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 100;
}

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

.gallery-filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gradient-gold);
  border-color: var(--secondary);
  color: var(--secondary-foreground);
}

.gallery-section {
  padding: 80px 0;
  background: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  padding: 20px;
}

.gallery-stats {
  padding: 80px 0;
  background: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gradient-gold);
}

.gallery-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: white;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  margin-left: -25px;
}

.lightbox-next {
  margin-right: -25px;
}

/* Tablet Responsive - About Page */
@media (max-width: 1024px) {
  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

/* End Gallery Page Styles */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Page Responsive Design */
@media (max-width: 768px) {
  .story-title {
    font-size: 2.5rem;
  }

  .story-with-images {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-images-grid {
    order: 2;
  }

  .story-text-content {
    order: 1;
  }

  .story-milestone {
    padding-left: 0;
    padding-top: 50px;
  }

  .milestone-year {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .story-milestone.highlight {
    padding: 60px 20px 20px 20px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    min-width: auto;
    padding: 8px 16px;
  }

  .timeline-year::before {
    display: none;
  }

  .timeline-content {
    margin: 20px 0 0 0;
    width: 100%;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .core-values-section .value-card {
    padding: 20px 12px;
  }

  .core-values-section .value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .core-values-section .value-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .value-icon {
    margin-bottom: 12px;
  }

  .value-img {
    width: 60px;
    height: 60px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certification-logo {
    width: 100px;
    height: 100px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .certification-logo {
    width: 80px;
    height: 80px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certification-title {
    font-size: 0.95rem;
  }

  .certification-description {
    font-size: 0.8rem;
  }
}

/* ==================== END ABOUT PAGE STYLES ==================== */

/* ==================== TESTIMONIALS PAGE STYLES ==================== */

/* Testimonial Stats */
.testimonial-stats {
  padding: 60px 0;
  background: var(--background);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Featured Testimonial */
.featured-testimonial {
  padding: 80px 0;
  background: var(--accent);
  color: white;
}

.featured-testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 8rem;
  line-height: 1;
  opacity: 0.2;
  margin-bottom: -40px;
}

.featured-quote {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.author-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.author-event {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.rating {
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.testimonial-card .rating {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #FFD700;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author-small {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-author-small h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.testimonial-author-small p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .featured-quote {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .quote-icon {
    font-size: 5rem;
  }
  
  .featured-quote {
    font-size: 1.1rem;
  }
  
  .author-name {
    font-size: 1.1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}

/* ==================== END TESTIMONIALS PAGE STYLES ==================== */

/* Footer */
.footer {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 40px 0 20px;
}

.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo-img {
  max-width: 140px;
  height: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-hours,
.footer-location,
.footer-phones {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-hours::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.footer-location::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.footer-phones::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.footer-phones a,
.footer-location a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-phones a:hover,
.footer-location a:hover {
  color: white;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 10px 0;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--foreground);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon-link:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-link.facebook:hover {
  background: #1877F2;
  color: white;
}

.social-icon-link.tiktok:hover {
  background: #000000;
  color: white;
}

.social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.facebook-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.tiktok-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 12a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm10-6h-4v12a2 2 0 1 1-4 0 2 2 0 0 1 2-2V8a6 6 0 0 0-6 6v2a6 6 0 0 0 12 0v-7h4V4h-4z'%3E%3C/path%3E%3C/svg%3E");
}

.footer-links {
  list-style: none;
  text-align: center;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--accent-foreground);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer-contact {
  list-style: none;
}

.footer-contact p {
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--accent-foreground);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--secondary);
}

.contact-info p {
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.6;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-icon-inline {
  display: none;
}

/* Removed old contact-info ::before styles */

.contact-info a {
  color: var(--accent-foreground);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.contact-info a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  opacity: 0.8;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content .section-title {
    font-size: 1.8rem;
    white-space: normal;
  }
  
  .about-text {
    font-size: 0.95rem;
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .about-preview .container {
    padding: 0 30px;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
}

/* Medium screens - Tablet landscape */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }
  
  .about-content .section-title {
    font-size: 1.6rem;
  }
  
  .about-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 254, 247, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-dropdown.active .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 10px;
    margin-top: 8px;
  }
  
  .nav-dropdown .dropdown-menu a {
    color: #000000;
    padding: 12px 16px;
    display: block;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    text-shadow: none;
    font-weight: 500;
  }
  
  .nav-dropdown .dropdown-menu a:hover,
  .nav-dropdown .dropdown-menu a:active {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-weight: 600;
  }
  
  .nav-dropdown .dropdown-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
  }
  
  .hero {
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-content {
    order: 1;
    text-align: center;
  }
  
  .about-content .section-title {
    white-space: normal;
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .feature-logo {
    width: 100px;
    height: 100px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .market-image {
    height: 150px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .footer-logo-img {
    max-width: 120px;
  }
  
  .footer-info p {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .features-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .feature-logo {
    width: 80px;
    height: 80px;
  }
  
  .markets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .market-image {
    height: 140px;
  }
  
  .footer-logo-img {
    max-width: 100px;
  }
  
  .footer-info p {
    font-size: 0.85rem;
  }
  
  .footer-phones {
    font-size: 0.8rem;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Animation Classes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out;
}

/* Utility Classes */
.pattern-dots {
  position: relative;
}

.pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-gold-border {
  border: 2px solid var(--border);
  transition: var(--transition);
}

.hover-gold-border:hover {
  border-color: var(--secondary);
}

/* Contact Form Specific Styles */
.message {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.loading {
  display: none;
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.required {
  color: #dc3545;
  font-weight: bold;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(144, 198, 149, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: var(--accent) !important;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #2d5016 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 20px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.call-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: var(--background);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.location-info h3 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.location-address {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 24px;
  font-weight: 500;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item strong {
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.location-item p {
  margin: 4px 0;
  color: var(--foreground);
}

.location-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.location-item a:hover {
  text-decoration: underline;
}

.location-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  max-width: 120px;
}

.map-image-overlay:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.map-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.map-overlay-text {
  font-size: 10px;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
}

/* Map Modal Styles */
.map-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  overflow-y: auto;
  padding: 20px 0;
}

.map-modal-content {
  position: relative;
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  max-height: 95vh;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.map-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.map-modal-close:hover {
  color: var(--accent);
  background: white;
  transform: scale(1.1);
}

.map-modal-image {
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.map-modal-caption {
  padding: 20px;
  text-align: center;
}

.map-modal-caption h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.map-modal-caption p {
  color: var(--foreground);
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-map-container iframe {
    height: 300px;
  }
  
  .location-visual {
    gap: 15px;
  }
  
  .map-image-overlay {
    bottom: 15px;
    left: 15px;
    max-width: 100px;
    padding: 6px;
  }
  
  .map-overlay-text {
    font-size: 9px;
  }
  
  .map-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 90vh;
  }
  
  .map-modal-image {
    max-height: 90vh;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-button,
  .footer {
    display: none;
  }
  
  .hero {
    height: auto;
    margin-top: 0;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ======================================
   SERVICE PAGES STYLES
   ====================================== */

/* Service Hero */
.service-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 80px;
}

.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 125, 50, 0.85);
}

.service-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.service-hero .hero-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.service-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Accreditation Banner */
.accreditation-banner {
  background: var(--secondary);
  padding: 20px 0;
  text-align: center;
}

.accreditation-content {
  max-width: 600px;
  margin: 0 auto;
}

.accreditation-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.accreditation-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.accreditation-text {
  font-size: 1.125rem;
  color: var(--foreground);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--background);
}

.features-section .section-title {
  text-align: center;
  margin-bottom: 64px;
}

/* Package Cards */
.packages-section {
  padding: 80px 0;
  background: var(--muted);
  position: relative;
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.package-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.package-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.package-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.package-guests {
  color: var(--muted-foreground);
  margin-bottom: 4px;
  font-size: 14px;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-btn {
  background: var(--accent);
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Celebrations Grid */
.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.celebration-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.celebration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.celebration-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  text-align: center;
}

.celebration-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.celebration-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.celebration-description {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* Bento Section */
.bento-section {
  padding: 80px 0;
  background: var(--muted);
  position: relative;
}

.bento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.bento-header {
  text-align: center;
  margin-bottom: 64px;
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bento-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.bento-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.bento-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.bento-price {
  font-size: 2rem;
  font-weight: 700;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.bento-items {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.bento-items li {
  padding: 6px 0;
  font-size: 14px;
}

.bento-btn {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 12px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.bento-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Daily Specials */
.specials-section {
  padding: 80px 0;
  background: var(--background);
}

.specials-header {
  text-align: center;
  margin-bottom: 64px;
}

.specials-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.special-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.special-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.special-day {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.special-item {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* Delivery Section */
.delivery-section {
  padding: 80px 0;
  background: var(--secondary);
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.delivery-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.delivery-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.delivery-text {
  color: var(--gradient-gold);
}

/* ======================================
   BLOG STYLES
   ====================================== */

.blog-hero {
  background: var(--primary);
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  text-align: center;
}

.blog-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  opacity: 1;
  color: var(--accent);
  font-weight: 700;
  text-shadow: 
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF;
}

.blog-content {
  padding: 80px 0;
  background: var(--background);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.blog-posts {
  display: grid;
  gap: 48px;
}

.blog-post {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.post-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.post-category {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 16px;
}

.post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
  transition: var(--transition);
}

.blog-post:hover .post-title {
  color: var(--primary);
}

.post-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.post-date,
.post-read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-read-more {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  width: fit-content;
}

.post-read-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--foreground);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--foreground);
  transition: var(--transition);
  border: 1px solid transparent;
}

.category-item:hover,
.category-item.active {
  background: var(--muted);
  color: var(--secondary);
  border-color: var(--secondary);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.recent-post-title:hover {
  color: var(--primary);
}

.recent-post-date {
  font-size: 12px;
  color: var(--muted-foreground);
}

.newsletter-widget {
  background: var(--primary);
  color: white;
}

.newsletter-widget .widget-title {
  color: white;
}

.newsletter-text {
  margin-bottom: 20px;
  opacity: 0.9;
}

.newsletter-btn {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ======================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ====================================== */

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .blog-sidebar {
    order: -1;
  }
  
  .sidebar-widget {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .service-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .service-hero .hero-icon {
    font-size: 3rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .celebrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-cards {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-content {
    padding: 24px;
  }
  
  .blog-hero-title {
    font-size: 2.5rem;
  }
  
  .accreditation-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-hero .hero-title {
    font-size: 2rem;
  }
  
  .package-card,
  .bento-card {
    padding: 24px;
  }
  
  .celebrations-grid {
    grid-template-columns: 1fr;
  }
  
  .specials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-hero-title {
    font-size: 2rem;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .platform-card {
    padding: 32px 24px;
  }
}

/* ======================================
   FOOD TRAYS SPECIFIC STYLES
   ====================================== */

.food-trays-section {
  padding: 80px 0;
  background: var(--muted);
  position: relative;
}

.food-trays-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.food-trays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.food-category,
.tray-category {
  position: relative;
  z-index: 1;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.food-items,
.tray-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food-item,
.tray-item {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.food-item:hover,
.tray-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.item-name,
.tray-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--foreground);
}

.item-serves,
.tray-serves {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.item-price,
.tray-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Promo Packages */
.promo-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.promo-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid var(--accent);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-size {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.promo-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.promo-savings {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

/* Bilao Size Cards */
.bilao-size-card {
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.bilao-size-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
}

.bilao-size-details {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.bilao-price {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Category Titles */
.food-trays-section .category-title {
  color: #218f27;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Bilao Category Titles - Specific class for green color */
.bilao-category-title {
  color: #218f27;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* Bilao Menu Grid - Checklist Style */
.bilao-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.bilao-category-box {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 30px;
}

.bilao-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bilao-checklist li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.bilao-checklist li:last-child {
  border-bottom: none;
}

.bilao-checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Responsive Design for Bilao Menu */
@media (max-width: 1024px) {
  .bilao-menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .bilao-category-box {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .food-trays-section .category-title,
  .bilao-category-title {
    font-size: 1.3rem;
  }
  
  .bilao-checklist li {
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 28px;
  }
  
  .bilao-checklist li:before {
    font-size: 1.2rem;
  }
  
  .bilao-category-box {
    padding: 20px;
  }
  
  /* Make bilao size cards responsive */
  .promo-packages {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .food-trays-section .category-title,
  .bilao-category-title {
    font-size: 1.1rem;
  }
  
  .promo-packages {
    grid-template-columns: 1fr !important;
  }
  
  .bilao-checklist li {
    font-size: 0.95rem;
  }
}

/* Delivery Info */
.delivery-info {
  padding: 48px 0;
  background: var(--accent);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.delivery-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.delivery-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gold);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 5), 
               -1px -1px 2px rgba(255, 255, 255, 5), 
               1px -1px 2px rgba(255, 255, 255, 5), 
               -1px 1px 2px rgba(255, 255, 255, 5);
}

.delivery-text p {
  font-size: 14px;
  color: var(--gold);
  margin: 0;
  font-weight: 700;
}

/* Lechon Section */
.lechon-section {
  padding: 80px 0;
  background: var(--accent);
}

.lechon-header {
  text-align: center;
  margin-bottom: 64px;
}

.lechon-header .section-title {
  color: white;
}

.lechon-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.lechon-image {
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lechon-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lechon-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.lechon-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.lechon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.lechon-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.lechon-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.lechon-weight {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.lechon-serves {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.lechon-price {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.lechon-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.lechon-features li {
  padding: 6px 0;
  font-size: 14px;
}

.lechon-btn {
  background: var(--accent);
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.lechon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--accent-darkgreen);
}

@media (max-width: 768px) {
  .food-trays-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .delivery-item {
    justify-content: center;
  }
  
  .lechon-image img {
    height: 200px;
  }
  
  .lechon-packages {
    grid-template-columns: 1fr;
  }
}

/* ==================== GALLERY PAGE STYLES ==================== */

/* Gallery Page Hero - override generic .page-hero if needed */
.page-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
  background: var(--background);
  padding: 20px 0;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 100;
}

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

.gallery-filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gradient-gold);
  border-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Gallery Stats */
.gallery-stats {
  padding: 80px 0;
  background: var(--accent);
  color: white;
}

.gallery-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.gallery-stats .stat-item {
  text-align: center;
}

.gallery-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.gallery-stats .stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Gallery CTA */
.gallery-cta {
  padding: 80px 0;
  background: var(--background);
}

.gallery-cta .cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.gallery-cta .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  margin-left: -25px;
}

.lightbox-next {
  margin-right: -25px;
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .gallery-filters .filter-buttons {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .gallery-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-stats .stat-number {
    font-size: 2rem;
  }

  .gallery-cta .cta-title {
    font-size: 2rem;
  }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Hero */
.service-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--background);
}

.feature-icon {
  text-align: center;
  margin-bottom: 24px;
}

.feature-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Packages Section */
.packages-section {
  padding: 80px 0;
  background: var(--muted);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.packages-grid-single {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 400px;
  margin: 0 auto;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.package-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-gold);
  color: var(--secondary-foreground);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.package-header {
  padding: 24px 24px 0;
}

.package-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-guests {
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.package-features {
  padding: 0 24px;
  margin-bottom: 24px;
}

.package-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  text-align: left;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}

.check-icon {
  color: var(--primary);
  margin-right: 8px;
  font-weight: bold;
  flex-shrink: 0;
}

.package-btn {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--accent);
  color: white;
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-author strong {
  color: white;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Service CTA */
.service-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: white;
}

.service-cta .cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-cta .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* Service Pages Mobile Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-icon {
    font-size: 3rem;
  }

  .feature-icon-img {
    width: 80px;
    height: 80px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-cta .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-intro {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 50%;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-content {
  flex: 1;
}

.contact-content h3 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
  font-size: 1.1rem;
}

.contact-content p {
  color: var(--foreground);
  line-height: 1.6;
}

.contact-content a {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition);
}

.contact-content a:hover {
  color: var(--accent);
}

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

.social-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.social-btn.facebook {
  background: #1877F2;
  color: white;
}

.social-btn.instagram {
  background: #E4405F;
  color: white;
}

.social-btn.tiktok {
  background: #000000;
  color: white;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container h2 {
  background: var(--accent);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  margin: -40px -40px 20px -40px;
  font-size: 1.5rem;
}

.contact-form-container > p {
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* reCAPTCHA Styling */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

#recaptcha-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
  text-align: center;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  background: var(--accent) !important;
  color: white !important;
  border: none !important;
}

.form-submit:hover {
  background: #2d5016 !important;
  transform: translateY(-2px);
}

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-foreground);
  text-align: center;
}

.quick-contact {
  background: var(--accent);
  padding: 80px 0;
}

.quick-contact .section-title {
  color: white;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.quick-contact-item {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quick-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-icon svg {
  stroke: var(--accent);
  width: 48px;
  height: 48px;
}

.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 24px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Video Styles */
.floating-video-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: var(--video-size);
  height: calc(var(--video-size) * 1.1); /* Increased height to prevent content cutoff */
  z-index: 4000; /* above slide panel and handle */
  border-radius: var(--video-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  background: var(--card);
}

.floating-video-container:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.floating-video-container.hidden {
  display: none;
}

.video-controls {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 4001;
}

.video-control-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}

.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-control-btn:active {
  transform: scale(0.95);
}

.floating-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--video-border-radius);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-video-container {
    width: 250px;
    height: calc(250px * 1.1);
    bottom: 15px;
    right: 15px;
  }
  
  .video-control-btn {
    width: 28px;
    height: 28px;
  }
  
  .video-control-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* Package Image View Button */
.package-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.view-image-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.view-image-btn:hover {
  color: var(--primary);
  background: rgba(144, 198, 149, 0.1);
  opacity: 1;
  transform: scale(1.1);
}

.view-image-btn:active {
  transform: scale(0.95);
}

/* Image Popup Modal */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.image-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-popup img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}

.image-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}

.image-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.image-popup-title {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive for Image Popup */
@media (max-width: 768px) {
  .image-popup-close {
    top: -50px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .image-popup-title {
    bottom: -50px;
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .view-image-btn {
    padding: 6px;
  }
  
  .view-image-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* General Feedback Section */
.general-feedback-section {
  background: white;
  padding: 80px 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feedback-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.fb-icon {
  width: 40px;
  height: 40px;
  background: #1877F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feedback-info {
  flex: 1;
}

.feedback-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.feedback-stars {
  font-size: 14px;
  color: #FFD700;
  margin: 0;
}

.feedback-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
  font-style: italic;
}

/* Mobile Responsive for Feedback Grid */
@media (max-width: 768px) {
  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .feedback-card {
    padding: 20px;
  }
  
  .feedback-header {
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .fb-icon {
    width: 35px;
    height: 35px;
  }
  
  .fb-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .feedback-name {
    font-size: 0.9rem;
  }
  
  .feedback-text {
    font-size: 13px;
  }
  
  .feedback-stars {
    font-size: 12px;
  }
}

/* Form Validation Styles */
.field-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.field-error.show {
  display: block;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(144, 198, 149, 0.25);
}

/* Character counter for textarea */
.char-counter {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: right;
  margin-top: 4px;
}

.char-counter.warning {
  color: #ffc107;
}

.char-counter.error {
  color: #dc3545;
}

