/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F5F0;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY - PROFESSIONAL CORPORATE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2C5F4F;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: #C4A035;
}

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

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

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

/* ===================================
   HEADER - PROFESSIONAL CORPORATE
   =================================== */

header {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(44, 95, 79, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(10);
}

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

.main-nav a {
  color: #F8F5F0;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: #D4AF37;
  border: none;
  color: #2C5F4F;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C4A035;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F4F 0%, #1F4A3C 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #2C5F4F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F8F5F0;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.2);
  border-left-color: #D4AF37;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  header {
    position: relative;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

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

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

.subheadline {
  font-size: 20px;
  color: #E5E5E5;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #D4AF37;
  color: #2C5F4F;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: #C4A035;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
  background: #F8F5F0;
  color: #2C5F4F;
}

.btn-link {
  color: #2C5F4F;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  display: inline-block;
  position: relative;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: #D4AF37;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

.trust-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===================================
   SERVICES GRID - FLEXBOX LAYOUT
   =================================== */

.services-overview {
  background: #FFFFFF;
}

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

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #4A5568;
  font-size: 18px;
}

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

.service-card {
  background: #F8F5F0;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.15);
  border-color: #D4AF37;
}

.service-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 24px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

/* ===================================
   USP SECTION
   =================================== */

.usp-section {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.usp-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.usp-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.usp-item h3 {
  font-size: 20px;
  color: #2C5F4F;
}

.usp-item p {
  color: #4A5568;
  font-size: 15px;
}

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

.testimonials {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #F8F5F0;
  border-left: 4px solid #D4AF37;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.customer strong {
  color: #2C5F4F;
  font-size: 16px;
}

.customer span {
  color: #718096;
  font-size: 14px;
}

.stars {
  color: #D4AF37;
  font-size: 18px;
  margin-top: 8px;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #E5E5E5;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 0;
}

/* ===================================
   PAGE HERO (INTERNAL PAGES)
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E5E5E5;
  font-size: 18px;
}

.breadcrumb {
  color: #D4AF37;
  font-size: 14px;
  margin-bottom: 24px;
  display: inline-block;
}

.breadcrumb a {
  color: #D4AF37;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #F8F5F0;
}

/* ===================================
   SERVICES DETAILED
   =================================== */

.services-detailed {
  background: #FFFFFF;
}

.service-detail {
  background: #F8F5F0;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid #E5E5E5;
}

.service-detail h2 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-detail h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 20px 0;
  display: block;
}

/* ===================================
   CUSTOMIZATION OPTIONS
   =================================== */

.customization {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.option {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover {
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.1);
}

.option h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 22px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

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

/* ===================================
   PLANNING SERVICES
   =================================== */

.planning-services {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.planning-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #F8F5F0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.planning-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.1);
}

.planning-item img {
  width: 70px;
  height: 70px;
}

.planning-item h3 {
  color: #2C5F4F;
  font-size: 20px;
}

/* ===================================
   EVENT TYPES
   =================================== */

.event-types {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.category {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.category:hover {
  border-color: #D4AF37;
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.1);
}

.category h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

/* ===================================
   PLANNING PROCESS
   =================================== */

.planning-process {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #F8F5F0;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
}

.step-number {
  background: #2C5F4F;
  color: #F8F5F0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
  font-size: 20px;
}

/* ===================================
   PRICING PACKAGES
   =================================== */

.pricing-planning {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.package {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 40px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.15);
}

.package.featured {
  border-color: #D4AF37;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.package h3 {
  color: #2C5F4F;
  font-size: 24px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.package ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
}

.package ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A5568;
  border-bottom: 1px solid #E5E5E5;
}

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

.package ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* ===================================
   CONSULTATION CTA
   =================================== */

.consultation-cta {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.consultation-cta h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.consultation-cta p {
  color: #E5E5E5;
  font-size: 18px;
  margin-bottom: 24px;
}

.benefits {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.benefits li {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===================================
   PRICING OVERVIEW
   =================================== */

.pricing-overview {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.pricing-card {
  background: #F8F5F0;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.1);
}

.pricing-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 16px 0;
}

.pricing-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* ===================================
   SAMPLE MENUS
   =================================== */

.sample-menus {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

.menu-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.menu-example {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
}

.menu-example h3 {
  color: #2C5F4F;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #D4AF37;
}

.menu-example ul {
  list-style: none;
}

.menu-example ul li {
  padding: 12px 0;
  color: #4A5568;
  border-bottom: 1px solid #E5E5E5;
}

.menu-example ul li:last-child {
  border-bottom: none;
}

.menu-example ul li strong {
  color: #2C5F4F;
  display: block;
  margin-bottom: 4px;
}

.note {
  text-align: center;
  font-style: italic;
  color: #718096;
  margin: 32px 0;
}

/* ===================================
   ADDITIONAL COSTS
   =================================== */

.additional-costs {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.factor {
  background: #F8F5F0;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
}

.factor h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 8px;
}

/* ===================================
   REQUEST QUOTE
   =================================== */

.request-quote {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.request-quote h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.request-quote p {
  color: #E5E5E5;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ===================================
   EVENT SHOWCASES
   =================================== */

.event-showcases {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.event-showcase {
  background: #F8F5F0;
  border-radius: 12px;
  padding: 40px;
  border-left: 4px solid #D4AF37;
}

.event-showcase h3 {
  color: #2C5F4F;
  margin-bottom: 20px;
  font-size: 28px;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.event-details p {
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 0;
  color: #4A5568;
}

.event-details strong {
  color: #2C5F4F;
}

.event-description p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.event-description .testimonial {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid #D4AF37;
  padding: 16px 20px;
  border-radius: 8px;
  font-style: italic;
  color: #2C3E50;
  margin-top: 20px;
}

/* ===================================
   CLIENT CATEGORIES
   =================================== */

.client-categories {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.category-item {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
}

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

/* ===================================
   INSPIRATION CTA
   =================================== */

.inspiration-cta {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.inspiration-cta h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.inspiration-cta p {
  color: #E5E5E5;
  font-size: 18px;
  margin-bottom: 24px;
}

.inspiration-points {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.inspiration-points li {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===================================
   COMPANY STORY
   =================================== */

.company-story {
  background: #FFFFFF;
  padding: 60px 20px;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.timeline-item {
  background: #F8F5F0;
  border-left: 3px solid #D4AF37;
  padding: 16px 20px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  max-width: 380px;
}

.timeline-item strong {
  color: #D4AF37;
  font-size: 18px;
}

/* ===================================
   MISSION & VALUES
   =================================== */

.mission-values {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.value {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.value:hover {
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.1);
}

.value h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

/* ===================================
   TEAM
   =================================== */

.team {
  background: #FFFFFF;
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.8;
}

.team-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-category {
  background: #F8F5F0;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
}

.team-category h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

/* ===================================
   WHY CHOOSE
   =================================== */

.why-choose {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.diff-item {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
}

.diff-item h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 8px;
}

/* ===================================
   CONTACT CTA
   =================================== */

.contact-cta {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
}

.contact-cta h2 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.contact-cta p {
  color: #E5E5E5;
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-details {
  margin: 32px 0;
}

.contact-details p {
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ===================================
   CONTACT METHODS
   =================================== */

.contact-methods {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.method {
  background: #F8F5F0;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method img {
  width: 60px;
  height: 60px;
}

.method h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.method p {
  margin-bottom: 4px;
}

.method a {
  color: #D4AF37;
  font-weight: 600;
}

.method a:hover {
  text-decoration: underline;
}

.detail {
  color: #718096;
  font-size: 14px;
  font-style: italic;
}

.response-badge {
  background: #D4AF37;
  color: #2C5F4F;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
}

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

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

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

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

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-note {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid #D4AF37;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.form-note p {
  margin-bottom: 8px;
  color: #2C3E50;
}

.form-note a {
  color: #D4AF37;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-fields-description h3 {
  color: #2C5F4F;
  margin-bottom: 24px;
}

.form-fields-description p {
  font-weight: 600;
  color: #2C5F4F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.form-fields-description ul {
  list-style: none;
  margin-bottom: 24px;
}

.form-fields-description ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.form-fields-description ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

.form-cta {
  margin-top: 32px;
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #E5E5E5;
}

.form-info {
  margin-top: 16px;
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* ===================================
   OFFICE INFO
   =================================== */

.office-info {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.detail-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  background: #F8F5F0;
  padding: 32px;
  border-radius: 12px;
}

.detail-block h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 22px;
}

.detail-block p {
  margin-bottom: 12px;
}

.visit-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

/* ===================================
   SERVICE AREA
   =================================== */

.service-area {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.service-area h2 {
  text-align: center;
  margin-bottom: 32px;
}

.service-area p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.7;
}

.service-area strong {
  color: #2C5F4F;
  font-size: 18px;
}

/* ===================================
   FAQ CONTACT
   =================================== */

.faq-contact {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.faq-item {
  background: #F8F5F0;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  padding: 24px;
}

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

.faq-item p {
  color: #4A5568;
  margin-bottom: 0;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  padding: 60px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

.last-updated {
  color: #D4AF37;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: #2C5F4F;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #D4AF37;
}

.content-wrapper h3 {
  color: #2C5F4F;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: none;
  margin: 16px 0;
}

.content-wrapper ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
  line-height: 1.6;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

.content-wrapper a {
  color: #D4AF37;
  font-weight: 600;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #D4AF37;
  color: #2C5F4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.thank-you-hero h1 {
  color: #F8F5F0;
  margin-bottom: 16px;
}

/* ===================================
   NEXT STEPS
   =================================== */

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

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

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

.step {
  background: #F8F5F0;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ===================================
   EXPLORE MORE
   =================================== */

.explore-more {
  background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.explore-more h2 {
  text-align: center;
  margin-bottom: 24px;
}

.explore-more > .container > p {
  text-align: center;
  margin-bottom: 40px;
}

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

.explore-link {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.explore-link:hover {
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.1);
}

.explore-link img {
  width: 50px;
  height: 50px;
}

.explore-link span {
  color: #2C5F4F;
  font-weight: 600;
}

/* ===================================
   TESTIMONIAL HIGHLIGHT
   =================================== */

.testimonial-highlight {
  background: #FFFFFF;
  padding: 60px 20px;
}

.testimonial-highlight h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

/* ===================================
   CONTACT REMINDER
   =================================== */

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

.contact-reminder h2 {
  margin-bottom: 24px;
}

.contact-reminder p {
  margin-bottom: 12px;
}

.contact-info {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  max-width: 600px;
  margin: 32px auto 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ===================================
   FOOTER - PROFESSIONAL CORPORATE
   =================================== */

footer {
  background: linear-gradient(135deg, #1F4A3C 0%, #2C5F4F 100%);
  color: #F8F5F0;
  padding: 60px 20px 20px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(10);
}

.footer-section h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-section p {
  color: #E5E5E5;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #E5E5E5;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #D4AF37;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #C0C0C0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4A3C 100%);
  color: #F8F5F0;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-content {
  flex: 1 1 400px;
}

.cookie-banner-content h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 8px;
}

.cookie-banner-content p {
  color: #E5E5E5;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: #D4AF37;
  color: #2C5F4F;
}

.cookie-btn-accept:hover {
  background: #C4A035;
}

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

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

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

.cookie-btn-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* ===================================
   COOKIE MODAL
   =================================== */

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #2C5F4F;
  color: #2C5F4F;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #2C5F4F;
  color: #F8F5F0;
  transform: rotate(90deg);
}

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

.cookie-category {
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle.active {
  background: #D4AF37;
}

.cookie-toggle.disabled {
  background: #2C5F4F;
  cursor: not-allowed;
  opacity: 0.6;
}

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .subheadline {
    font-size: 18px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .service-grid {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .usp-grid {
    flex-direction: column;
  }

  .usp-item {
    flex: 1 1 100%;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .services-grid,
  .planning-item {
    flex-direction: column;
  }

  .planning-item {
    flex: 1 1 100%;
  }

  .categories,
  .category {
    flex-direction: column;
  }

  .category {
    flex: 1 1 100%;
  }

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

  .package {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .package.featured {
    transform: scale(1);
  }

  .pricing-grid {
    flex-direction: column;
  }

  .pricing-card {
    flex: 1 1 100%;
  }

  .menu-examples {
    flex-direction: column;
  }

  .menu-example {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cost-factors {
    flex-direction: column;
  }

  .factor {
    flex: 1 1 100%;
  }

  .event-details {
    flex-direction: column;
  }

  .categories-grid {
    flex-direction: column;
  }

  .category-item {
    flex: 1 1 100%;
  }

  .values-grid {
    flex-direction: column;
  }

  .value {
    flex: 1 1 100%;
  }

  .team-categories {
    flex-direction: column;
  }

  .team-category {
    flex: 1 1 100%;
  }

  .differentiators {
    flex-direction: column;
  }

  .diff-item {
    flex: 1 1 100%;
  }

  .methods-grid {
    flex-direction: column;
  }

  .method {
    flex: 1 1 100%;
  }

  .office-details {
    flex-direction: column;
  }

  .detail-block {
    flex: 1 1 100%;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }

  .links-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .explore-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-banner .container {
    flex-direction: column;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 30px 20px;
  }

  .timeline {
    flex-direction: column;
  }

  .timeline-item {
    flex: 1 1 100%;
  }

  .options-grid {
    flex-direction: column;
  }

  .option {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }

  .usp-item {
    flex: 1 1 calc(50% - 32px);
  }

  .planning-item {
    flex: 1 1 calc(50% - 32px);
  }

  .category {
    flex: 1 1 calc(50% - 24px);
  }

  .package {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-section {
    flex: 1 1 calc(50% - 40px);
  }
}

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

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

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

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

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

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

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

  body {
    background: white;
    color: black;
  }
}