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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A2E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1A1A2E 0%, #C59D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #1A1A2E;
}

ul {
  list-style: none;
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4af75 0%, #C59D5F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 157, 95, 0.4);
  color: #fff;
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
  transform: translateY(-2px);
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A2E 0%, #2a2a4e 100%);
  z-index: 2500;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #E8E8E8;
  border: 2px solid #C59D5F;
  padding: 8px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C59D5F;
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(197, 157, 95, 0.8) 100%), url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(232,232,232,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(197, 157, 95, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #C59D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 18px;
  color: #E8E8E8;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badges span {
  color: #E8E8E8;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(197, 157, 95, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(197, 157, 95, 0.8) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #C59D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* Sections */
.section, .services, .why-us, .testimonials, .vehicle-categories, .services-detail, .wedding-services, .about-story, .stats, .values, .contact-info, .location-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

h2 {
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1A1A2E 0%, #C59D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service Grid */
.service-grid, .services-grid, .category-grid, .package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card, .service-detail-card, .category-card, .package-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover::before, .service-detail-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover, .service-detail-card:hover, .category-card:hover, .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(197, 157, 95, 0.2);
}

.service-card h3, .service-detail-card h3, .category-card h3, .package-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.service-card p, .category-card p {
  color: #555;
  flex-grow: 1;
}

.service-card .price, .category-card .price, .package-price {
  font-size: 24px;
  font-weight: 700;
  color: #C59D5F;
  margin: 16px 0;
}

.service-card .btn, .service-detail-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

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

.service-detail-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
}

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

/* Featured Package */
.package-card.featured {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  transform: scale(1.05);
  color: #fff;
}

.package-card.featured h3,
.package-card.featured .duration,
.package-card.featured p,
.package-card.featured .package-price {
  color: #fff;
}

.package-card.featured .btn {
  background: #fff;
  color: #C59D5F;
}

.package-card.featured .btn:hover {
  background: #1A1A2E;
  color: #fff;
}

.duration {
  font-size: 14px;
  font-weight: 600;
  color: #C59D5F;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Grid */
.features-grid, .features-list, .usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

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

.feature:hover, .usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(197, 157, 95, 0.15);
}

.feature h3, .usp-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature p, .usp-card p {
  color: #555;
}

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

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

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(197, 157, 95, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1A1A2E;
  font-style: normal;
  font-size: 14px;
}

.rating {
  color: #C59D5F;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #C59D5F;
  margin-top: 32px;
}

/* CTA Banner/Section */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2a2a4e 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 157, 95, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2, .cta-section h2 {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #C59D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

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

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

/* Contact Page */
.contact-grid, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

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

.contact-card h3 {
  color: #C59D5F;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-card p {
  color: #555;
}

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

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

.form-note {
  background: rgba(197, 157, 95, 0.1);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #C59D5F;
}

.form-note ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.form-note ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
}

.form-note ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C59D5F;
  font-weight: 700;
  font-size: 20px;
}

/* FAQ */
.faq-contact, .faq-list {
  margin-top: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background: #fff;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(197, 157, 95, 0.15);
}

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

.faq-item p {
  color: #555;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  color: #1A1A2E;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
  background: none;
  -webkit-text-fill-color: #1A1A2E;
}

.content-wrapper h3 {
  color: #C59D5F;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.content-wrapper ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 16px;
}

.content-wrapper ul li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.8;
}

.content-wrapper a {
  color: #C59D5F;
  text-decoration: underline;
}

/* Wedding Services */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.feature-box {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 550px;
}

.feature-box h3 {
  color: #C59D5F;
  margin-bottom: 16px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
}

.feature-box ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
}

.feature-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C59D5F;
  font-weight: 700;
}

/* Event Cards */
.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

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

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

.event-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.event-card p {
  color: #555;
}

/* Stats Section */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.stat-card {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(197, 157, 95, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(197, 157, 95, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Values Section */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.value-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  max-width: 280px;
}

.value-item h3 {
  color: #C59D5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: #555;
}

/* Location Section */
.location-details {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #C59D5F 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  color: #C59D5F;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

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

.thank-you-hero p {
  color: #E8E8E8;
  font-size: 18px;
}

.next-steps, .while-waiting {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.step-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 32px;
}

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

.link-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  color: #1A1A2E;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(197, 157, 95, 0.2);
  color: #C59D5F;
}

.contact-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-summary .contact-info {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.return-section {
  padding: 60px 20px;
  text-align: center;
}

/* Info Grid */
.info-grid, .addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.info-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
}

.info-card h3 {
  color: #C59D5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.info-card p {
  color: #555;
}

.addon-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 20px 32px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: #1A1A2E;
  transition: all 0.3s ease;
  flex: 0 1 auto;
}

.addon-item:hover {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #2a2a4e 100%);
  color: #E8E8E8;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-col h4 {
  color: #C59D5F;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #E8E8E8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  display: block;
  color: #E8E8E8;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #C59D5F;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 232, 232, 0.1);
  padding-top: 20px;
  text-align: center;
}

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

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2a2a4e 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #C59D5F;
}

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

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

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

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #C59D5F 0%, #d4af75 100%);
  color: #fff;
}

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

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

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

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

.cookie-btn-settings:hover {
  background: rgba(197, 157, 95, 0.1);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 20px;
  backdrop-filter: blur(5px);
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A1A2E;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(197, 157, 95, 0.1);
  color: #C59D5F;
}

.cookie-modal-content h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #1A1A2E;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #C59D5F;
}

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

.cookie-category h3 {
  color: #1A1A2E;
  margin-bottom: 8px;
  font-size: 18px;
  text-align: left;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 30px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #C59D5F;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(30px);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .service-grid, .category-grid, .package-grid {
    flex-direction: column;
  }
  
  .service-card, .category-card, .package-card {
    max-width: 100%;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .features-grid, .usp-grid, .event-types, .stats-grid, .values-list {
    flex-direction: column;
  }
  
  .feature, .usp-card, .event-card, .stat-card, .value-item {
    max-width: 100%;
  }
  
  .testimonial-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  .service-features {
    flex-direction: column;
  }
  
  .feature-box {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .content-wrapper {
    padding: 32px 24px;
  }
  
  .steps-grid, .link-grid {
    flex-direction: column;
  }
  
  .step-card, .link-card {
    max-width: 100%;
  }
  
  .contact-grid, .info-grid {
    flex-direction: column;
  }
  
  .contact-card, .info-card {
    max-width: 100%;
  }
  
  .cta-buttons, .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn, .hero-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .service-card, .category-card {
    flex: 1 1 45%;
  }
  
  .feature, .usp-card {
    flex: 1 1 45%;
  }
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent, #cookie-settings-modal {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .hero, .cta-banner, .cta-section {
    background: #f8f9fa;
    color: #1A1A2E;
  }
}