/* ============================
   Root Variables & Basic Setup
   ============================ */
:root {
  /* Colors */
  --primary-color: #4C86E0;
  --primary-dark: #3A6AC2;
  --secondary-color: #F17623;
  --secondary-dark: #D86518;
  --accent-color: #46C9B6;
  --accent-dark: #38AFA0;
  --neutral-100: #FFFFFF;
  --neutral-200: #F5F7FA;
  --neutral-300: #E4E9F2;
  --neutral-400: #CBD5E1;
  --neutral-500: #94A3B8;
  --neutral-600: #64748B;
  --neutral-700: #475569;
  --neutral-800: #27364B;
  --neutral-900: #121E2D;
  --success: #2ECC71;
  --warning: #F1C40F;
  --danger: #E74C3C;
  --info: #3498DB;
  
  /* Typography */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
}

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

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

body {
  font-family: var(--body-font);
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral-100);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ============================
   Typography
   ============================ */
.display-1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
}

.display-2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.display-3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.display-4 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 400;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
  border-radius: 2px;
  position: relative;
}

.title-underline::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: var(--secondary-color);
  right: -20px;
  border-radius: 2px;
}

/* ============================
   Buttons & Form Elements
   ============================ */
.btn {
  position: relative;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: none;
  border: none;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
}

.btn:hover:before {
  transform: translateX(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--neutral-100);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--neutral-100);
}

.btn-outline-light {
  border: 2px solid var(--neutral-100);
  color: var(--neutral-100);
}

.btn-outline-light:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.form-control, .form-select {
  font-family: var(--body-font);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-400);
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 134, 224, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--neutral-800);
}

textarea.form-control {
  min-height: 150px;
}

/* ============================
   Layout & Containers
   ============================ */
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding: var(--section-padding);
}

/* ============================
   Utility Classes
   ============================ */
.text-white {
  color: var(--neutral-100) !important;
}

.text-muted {
  color: var(--neutral-600) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--neutral-200) !important;
}

.bg-dark {
  background-color: var(--neutral-900) !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

/* Animation utilities */
.animation-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animation-slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.animation-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.animation-fade-in.active {
  opacity: 1;
}

.animation-delay-1 {
  transition-delay: 0.1s;
}

.animation-delay-2 {
  transition-delay: 0.2s;
}

.animation-delay-3 {
  transition-delay: 0.3s;
}

/* ============================
   Header & Navigation
   ============================ */
header {
  transition: all var(--transition-medium);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 60px;
  transition: all var(--transition-fast);
}

.scrolled .navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: var(--neutral-800);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all var(--transition-fast);
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

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

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================
   Hero Section
   ============================ */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-100);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================
   About Section
   ============================ */
.about-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-container img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-slow);
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.progress-container {
  margin-top: 2rem;
}

.progress-item {
  margin-bottom: 1.25rem;
}

.progress-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--neutral-800);
}

.progress {
  height: 0.5rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--neutral-300);
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: width var(--transition-slow);
}

/* ============================
   Attractions Section
   ============================ */
.attraction-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  border: none;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

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

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

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content .card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-content .card-text {
  font-size: 0.95rem;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

/* ============================
   Events Section
   ============================ */
.event-card {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  border: none;
}

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

.event-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  line-height: 1;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.event-date .month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Custom Slider */
.custom-slider {
  position: relative;
}

.slider-container {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-bottom: 1.5rem;
}

.slide-item {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  transition: transform var(--transition-medium);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--neutral-400);
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
}

/* ============================
   Testimonials/Clientele Section
   ============================ */
.testimonial-card {
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  border: none;
  background-color: var(--neutral-100);
}

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

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-800);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* ============================
   Resources Section
   ============================ */
.resource-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: none;
}

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

/* ============================
   Blog/News Section
   ============================ */
.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: none;
}

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

.blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--neutral-100);
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-card .btn {
  margin-top: 1rem;
}

/* "Read more" links styling */
a.btn-outline-primary {
  position: relative;
  font-weight: 500;
  text-transform: none;
  border-radius: var(--border-radius-md);
  padding: 0.5rem 1.25rem;
  transition: all var(--transition-medium);
}

a.btn-outline-primary:after {
  content: "→";
  position: relative;
  top: 0;
  margin-left: 0.5rem;
  opacity: 0;
  transition: all var(--transition-medium);
}

a.btn-outline-primary:hover:after {
  opacity: 1;
  margin-left: 0.75rem;
}

/* ============================
   Contact Section
   ============================ */
.contact-info {
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-map {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-form-container {
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Icon placeholders for contact items */
.icon-location:before {
  content: '📍';
}

.icon-phone:before {
  content: '📞';
}

.icon-email:before {
  content: '✉️';
}

.icon-time:before {
  content: '🕒';
}

/* ============================
   Newsletter Section
   ============================ */
.newsletter-form {
  display: flex;
}

.newsletter-form input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
}

.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: nowrap;
}

/* ============================
   Footer Section
   ============================ */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: all var(--transition-fast);
  position: relative;
}

.footer-links a:hover {
  color: var(--neutral-100);
  padding-left: 5px;
}

.footer-links a:before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all var(--transition-medium);
}

.footer-links a:hover:before {
  opacity: 1;
  left: -8px;
}

.footer .small {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

/* Social media links in footer */
.footer-links a[href*="facebook.com"],
.footer-links a[href*="instagram.com"],
.footer-links a[href*="twitter.com"] {
  display: inline-flex;
  align-items: center;
}

.footer-links a[href*="facebook.com"]:before,
.footer-links a[href*="instagram.com"]:before,
.footer-links a[href*="twitter.com"]:before {
  content: '';
}

.footer-links a[href*="facebook.com"]::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" fill="%23CBD5E1"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>');
  background-repeat: no-repeat;
}

.footer-links a[href*="instagram.com"]::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%23CBD5E1"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
  background-repeat: no-repeat;
}

.footer-links a[href*="twitter.com"]::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23CBD5E1"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
  background-repeat: no-repeat;
}

.footer-links a[href*="facebook.com"]:hover::after,
.footer-links a[href*="instagram.com"]:hover::after,
.footer-links a[href*="twitter.com"]:hover::after {
  transform: scale(1.1);
}

/* ============================
   Success Page
   ============================ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-100);
  padding: 2rem;
  text-align: center;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
}

/* ============================
   Privacy & Terms Pages
   ============================ */
.content-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  margin-bottom: 2rem;
}

.content-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p {
  margin-bottom: 1.5rem;
}

/* ============================
   Responsive Adjustments
   ============================ */
@media (min-width: 992px) {
  .slide-item {
    flex: 0 0 33.333%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .slide-item {
    flex: 0 0 50%;
  }
  
  .container {
    max-width: 95%;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-100);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .navbar-nav .nav-link {
    border-bottom: 1px solid var(--neutral-300);
    padding: 0.75rem 1rem;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .nav-link:after {
    display: none;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius-md);
    margin-bottom: 0.5rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius-md);
  }
  
  .contact-form-container, 
  .contact-info {
    padding: 1.5rem;
  }
  
  .event-date {
    top: 10px;
    right: 10px;
    padding: 0.5rem;
  }
  
  .event-date .day {
    font-size: 1.25rem;
  }
}

/* ============================
   Print Styles
   ============================ */
@media print {
  header, footer, #newsletter, #contact {
    display: none;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .card, .contact-info, .contact-form-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .bg-light, .bg-primary, .bg-secondary, .bg-dark {
    background-color: transparent !important;
    color: #000 !important;
  }
}
*{
  opacity: 1 !important;
}