/* ============================================
   CRYSTALLINE DOME - ELEGANT CLASSIC DESIGN
   Mobile-First Responsive CSS with Flexbox
   ============================================ */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a2332;
  margin-bottom: 20px;
}

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

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

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #D97D54;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

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

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

/* === HEADER === */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2d5c4;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.08);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #2c3e50;
  padding: 8px 16px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: #2C5F8D;
  border-bottom-color: #D97D54;
}

.header-cta {
  display: none;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1f4466;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #2C5F8D;
  border-radius: 4px;
  color: #2C5F8D;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #2C5F8D;
  color: #ffffff;
}

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

.mobile-nav a {
  padding: 14px 16px;
  color: #2c3e50;
  font-size: 16px;
  font-family: 'Georgia', serif;
  border-bottom: 1px solid #f0e6d8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F4E8D8;
  color: #2C5F8D;
  padding-left: 24px;
}

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

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

.btn-primary:hover {
  background-color: #1f4466;
  border-color: #1f4466;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

/* === HERO SECTION === */
.hero, .page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4466 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-content, .page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero h1, .page-hero h1 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-subtitle, .page-hero p {
  color: #F4E8D8;
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 24px;
}

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

.trust-badge, .price-highlight {
  background-color: rgba(244, 232, 216, 0.2);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  color: #F4E8D8;
  margin-top: 20px;
}

.breadcrumb {
  color: #F4E8D8;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #F4E8D8;
}

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

/* === SECTIONS === */
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

/* === GRID LAYOUTS === */
.benefits-grid, .services-grid, .tours-grid, .features-grid,
.includes-grid, .info-grid, .pricing-grid, .packages-grid,
.stats-grid, .process-steps, .partner-categories, .chapters-grid,
.guidelines-list, .methods-grid, .dept-grid, .faq-list,
.locations-list, .content-grid, .cta-grid, .values-grid,
.differentiators, .initiatives-grid, .impact-stats, .locations-grid,
.event-highlights, .timeline, .mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card, .service-card, .tour-card, .feature-card,
.include-item, .info-card, .pricing-card, .package-card,
.stat-card, .step, .category, .chapter-card, .guideline-item,
.method-card, .dept-card, .location-item, .content-card,
.value-card, .diff-item, .initiative, .impact-item, .location-card,
.event-item, .milestone, .mission-item {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e2d5c4;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.06);
  transition: all 0.3s ease;
}

.benefit-card:hover, .service-card:hover, .tour-card:hover,
.feature-card:hover, .pricing-card:hover {
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.12);
  transform: translateY(-4px);
  border-color: #D97D54;
}

.pricing-card.featured {
  border: 2px solid #2C5F8D;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #D97D54;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* === CARD CONTENT === */
.service-card h3, .tour-card h3, .benefit-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.service-card p, .tour-card p {
  margin-bottom: 12px;
}

.service-price, .tour-price, .price, .package-price {
  color: #D97D54;
  font-size: 22px;
  font-weight: 700;
  margin-top: 16px;
  font-family: 'Georgia', serif;
}

.tour-duration, .service-meta, .tour-meta {
  color: #7a8a9d;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 12px;
}

/* === FEATURES LIST === */
.features-list, .benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features-list li, .benefits-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #4a5568;
}

.features-list li:before, .benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F8D;
  font-weight: 700;
  font-size: 18px;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #F4E8D8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
  font-weight: 600;
  color: #2C5F8D;
  font-style: normal;
  font-size: 15px;
}

.rating {
  color: #D97D54;
  font-size: 18px;
  margin-top: 12px;
}

.rating-overview, .satisfaction-rate, .trust-indicators,
.satisfaction, .impact-metric {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: #5a6c7d;
  font-style: italic;
}

/* === STATS === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.stat-card, .stat {
  flex: 1 1 calc(50% - 10px);
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2d5c4;
}

.stat-card strong, .stat strong {
  display: block;
  font-size: 36px;
  color: #2C5F8D;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.stat-card span, .stat span {
  color: #5a6c7d;
  font-size: 14px;
}

/* === FAQ === */
.faq {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #D97D54;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* === CTA SECTIONS === */
.cta-section, .cta-final {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4466 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.cta-section h2, .cta-final h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p, .cta-final p {
  color: #F4E8D8;
  font-size: 18px;
  margin-bottom: 24px;
}

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

.contact-info {
  margin-top: 24px;
  color: #F4E8D8;
  font-size: 15px;
}

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

.trust-badges span {
  background-color: rgba(244, 232, 216, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #F4E8D8;
}

/* === FOOTER === */
.site-footer {
  background-color: #1a2332;
  color: #c7d3e0;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-column h4 {
  color: #F4E8D8;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

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

.footer-column a {
  color: #c7d3e0;
  transition: color 0.3s ease;
}

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

.footer-column p {
  color: #c7d3e0;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(231, 221, 205, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-legal a {
  color: #c7d3e0;
  font-size: 14px;
}

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

.copyright {
  color: #8a9ba8;
  font-size: 14px;
  text-align: center;
}

/* === LEGAL PAGES === */
.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2d5c4;
}

.content-wrapper h2 {
  color: #2C5F8D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: #4a5568;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  margin-left: 24px;
}

.last-updated {
  color: #7a8a9d;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4466 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.thank-you-content h1 {
  color: #ffffff;
}

.subtitle {
  color: #F4E8D8;
  font-size: 18px;
}

.confirmation-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #4CAF50;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.1);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.steps .step {
  padding: 16px;
  background-color: #F4E8D8;
  border-left: 4px solid #2C5F8D;
  border-radius: 4px;
}

.email-note, .note {
  background-color: #F4E8D8;
  padding: 16px;
  border-radius: 4px;
  margin-top: 24px;
  font-size: 15px;
  color: #4a5568;
}

/* === CONTACT FORM INFO === */
.form-info {
  background-color: #F4E8D8;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  margin-top: 24px;
}

.form-info p {
  margin-bottom: 12px;
  color: #2c3e50;
}

/* === STORY & TIMELINE === */
.story-content {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e2d5c4;
  margin-top: 24px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid #2C5F8D;
}

.milestone {
  padding: 16px;
  background-color: #F4E8D8;
  border-radius: 4px;
  position: relative;
}

.milestone:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #D97D54;
  border-radius: 50%;
  border: 3px solid #ffffff;
}

.milestone strong {
  color: #2C5F8D;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

/* === EXCLUDE NOTE === */
.exclude-note {
  background-color: #fff5e6;
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid #D97D54;
  margin-top: 24px;
  font-size: 14px;
  color: #4a5568;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2332;
  color: #c7d3e0;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 100%;
  margin-bottom: 12px;
  color: #c7d3e0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.cookie-buttons .btn {
  flex: 1 1 calc(50% - 6px);
  padding: 12px 20px;
  font-size: 14px;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 35, 50, 0.9);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px;
  background-color: #F4E8D8;
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.cookie-toggle.active {
  background-color: #2C5F8D;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #4a5568;
}

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

/* === DESKTOP STYLES === */
@media (min-width: 768px) {
  /* Typography */
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  
  /* Header */
  .mobile-menu-toggle { display: none; }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .header-cta {
    display: flex;
    gap: 12px;
  }
  
  /* Hero */
  .hero h1 { font-size: 48px; }
  .hero-subtitle { font-size: 20px; }
  
  /* Grid layouts - 2 columns */
  .benefit-card, .service-card, .tour-card, .feature-card,
  .include-item, .info-card, .method-card, .dept-card,
  .content-card, .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Grid layouts - 3 columns */
  .pricing-card, .package-card, .chapter-card, .location-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  /* Stats - 4 columns */
  .stat-card {
    flex: 1 1 calc(25% - 15px);
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 calc(25% - 24px);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  /* Cookie Banner */
  .cookie-banner p {
    flex: 1 1 auto;
    margin-bottom: 0;
  }
  
  .cookie-buttons {
    width: auto;
    flex: 0 0 auto;
  }
  
  .cookie-buttons .btn {
    flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  /* Typography */
  h1 { font-size: 56px; }
  .hero h1 { font-size: 56px; }
  
  /* Container */
  .container {
    padding: 0 40px;
  }
  
  /* Hero */
  .hero, .page-hero {
    padding: 80px 40px;
  }
  
  /* Section spacing */
  .section {
    padding: 60px 40px;
    margin-bottom: 80px;
  }
  
  /* Grid layouts - maintain proper spacing */
  .benefits-grid, .services-grid, .tours-grid {
    gap: 32px;
  }
}

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

.hero-content, .benefit-card, .service-card, .testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* === PRINT STYLES === */
@media print {
  .site-header, .mobile-menu, .cookie-banner, .cookie-modal,
  .hero-cta, .cta-section, .cta-buttons, .site-footer { display: none; }
}