:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --accent-color: #ffc107;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: var(--bg-light);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header & Navigation */
header {
  background-color: var(--text-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.search-bar input {
  width: 200px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  border-right: none;
  font-size: 0.9rem;
}

.search-bar button {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--primary-color);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-bar button:hover {
  background-color: #0056b3;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

/* Countdown Timer */
.countdown {
  margin-top: 2rem;
}

.countdown p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.time-unit {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
  min-width: 70px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.time-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Destinations Grid */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.card {
  background: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-content {
  padding: 1.5rem;
}

.card-content p {
  margin-bottom: 1rem;
}

.weather-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.card-btn:hover {
  background-color: #0056b3;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ccc;
  font-size: 1.2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 5;
}

.favorite-btn:hover {
  transform: scale(1.1);
  color: #ff6b6b;
}

.favorite-btn.active {
  color: #ff6b6b;
}

/* Filter Section */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-container input[type="range"] {
  width: 200px;
  margin-left: 10px;
  vertical-align: middle;
  padding: 0;
  border: none;
}

.filter-container select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-left: 10px;
}

/* Currency Converter */
.currency-converter {
  text-align: center;
  margin-bottom: 2rem;
}

.currency-converter select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-left: 10px;
}

.packages-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.packages-controls .currency-converter {
  margin-bottom: 0;
}

.duration-sort select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-left: 10px;
}

.testimonials {
  background-color: #e9ecef;
  padding: 4rem 0;
}

.testimonials .card-content p {
  font-style: italic;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-slide {
  display: none;
  animation: fade 0.5s;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* About Page */
.about-content {
  padding: 2rem 0;
}

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

.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/island-getaway.png');
}

.destinations-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/european-tour.png');
}

.packages-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/tokyo.png');
}

.favorites-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/newyork.png');
}

.favorites-controls {
  text-align: center;
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding-top: 2rem;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.team-img:hover {
  transform: scale(1.1);
}

.team-card {
  cursor: pointer;
}

.team-modal-content {
  text-align: center;
}

.team-modal-img-large {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-modal-role {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--text-light);
  border: 4px solid var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--text-light);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0%;
  }
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: var(--secondary-color);
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: var(--text-light);
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item summary {
  padding: 1.25rem;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--primary-color);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#char-count {
  text-align: right;
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.map-container {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.newsletter-section {
  margin-bottom: 2rem;
}

.newsletter-section h3 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  width: auto;
  flex: 1;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #0056b3;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .search-bar {
    margin-top: 1rem;
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }
}

/* Back to Top Button */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 1.5rem;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#back-to-top:hover {
  background-color: #0056b3;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--text-light);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--text-dark);
  text-decoration: none;
}

/* Confirmation Page */
.confirmation-content {
  text-align: center;
  padding: 5rem 1rem;
  min-height: 50vh;
}

.confirmation-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.confirmation-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Blog Post Page */
.blog-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/asian-adventure.png');
}

.blog-post-content {
  padding: 0 0 3rem 0;
  max-width: 100%;
}

.blog-meta {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.blog-meta span {
  margin-right: 1.5rem;
}

.blog-featured-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-text h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.blog-text blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Blog Layout & Sidebar */
.blog-layout {
  display: flex;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  align-items: flex-start;
}

.blog-main {
  flex: 2;
  min-width: 0;
}

.blog-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  margin-bottom: 0.5rem;
}

.sidebar-list a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s;
}

.sidebar-list a:hover {
  color: var(--primary-color);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #eee;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: background 0.3s;
}

.tag:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.sidebar-newsletter {
  flex-direction: column;
}

.sidebar-newsletter input,
.sidebar-newsletter button {
  width: 100%;
}

@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }
  
  .blog-sidebar {
    width: 100%;
    position: static;
  }
}

/* Comments Section */
.comments-section {
  max-width: 100%;
  margin-bottom: 3rem;
}

.comment-list {
  margin-bottom: 3rem;
}

.comment-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.comment-avatar {
  font-size: 3rem;
  color: #ccc;
}

.comment-meta {
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: bold;
  margin-right: 10px;
}

.comment-date {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Share Buttons */
.share-buttons {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}

.share-buttons span {
  font-weight: bold;
  margin-right: 1rem;
}

.share-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.share-btn:hover {
  opacity: 0.8;
}

.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.linkedin { background-color: #0077b5; }
.share-btn.pinterest { background-color: #bd081c; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .btn {
  margin-top: 0;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* 404 Page */
.error-page {
  text-align: center;
  padding: 5rem 1rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-page h1 {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

/* Loading Spinner */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-light);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: transparent;
  z-index: 1001;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 0%;
  transition: width 0.1s ease-out;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
}

.whatsapp-tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.9rem;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Gallery Filter */
.gallery-filter {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 2rem;
}

/* Gallery Section */
.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 80vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Read Next Box */
.read-next-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  display: none;
}

.read-next-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-next-box a {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.read-next-box a:hover {
  color: var(--primary-color);
}

/* Print Button */
.print-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.print-btn:hover {
  background-color: #5a6268;
}

@media print {
  header, footer, .blog-sidebar, .comments-section, .share-buttons, .read-next-box, .btn, #back-to-top, #loader, .whatsapp-float, .cookie-banner {
    display: none !important;
  }
  .blog-layout {
    display: block;
  }
}