/* --- GLOBAL MODERN STYLES & ANIMATIONS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
footer {
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.97rem;
  color: #222;
  background: #fff;
  border-top: 1px solid #e3f2fd;
  font-family: 'Montserrat', Arial, sans-serif;
}
}
body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  animation: fadeIn 1s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
section, .package-card, .service-card, .blog-card, .contact-card, .itinerary-card, .connect-card {
  /* Remove animation hiding for itinerary cards */
  opacity: 1 !important;
  transform: none !important;
}

/* --- HEADER --- */
.main-header {
  width: 100%;
  background: var(--accent);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.7s;
}
@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 32px 18px 24px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 1px;
}
nav.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.main-nav a, .dropbtn {
  text-decoration: none;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition), background var(--transition);
  padding: 8px 16px;
  border-radius: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
nav.main-nav a.active, nav.main-nav a:hover, .dropbtn.active, .dropbtn:hover, .dropdown-content a:hover {
  color: var(--accent);
  background: var(--primary);
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none !important;
  position: absolute;
  background: var(--accent);
  min-width: 260px;
  box-shadow: var(--shadow);
  z-index: 10;
  left: 0;
  top: 110%;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  flex-direction: row;
  gap: 2.5rem;
  font-size: 1rem;
  animation: fadeIn 0.5s;
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex !important;
}
.dropbtn.active + .dropdown-content {
  display: none !important;
}

/* --- CHIPS --- */
.chips-dropdown {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  min-width: 320px;
  padding: 1.2rem 1.5rem;
}
.chip-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.chip-label {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
}
.chip {
  display: inline-block;
  background: #f7f7f7;
  color: var(--primary);
  border-radius: 16px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  margin: 0.1rem 0;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--primary);
}
.chip:hover {
  background: var(--primary);
  color: var(--accent);
}

/* --- BUTTONS --- */
.book-btn, .cta, button, .main-header .book-now-btn {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 32px;
  padding: 10px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.book-btn:hover, .cta:hover, button:hover, .main-header .book-now-btn:hover {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* --- BANNER CAROUSEL PROFESSIONAL OVERLAY --- */
.banner-carousel {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s;
}
.carousel-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  animation: fadeIn 1s;
}
.carousel-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0,0,0,0.25);
}
.carousel-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* --- MAIN SECTIONS --- */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
section {
  margin-bottom: 2.2rem; /* Reduced from 3.2rem for less gap */
}
.about-section h2,
.services-section h2,
.destinations-section h2,
.blogs-section h2,
.contact-section h2,
.packages-section h2,
.connect-section h2,
.itinerary-section h2,
.contact-hero h2,
.contact-form-section h3 {
  color: var(--primary) !important;
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
  text-align: center;
}

/* --- SERVICES --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.service-card {
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2.2rem 1.7rem;
  width: 270px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e6e6e6;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.service-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  color: var(--primary);
}

/* --- DESTINATIONS --- */
.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.destination-group {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 1.7rem 1.3rem;
  width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e6e6e6;
}
.destination-group h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.destination-group ul {
  list-style: disc inside;
  color: #444;
  font-size: 1.03rem;
  line-height: 1.7;
}

/* --- BLOGS --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.7rem 1.3rem;
  width: 360px;
  border: 1px solid #e6e6e6;
}
.blog-card h3,
.package-card h3,
.itinerary-card h3,
.destination-group h3 {
  color: var(--primary);
}
.blog-card ul {
  list-style: disc inside;
  color: #444;
  font-size: 1.03rem;
  line-height: 1.7;
}

/* --- CONTACT --- */
.contact-list {
  list-style: none;
  padding: 0;
  font-size: 1.13rem;
  color: #444;
  margin-top: 1.2rem;
}
.contact-list a {
  color: #007b7f;
  text-decoration: none;
  font-weight: 500;
}
.contact-list a:hover {
  text-decoration: underline;
  color: #e53935;
}

/* --- FOOTER --- */
footer {
  background: #fafafa;
  text-align: center;
  padding: 22px 0 14px 0;
  color: #888;
  font-size: 1.05rem;
  border-top: 1px solid #eee;
  margin-top: 36px;
  letter-spacing: 0.5px;
}

/* --- DESTINATION BAR SECTION --- */
.destination-bar-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
.destination-bars {
  display: flex;
  gap: 2.5rem;
}
.destination-bar {
  position: relative;
}
.dest-btn {
  background: #007b7f;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.dest-btn i {
  margin-left: 0.5rem;
}
.dest-btn:hover, .dest-btn.active {
  background: #e53935;
}
.dest-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  border-radius: 8px;
  z-index: 20;
  padding: 0.7rem 0.5rem;
  flex-direction: column;
  margin-top: 0.3rem;
}
.dest-dropdown a {
  display: block;
  color: #222;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.02rem;
  transition: background 0.2s, color 0.2s;
}
.dest-dropdown a:hover {
  background: #007b7f;
  color: #fff;
}

/* --- PACKAGES SECTION --- */
.packages-section {
  margin-bottom: 2.2rem; /* Match section gap */
}
.packages-section h2 {
  color: var(--primary) !important; /* Force black */
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.package-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.7rem 1.3rem;
  width: 340px;
  border: 1px solid #e6e6e6;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-card h3 {
  color: var(--primary);
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}
.package-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.package-card ul {
  list-style: disc inside;
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.package-card .cta {
  align-self: flex-start;
  background: #007b7f;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.package-card .cta:hover {
  background: #e53935;
}

/* --- ITINERARY SECTION --- */
.itinerary-section {
  margin-bottom: 2.2rem; /* Match section gap */
}
.itinerary-section h2 {
  color: var(--primary) !important;
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.itinerary-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  margin: 2rem 0 !important;
}
.itinerary-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.7rem 1.3rem;
  width: 340px;
  border: 1px solid #e6e6e6;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1 !important;
}
.itinerary-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: block;
}

/* --- CONNECT SECTION --- */
.connect-section {
  background: #f7f7f7;
  padding: 2.5rem 1rem 2rem 1rem;
  border-top: 1px solid #e6e6e6;
  text-align: center;
  margin-bottom: 2.2rem; /* Match section gap */
}
.connect-section h2 {
  color: var(--primary) !important;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  letter-spacing: 0.5px;
}
.connect-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.connect-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.2rem 2rem;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.08rem;
  color: #222;
  border: 1px solid #e6e6e6;
  justify-content: center;
}
.connect-card i {
  font-size: 1.5rem;
  color: #007b7f;
}
.connect-card a {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
}
.connect-card a:hover {
  text-decoration: underline;
}

/* --- CONTACT PAGE IMPROVEMENTS --- */
.contact-hero {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}
.contact-hero h2 {
  color: #007b7f;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.contact-hero p {
  color: #444;
  font-size: 1.1rem;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.2rem 2rem;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.08rem;
  color: #222;
  border: 1px solid #e6e6e6;
  justify-content: center;
}
.contact-card i {
  font-size: 1.5rem;
  color: #007b7f;
}
.contact-card a {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover {
  text-decoration: underline;
}
.contact-form-section {
  max-width: 420px;
  margin: 0 auto 2.5rem auto;
  background: #f7f7f7;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.contact-form-section h3 {
  color: #007b7f;
  margin-bottom: 1rem;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}
.contact-form button {
  background: #007b7f;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #e53935;
}
@media (max-width: 1200px) {
  .logo-nav {
    max-width: 98vw;
    padding: 10px 2vw;
  }
  main {
    max-width: 98vw;
    padding: 2rem 2vw;
  }
}
@media (max-width: 900px) {
  .logo-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px 0 10px;
  }
  nav {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }
  .tagline {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .banner-carousel, .carousel-slide {
    height: 40vh;
    min-height: 250px;
  }
  .carousel-title {
    font-size: 1.3rem;
    padding: 0.7rem 1.2rem;
  }
  .service-list, .destinations-list, .blog-list, .itinerary-list {
    flex-direction: column;
    align-items: center;
  }
  .destination-group, .blog-card, .itinerary-card {
    width: 95vw;
    max-width: 360px;
  }
  .package-list {
    flex-direction: column;
    align-items: center;
  }
  .package-card {
    width: 95vw;
    max-width: 340px;
  }
  .connect-list {
    flex-direction: column;
    align-items: center;
  }
  .connect-card {
    min-width: 180px;
    width: 95vw;
    max-width: 340px;
  }
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    min-width: 180px;
    width: 95vw;
    max-width: 340px;
  }
}
@media (max-width: 700px) {
  .destination-bars {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .logo-nav {
    padding: 8px 2vw;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .carousel-caption h2 {
    font-size: 1.1rem;
  }
  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.3rem 0.7rem;
  }
  .carousel-caption {
    padding: 0.7rem 0.7rem;
  }
}

/* --- ENSURE BLOGS SLIDER SCROLLS HORIZONTALLY ON INDEX PAGE --- */
.blogs-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}
.blogs-section .blog-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  max-width: 100vw;
  width: 100vw;
  min-width: 0;
  box-sizing: border-box;
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.blogs-section .blog-card {
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
  display: inline-flex;
}

/* --- REMOVE ITINERARY DEBUG STYLES FROM INDEX PAGE --- */
/* Only apply .itinerary-list and .itinerary-card debug/contrast styles to destination pages, not index */
/* If needed, use a more specific selector for destination pages, e.g. body.dest-page .itinerary-list */

/* --- ITINERARY CARD VISIBILITY & CONTRAST FIX (DESTINATION PAGES ONLY) --- */
.dest-page .itinerary-list, .dest-page .itinerary-card {
  background: #fff !important;
  color: #222 !important;
  border: 2px solid #0077c2 !important;
  box-shadow: 0 2px 12px rgba(0,119,194,0.08) !important;
}
.dest-page .itinerary-card h3, .dest-page .itinerary-card p {
  color: #0077c2 !important;
}
.dest-page .itinerary-card img {
  border: 2px solid #0077c2 !important;
}

/* --- REMOVE ANIMATION HIDING FOR ITINERARY CARDS ON DESTINATION PAGES --- */
.dest-page .itinerary-card, .dest-page .itinerary-list {
  opacity: 1 !important;
  transform: none !important;
  display: flex !important;
  visibility: visible !important;
}

/* --- BLOG SLIDER STYLES --- */
.blog-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2.5rem auto;
  max-width: 1200px;
  position: relative;
}
.blog-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  max-width: 900px;
}
.blog-card {
  min-width: 320px;
  max-width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.7rem 1.3rem;
  border: 1px solid #e6e6e6;
  flex: 0 0 auto;
}
.blog-slider-btn {
  background: #0077c2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.blog-slider-btn:hover {
  background: #005fa3;
}
.blog-slider-container .blog-list {
  flex: 1 1 auto;
  min-width: 0;
}

/* --- PROFESSIONAL BLOG GRID ALIGNMENT FOR BLOGS PAGE --- */
.blogs-section {
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1.5rem;
}
.blogs-section h2 {
  text-align: center;
  margin-bottom: 0.7rem;
}
.blogs-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #444;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem auto 2.5rem auto;
  max-width: 1100px;
  align-items: stretch;
  justify-items: center;
}
.blog-grid .blog-card {
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.7rem 1.3rem;
  border: 1px solid #e6e6e6;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* --- ADJUST BLOGS PAGE MARGIN FOR HEADER --- */
.blogs-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

/* --- MODERN BLOG CARD THEME FOR BLOGS PAGE --- */
.blogs-section {
  background: linear-gradient(135deg, #f2f3f5 60%, #e3f0ff 100%);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,119,194,0.08);
  padding-bottom: 2.5rem;
}
.blogs-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #0077c2 30%, #00c6fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.7rem;
  letter-spacing: 1.5px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 1200px;
  align-items: stretch;
  justify-items: center;
}
.blog-grid .blog-card {
  min-width: 0;
  max-width: 100%;
  background: linear-gradient(120deg, #fff 80%, #e3f0ff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,119,194,0.10);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  border: 1.5px solid #b3e0ff;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.blog-grid .blog-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,119,194,0.18);
  border-color: #0077c2;
}
.blog-grid .blog-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0077c2;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.blog-grid .blog-card ul {
  color: #222;
  font-size: 1.08rem;
  margin-left: 1.1rem;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blogs-section {
    padding: 0 0.5rem 2rem 0.5rem;
  }
}

/* --- Destinations floating menu vertical alignment and color fix --- */
.destinations-menu {
  display: none;
  position: absolute;
  top: 100%; /* Align directly below the icon/text */
  left: 0;
  right: auto;
  margin-top: 0.5em;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  padding: 0.7rem 1.2rem;
  z-index: 1000;
  min-width: 180px;
  text-align: left;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.destinations-menu.active {
  display: flex;
}
.destinations-menu a {
  display: block;
  margin: 0;
  color: #111 !important;
  font-weight: 600;
  font-size: 1.13rem;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.5em 1.2em 0.5em 0.7em;
  background: none;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.destinations-menu a:hover {
  background: #e6f0fa;
  color: #0077c2 !important;
}
/* Ensure menu appears on hover of icon or menu itself */
#destinations-icon:hover + .destinations-menu,
.destinations-menu:hover {
  display: flex;
}
/* Responsive: adjust menu width for mobile */
@media (max-width: 700px) {
  .destinations-menu {
    min-width: 120px;
    padding: 0.7rem 0.7rem;
  }
  .destinations-menu a {
    font-size: 1rem;
    padding: 0.5em 0.7em;
  }
}