/* Base Styles */
:root {
  /* Light Mode Colors */
  --primary-color: #059669;
  --primary-dark: #047857;
  --primary-light: #10b981;
  --secondary-color: #0a2463;
  --secondary-dark: #061a4a;
  --text-color: #333;
  --text-light: #666;
  --white: #fff;
  --light-bg: #f8f9fa;
  --dark-bg: #0a2463;
  --border-color: #e5e7eb;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
  --radius-sm: 0.25rem;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;

  /* Card Colors */
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary-color: #1f2937;
  --secondary-dark: #111827;
  --text-color: #f9fafb;
  --text-light: #d1d5db;
  --white: #1f2937;
  --light-bg: #111827;
  --dark-bg: #000000;
  --border-color: #374151;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

  /* Background Colors */
  --bg-primary: #1f2937;
  --bg-secondary: #111827;
  --bg-tertiary: #374151;

  /* Card Colors */
  --card-bg: #1f2937;
  --card-border: #374151;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
}

.section-header.light h2,
.section-header.light p,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light h2::after {
    background-color: var(--white);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid var(--white);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.outline-btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.outline-btn:hover i {
    transform: translateX(5px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 1rem;
    
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 1rem;
    
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    
    
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.book-btn {
    margin-left: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.book-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hiking.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Kathmandu Hikes Section */
.kathmandu-hikes {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.hikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Advertisement Styles */
.ad-banner {
  padding: 2rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ad-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-placeholder {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--border-color));
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  min-height: 90px;
  width: 1500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.ad-placeholder:hover {
  border-color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
}

.ad-placeholder i {
  font-size: 2rem;
  opacity: 0.7;
}

.ad-placeholder p {
  font-weight: 600;
  margin: 0;
}

.ad-placeholder span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Advertisement Card in Grid */
.ad-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.ad-content-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ad-content-card .ad-placeholder {
  width: 100%;
  height: 250px;
  min-height: 250px;
}

/* Sidebar Advertisement */
.ad-sidebar {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.ad-content-sidebar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ad-content-sidebar .ad-placeholder {
  width: 100%;
  height: 400px;
  min-height: 400px;
}


.hike-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hike-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hike-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hike-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hike-card:hover .hike-img img {
    transform: scale(1.05);
}

.hike-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.hike-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hike-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.hike-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.hike-meta i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.hike-info p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.hike-details {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hike-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.hike-details i {
    color: var(--primary-color);
}

.hike-info .btn {
    margin-top: auto;
}

.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Banner */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("group_hike.jpg") no-repeat center center / cover;
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Destinations Section */
.destinations {
  padding: 5rem 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-img {
  height: 220px;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover .destination-img img {
  transform: scale(1.05);
}

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.destination-details {
  margin-bottom: 1.5rem;
}

.destination-details p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.destination-details i {
  color: var(--primary-color);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--card-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  padding: 1.5rem;
  color: var(--white);
  width: 100%;
}

.gallery-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.gallery-info p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.gallery-date {
  font-size: 0.75rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.5rem;
}

.gallery-more {
  text-align: center;
  margin-top: 3rem;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-light);
}

.modal-content {
  display: block;
  max-width: 80%;
  max-height: 80vh;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  border-radius: 5px;
}

.modal-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 1rem;
}

.modal-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-caption p {
  font-size: 1rem;
  opacity: 0.9;
}

.modal-caption span {
  font-size: 0.875rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.5rem;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
  transition: var(--transition);
  z-index: 2001;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-light);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 300px;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  scroll-snap-align: start;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-color);
  border-radius: var(--radius);
  z-index: -1;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)),
    url("logo.JPG") no-repeat center center / cover;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-secondary);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-light);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  color: var(--primary-light);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.social-links {
  margin-top: 3rem;
}

.social-links h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.social-links p {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
/* Social Media Icons */
.socials-container {
  display: flex;
  gap: 2vw;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.socials-container a {
  position: relative;
  background-color: white;
  padding: 1vw;
  border-radius: 50%;
  height: 10vw;
  width: 10vw;
  max-width: 70px;
  max-height: 70px;
  min-width: 50px;
  min-height: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  color: inherit;
}

.socials-container a i {
  font-size: min(4vw, 30px);
  transition: color 0.3s ease;
  color: inherit;
  position: relative;
}

.socials-container a::before {
  content: attr(data-social);
  position: absolute;
  color: white;
  font-size: 0.8rem;
  padding: 0.4em 1em;
  border-radius: 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-30px) rotate(25deg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  background-color: var(--accent-color);
  pointer-events: none;
  z-index: 10;
}

.socials-container a::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateY(0) rotate(25deg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.socials-container a:hover::before {
  transform: translateY(-65px) rotate(0);
  opacity: 1;
  visibility: visible;
}

.socials-container a:hover::after {
  transform: translateY(-42px) rotate(0);
  opacity: 1;
  visibility: visible;
}

.socials-container a.facebook i {
  color: #1877f2;
}
.socials-container a.instagram i {
  color: #e1306c;
}
.socials-container a.twitter i {
  color: #1da1f2;
}
.socials-container a.github i {
  color: #333333;
}
.socials-container a.linkedin i {
  color: #0a66c2;
}

.socials-container a.facebook::after {
  border-top: 10px solid #1877f2;
}
.socials-container a.instagram::after {
  border-top: 10px solid #e1306c;
}
.socials-container a.twitter::after {
  border-top: 10px solid #1da1f2;
}
.socials-container a.github::after {
  border-top: 10px solid #333333;
}
.socials-container a.linkedin::after {
  border-top: 10px solid #0a66c2;
}

.socials-container a.facebook:hover {
  background-color: #1877f2;
}
.socials-container a.instagram:hover {
  background-color: #e1306c;
}
.socials-container a.twitter:hover {
  background-color: #1da1f2;
}
.socials-container a.github:hover {
  background-color: #333333;
}
.socials-container a.linkedin:hover {
  background-color: #0a66c2;
}

.socials-container a:hover i {
  color: white;
}

.socials-container a.facebook::before {
  background-color: #1877f2;
}
.socials-container a.instagram::before {
  background-color: #e1306c;
}
.socials-container a.twitter::before {
  background-color: #1da1f2;
}
.socials-container a.github::before {
  background-color: #333333;
}
.socials-container a.linkedin::before {
  background-color: #0a66c2;
}
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .socials-container a {
      height: 10vw;
      width: 10vw;
      padding: 2vw;
    }
  
    .socials-container a i {
      font-size: 6vw;
    }
  
    .socials-container a::before {
      font-size: 1rem;
    }
  }
 
/* Footer */
footer {
  background-color: var(--secondary-dark);
  color: var(--white);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: auto;
  width: auto;
  margin-bottom: 1rem;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  cursor: zoom-out;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.footer-nav h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-contact i {
  color: var(--primary-light);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  height: 45px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  color: var(--text-color);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  width: 45px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-credit {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links, .book-btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hikes-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--card-bg);
  z-index: 1001;
  padding: 2rem;
  transform: translateX(-100%);
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-book-btn {
  margin-top: 2rem;
  width: 100%;
  margin-bottom: 1rem;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}
/* Upcoming Event Banner */
.upcoming-event-banner {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.upcoming-event-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://source.unsplash.com/random/1920x1080/?mountains,pattern") no-repeat center center / cover;
  opacity: 0.05;
  z-index: 0;
}

.event-banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.event-banner-info {
  flex: 1;
}

.event-banner-info h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-banner-info h3 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.event-banner-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.event-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-banner-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.event-banner-meta i {
  color: var(--primary-color);
}

.event-banner-countdown {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-banner-image {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.event-banner-image:hover {
  transform: rotate(0);
}

.event-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-banner-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
}

@media (max-width: 992px) {
    .event-banner-content {
        flex-direction: column-reverse;
    }
    
    .event-banner-image {
        width: 100%;
        height: 300px;
        transform: rotate(0);
    }
    
    .event-banner-info h3 {
        font-size: 2rem;
    }
    
    .event-banner-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .event-banner-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .event-banner-countdown {
        font-size: 1rem;
    }
    
    .event-banner-image {
        height: 250px;
    }
}


/* Enhanced Base Styles with Dark/Light Mode Support */
:root {
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;

  /* Card Colors */
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary-color: #1f2937;
  --secondary-dark: #111827;
  --text-color: #f9fafb;
  --text-light: #d1d5db;
  --white: #1f2937;
  --light-bg: #111827;
  --dark-bg: #000000;
  --border-color: #374151;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

  /* Background Colors */
  --bg-primary: #1f2937;
  --bg-secondary: #111827;
  --bg-tertiary: #374151;

  /* Card Colors */
  --card-bg: #1f2937;
  --card-border: #374151;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.theme-toggle-wrapper {
  position: relative;
  width: 60px;
  height: 30px;
  z-index: 101;
}

.theme-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #487d83;
  border-radius: 999px;
  width: 60px;
  height: 30px;
  cursor: pointer;
  padding: 0 8px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-toggle-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
}

.theme-toggle-icons i {
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-toggle-icons .sun {
  color: #fbc02d;
  transform: scale(0.8);
  opacity: 0;
}

.theme-toggle-icons .moon {
  color: #fff;
  transform: scale(0.8);
}

/* Dark mode styles */
[data-theme="dark"] .theme-toggle-label {
  background-color: #374151;
}

[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(30px);
  background-color: #fbc02d;
}

[data-theme="dark"] .theme-toggle-icons .sun {
  transform: scale(1);
  opacity: 1;
}

[data-theme="dark"] .theme-toggle-icons .moon {
  transform: scale(0.5);
  opacity: 0;
}

.search-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  transition: var(--transition, all 0.3s ease);

}

.search-btn:hover {
  background-color: var(--bg-tertiary);
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.search-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Dropdown Navigation Styles */
.nav-links .dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: var(--transition);
  border-radius: 0;
}

.dropdown-menu a:hover {
  background-color: var(--bg-secondary);
  color: var(--primary-color);
  padding-left: 1.25rem;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--card-border);
  border: none;
  margin: 0.5rem 0;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-tertiary);
    margin-top: 0.5rem;
    border-radius: var(--radius-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
  }

  .dropdown-menu a {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }

  .dropdown-menu a:hover {
    padding-left: 1.75rem;
  }
}

/* Cards */
.hike-card,
.destination-card,
.gallery-card,
.event-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--card-border);
}

.hike-card:hover,
.destination-card:hover,
.gallery-card:hover,
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-secondary);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* AI Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 6rem;
  right: 1.6rem;
  z-index: 1000;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  font-size: 1.1rem;
  margin: 0;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.message.bot {
  background-color: var(--bg-secondary);
  color: var(--text-color);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
}

.message.user {
  background-color: var(--primary-color);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.chatbot-input-container {
  padding: 1rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background-color: var(--bg-secondary);
  color: var(--text-color);
  font-size: 0.9rem;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.chatbot-send {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-send:hover {
  background-color: var(--primary-dark);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .footer-search-container {
    display: none;
  }
}

@media (max-width: 992px) {
  .hikes-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .event-banner-content {
    flex-direction: column-reverse;
  }

  .event-banner-image {
    width: 100%;
    height: 300px;
    transform: rotate(0);
  }

  .event-banner-info h3 {
    font-size: 2rem;
  }

  .event-banner-info p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .book-btn,
  .theme-toggle-wrapper,
  .footer-search-container {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hikes-grid {
    grid-template-columns: 1fr;
  }

  .hike-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .chatbot-window {
    width: 300px;
    height: 400px;
  }

  .container {
    padding: 0 1rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .event-banner-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .event-banner-countdown {
    font-size: 1rem;
  }

  .event-banner-image {
    height: 250px;
  }

  .ad-placeholder {
    width: 100%;
    min-height: 120px;
  }

  .ad-content-card .ad-placeholder,
  .ad-content-sidebar .ad-placeholder {
    height: 200px;
    min-height: 200px;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-tertiary);
    margin-top: 0.5rem;
    border-radius: var(--radius-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
  }

  .dropdown-menu a {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }

  .dropdown-menu a:hover {
    padding-left: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .chatbot-container {
    bottom: 100px;
    right: 30px;
  }

  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .chatbot-window {
    width: calc(100vw - 30px);
    height: 350px;
    right: -15px;
  }

  .gallery-filter {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 200px;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .socials-container a {
    height: 12vw;
    width: 12vw;
    padding: 2vw;
  }

  .socials-container a i {
    font-size: 6vw;
  }

  .socials-container a::before {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .theme-toggle-wrapper {
    width: 60px;
    height: 30px;
  }

  .theme-toggle-label {
    width: 60px;
    height: 30px;
  }

  .theme-toggle-thumb {
    width: 22px;
    height: 22px;
  }

  [data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(30px);
  }

  .ad-banner {
    padding: 1rem 0;
  }

  .ad-placeholder {
    padding: 1rem;
    min-height: 100px;
  }
}

/* Print Styles */
@media print {
  .chatbot-container,
  .theme-toggle-wrapper,
  .search-btn,
  .ad-banner,
  .ad-card,
  .ad-sidebar,
  header {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000000;
    --card-border: #000000;
  }

  [data-theme="dark"] {
    --border-color: #ffffff;
    --card-border: #ffffff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
