/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;  
    width: 90%;  
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #014D40; 
}

/* Navigation */
.navbar {
    background: #014D40; 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease; 
}

.navbar.scrolled {
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative; 
    transition: padding 0.3s ease; 
}

.logo {
    position: relative; 
    width: 130px; 
    height: 70px; 
    flex-shrink: 0; 
    transition: width 0.3s ease; 
}

.logo-container {
    position: absolute; 
    left: 20px; 
    bottom: -60px; 
    z-index: 2; 
    transition: all 0.3s ease; 
}

/* Circular logo styles - static 120px */
.circular-logo {
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DAA520; 
    /* box-shadow: none; */ /* No shadow in static - removes the "line" effect */
    /* Alternative: Subtle lift without downward line (uncomment if you want faint depth): */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */ /* Very light, minimal blur/offset */
    display: block;
    transition: all 0.3s ease; 
}

/* NEW: Company name styles - Hidden on desktop, shown on mobile */
.company-name {
    display: none; 
    position: relative; 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: #fff; 
    text-align: center; 
    white-space: nowrap; 
    z-index: 2; 
    line-height: 1.2; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); 
    transition: none; 
    padding: 10px 0; 
}

/* Scrolled state: Shrink to 90px */
.navbar.scrolled .logo {
    width: 100px; 
}

.navbar.scrolled .logo-container {
    left: 20px; 
    bottom: -45px; 
}

.navbar.scrolled .circular-logo {
    width: 90px; 
    height: 90px;
    border: 2px solid #DAA520; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto; 
    transition: gap 0.3s ease; 
}

.nav-menu a {
    text-decoration: none;
    color: #fff; 
    font-family: 'Playfair Display', serif; 
    font-weight: 500;                       
    letter-spacing: 0.3px;
    text-transform: none;
    transition: color 0.3s, letter-spacing 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #DAA520;       
    letter-spacing: 1px;  
}


.nav-menu a:hover, .nav-menu a.active {
    color: #DAA520; 
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff; 
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 70px; 
    border-top: none;
    box-shadow: none;
    padding-top: 0; 
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    border-top: none;
    box-shadow: none;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 1rem;
    color: #DAA520;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
.hero {
    height: 50vh; 
    padding: 2rem 1rem; 
}
.hero h2 {
    font-size: 2em; 
}
.hero p {
    font-size: 1em;
}
.tour-grid {
    grid-template-columns: 1fr; 
    gap: 1rem;
    padding: 1rem;
}
.tour-card {
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease;
}
.tour-card:hover {
    transform: translateY(-4px); 
}
.testimonial {
    padding: 1.5rem; 
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.footer-section {
    text-align: center; 
}
.social-links img {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.social-links img:hover {
    transform: scale(1.1); 
}
}

/* Rest of hero styles unchanged */
.cta-button {
    display: inline-block;
    background: #DAA520;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #b8941e;
}

@media (max-width: 768px) {
.cta-button, .details-btn, #clear-filters, .tab-link, .close {
    padding: 1.2rem 2rem; 
    font-size: 1.1em;
    min-height: 48px; 
    border-radius: 8px; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover, .details-btn:hover, #clear-filters:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}
.tab-link {
    padding: 12px 16px; 
    margin: 0 4px; 
}
}

/* USP Section */
.usp {
    padding: 4rem 0;
    background: white;
}

.usp h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
}

   .usp h2::after {
     content: '';
     width: 80px;  
     height: 4px;  
     background: #DAA520;  
     display: block;
     margin: 1rem auto 0;  
     border-radius: 2px;  
   }
   
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usp-item {
    text-align: center;
    padding: 1rem;
}

.usp-item h3 {
    font-size: 1.5em;
    margin-bottom: 1rem;
    color: #DAA520;
}

/* Story Content: Improved typography and layout */
.story-content {
    text-align: left; 
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.story-content h3 {
    text-align: center;
    font-weight: 700;
    color: #014D40;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: none;
    position: relative;
}

.story-content h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #DAA520;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: justify; 
    text-justify: inter-word; 
}

/* Mobile: Keep left-aligned for readability (justified can look messy on small screens) */
@media (max-width: 768px) {
    .story-content p {
        text-align: left; 
    }
}

/* Featured Carousel */
.featured {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;  
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    width: 300%;  
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 33.333%; 
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;  
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    border-radius: 5px;
}

.carousel-caption h3 {
    font-size: 1.5em;
    margin-bottom: 0.5rem;
    color: #DAA520;
}

.carousel-caption a {
    color: #DAA520;
    text-decoration: none;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 2em;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel {
    overflow: hidden;  
}

/* als */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #DAA520;
    font-weight: bold;
}

/* Mobile adjustments for testimonial section */
@media (max-width: 768px) {
    .testimonials {
        padding: 2.5rem 1rem;
    }

    .testimonials h2 {
        font-size: 1.8em;
        margin-bottom: 2rem;
    }

    .testimonial {
        font-size: 1em;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        font-size: 0.95em;
    }

    .testimonials h2 {
        font-size: 1.5em;
    }
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: #014D40;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: white;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
}

.newsletter button {
    background: #DAA520;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #b8941e;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #DAA520;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #DAA520;
}

/* NEW FIX: Center the "Follow Us" title in the second footer section (above social icons) */
.footer-section:nth-of-type(2) {
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    display: block; 
    margin: 0 auto 10px auto; 
    width: 100px; 
    height: auto; 
    border-radius: 50%; 
}

.social-links {
    display: flex;
    flex-direction: row; 
    gap: 1rem; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    align-items: center; 
    justify-content: center; 
}

.social-links li {
    margin: 0; 
    flex-shrink: 0; 
}

.social-links a {
    display: inline-block;
    transition: transform 0.2s ease; 
}

.social-links a:hover,
.social-links a:active {
    transform: scale(1.05); 
}

.social-links img,
.social-links i {
    width: 32px; 
    height: 32px;
    display: block;
    border-radius: 50%; 
}

.social-links {
    flex-direction: row; 
    gap: 0.75rem; 
    justify-content: center; 
}

.social-links img,
.social-links i {
    width: 28px; 
    height: 28px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-bottom a {
    color: #DAA520;
}

.filters {
  background: #f8f9fa;
  padding: 2rem 1rem;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.filters h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #333;
}

/* Flex layout for filters */
.filters form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Dropdown & button style */
.filters select,
.filters button {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  min-width: 160px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover + focus effect */
.filters select:focus,
.filters button:hover {
  border-color: #3f51b5;
  box-shadow: 0 0 5px rgba(63, 81, 181, 0.3);
}

/* Clear button style */
#clear-filters {
  background: linear-gradient(90deg, #43cea2, #185a9d);
  color: #fff;
  font-weight: 600;
  border: none;
}

#clear-filters:hover {
  opacity: 0.9;
}

/* Mobile friendly layout */
@media (max-width: 768px) {
  .filters form {
    flex-direction: column;
    align-items: center;
  }

  .filters select,
  .filters button {
    width: 100%;
    max-width: 320px;
  }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
    gap: 2rem;  
    padding: 2rem;  
    max-width: 100%;  
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    max-width: 100%;  
    padding: 0; 
}

.image-wrapper {
  position: relative;
  width: 100%;
  display: block;
  line-height: 0; 
}

.image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0; 
}

/* Real underline that hugs image edge */
.image-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg,#43cea2, #185a9d);
  border-radius: 0;
  transition: width 0.4s ease;
  margin: 0;
  padding: 0;
}

/* Animate fully across */
.tour-card:hover .image-underline {
  width: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 200px;  
}

.tour-info h3 {
    margin-bottom: 0.5rem;
}

.tour-info p {
    flex-grow: 1;
    overflow: hidden;  
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;  
    -webkit-box-orient: vertical;
    line-clamp: 3;  
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-info .button-group {
    display: flex;
    justify-content: center;  
    gap: 10px;
    margin-top: 1rem;  
    width: 100%;
}

.price {
    font-size: 1.5em;
    color: #DAA520;
    font-weight: bold;
}

.tour-detail {
    margin-top: 4rem;
    padding: 2rem 0;
}

.accordion {
    background: white;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.accordion-header {
    padding: 1rem;
    cursor: pointer;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.pricing-table th {
    background: #014D40;
    color: white;
}

/* Modal Styles - FIXED OVERFLOW FOR ITINERARY - ENHANCED SPACING */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto; 
    overflow-x: hidden; 
}

.modal-content {
  overflow-y: auto;
}

.modal-content h2, .modal-content img {
    margin-bottom: 2rem; 
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1rem; 
    max-height: 80vh; 
  }
  .tab-nav {
    gap: 0.5rem; 
  }
  .tab-link {
    font-size: 12px; 
  }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #aaa;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #DAA520;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input, .modal select, .modal textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal button {
    background: #DAA520;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* FIXED: Global Details Button (Restored - No Changes) */
/* Enhanced Primary Button: View Details (Gradient + Icon + Effects) */
.details-btn {
    padding: 14px 28px; 
    border: 2px solid transparent; 
    border-radius: 10px; 
    font-family: 'Playfair Display', serif; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    text-decoration: none;
    background: linear-gradient(135deg, #014D40 0%, #006666 100%); 
    color: white;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3); 
    position: relative; 
    overflow: hidden; 
    margin: 0; 
    animation: pulse 2s infinite; 
}

.details-btn:hover {
    background: linear-gradient(135deg, #006666 0%, #004d4d 100%); 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.4); 
    border-color: #20dac1; 
}

.details-btn:hover::after {
    margin-left: 12px; 
}

.details-btn:active {
    transform: translateY(-1px) scale(0.98); 
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.3);
}

.details-btn:focus {
    outline: none; 
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.5); 
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(0, 128, 128, 0.5); }
}

/* FIXED: Global Itinerary & Gallery Styles (Restored & Enhanced - No Stacking Impact) */
.itinerary-container {
    margin: 1.5rem 0;
}

.itinerary-day {
    background: #f8f9fa;
    margin-bottom: 1.5rem;
    border-left: 4px solid #DAA520;
    border-radius: 5px;
    overflow: hidden;
}

.day-header {
    background: #f8f9fa;
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s;
    pointer-events: auto;
    touch-action: manipulation;
    word-break: break-word;
}

.day-header:hover,
.day-header:active {
    background: #e9ecef;
}

.day-title {
    font-weight: bold;
    font-size: 18px;
    color: #014D40;
    flex: 1;
}

.toggle-symbol {
    font-size: 20px;
    font-weight: bold;
    color: #DAA520;
    transition: color 0.3s;
    pointer-events: auto;
    margin-left: 1rem;
}

.day-details {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, display 0.3s ease;
    background: white;
    padding: 0 1.2rem;
}

.day-details.expanded {
    display: block;
    max-height: none;
    padding: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* Itinerary Details Bullets (Solid Circle Style) */
.itinerary-details {
    list-style-type: disc; 
    margin: 10px 0 0 20px; 
    padding: 0; 
    color: #555; 
}

.itinerary-details li {
    margin-bottom: 8px; 
    line-height: 1.5; 
    font-size: 0.95em; 
    padding: 2px 0; 
}

/* Integrate with existing day-details expansion */
.day-details.expanded .itinerary-details {
    margin-top: 10px;
}

/* Phase 3: Quiz Styles */
.quiz {
    background: #f8f9fa;
    padding: 4rem 0;
}

.quiz-step {
    display: none;
    text-align: center;
}

.quiz-step.active {
    display: block;
}

.quiz-progress {
    background: #ddd;
    height: 5px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.quiz-progress-bar {
    background: #DAA520;
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s;
    width: 0%;
}

.quiz-result {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

/* Infographic Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-number {
    background: #DAA520;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Contact Map - Enhanced */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    max-width: 100%; 
}

.map-container iframe {
    display: block; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 300px; 
        margin: 1rem 0;
    }
}

.faq {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h4 {
    cursor: pointer;
    color: #014D40;
}

/* Exit Intent Pop-up (Uses Modal) */
@media (min-width: 768px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        pointer-events: none;
    }
}

/* Testimonials Carousel - Desktop & Mobile Friendly */
.testimonials-section {
  text-align: center;
  margin: 3rem auto;
  padding: 0 1rem;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0c0c2e;
  margin-bottom: 2rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-inner {
  display: flex;
  transition: transform 0.7s ease-in-out;
  width: 100%;
}

.testimonials-carousel .carousel-inner {
    display: flex;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.carousel-item {
  min-width: 100%;
  flex-shrink: 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.testimonial {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: #DAA520;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Bilingual Testimonial Styling */
.testimonial p em {
  display: block;
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Carousel Buttons (Desktop) */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(218, 165, 32, 0.9);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #20dacb;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials-section h2 {
    font-size: 1.5rem;
  }

  .carousel-item {
    padding: 1.2rem 1.2rem 2rem; 
  }

  .testimonial {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 0.3rem;
  }

  .testimonial cite {
    font-size: 0.85rem;
  }

  /* Move arrows slightly outside text area */
  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    background: rgba(218, 165, 32, 0.85);
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .carousel-prev {
    left: 25%;
  }

  .carousel-next {
    right: 25%;
  }
}

/* Small phones (very narrow screens) */
@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 1.3rem;
  }

  .testimonial {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .carousel-prev,
  .carousel-next {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    bottom: 15px;
  }

  .carousel-prev {
    left: 22%;
  }

  .carousel-next {
    right: 22%;
  }
}

/* ===== MOBILE-ONLY: modern, elegant testimonial cards ===== */
@media (max-width: 768px) {
  .testimonials-carousel .carousel-prev,
  .testimonials-carousel .carousel-next {
    display: none;
  }

  .testimonials-carousel {
    overflow: visible;
    background: transparent;
    box-shadow: none;
    margin: 0 1rem;
  }

  .testimonials-carousel .carousel-inner {
    display: block;
    transform: none;
  }

  .testimonials-carousel .carousel-item {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonials-carousel .carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .testimonial {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    position: relative;
  }

  .testimonial::before {
    content: "“";
    font-size: 2rem;
    color: #DAA520;
    position: absolute;
    top: -8px;
    left: -6px;
    opacity: 0.3;
  }

  .testimonial cite {
    display: block;
    text-align: right;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #DAA520;
    font-weight: 600;
  }

  .testimonials h2,
  .testimonials-section h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111;
    position: relative;
  }

  .testimonials h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #DAA520;
    display: block;
    margin: 0.6rem auto 0;
    border-radius: 2px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; 
    left: 40px;   
    background-color: #25d366;  
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;  
    transition: all 0.3s ease;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);  
    background-color: #128c7e;
}

/* Consolidated Mobile Adjustments - Two-Row Navbar (Static Company Name, White Hamburger Row w/ Teal Symbol) + All Other Mobile Tweaks */
@media (max-width: 768px) {
    .navbar {
        height: auto; 
        min-height: 140px; 
        transition: all 0.3s ease; 
        background: #014D40; 
        border-bottom-width: 3px; 
    }
    
    .nav-container {
        flex-direction: column; 
        height: auto; 
        padding: 10px 20px; 
        justify-content: space-between; 
        align-items: stretch; 
        gap: 5px; 
    }
    
    /* Top Row (Header 1): Company Name - Full Width, Centered, STATIC */
    .logo {
        order: 1;
        width: 100%; 
        height: auto; 
        flex-shrink: 0; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        padding: 10px 0; 
        position: relative; 
        background: inherit; 
    }
    
    .logo-container {
        position: relative; 
        width: 100%; 
        height: auto; 
        display: flex;
        align-items: center;
        justify-content: center; 
        top: 0; 
        left: 0; 
        bottom: auto; 
    }
    
    /* HIDE LOGO IMAGE COMPLETELY ON MOBILE */
    .circular-logo {
        display: none; 
    }
    
    /* SHOW COMPANY NAME IN TOP ROW - STATIC, NO HOVER/SCROLL EFFECTS */
    .company-name {
        display: block; 
        font-size: 16px; 
        max-width: 100%; 
        padding: 8px 10px; 
        margin: 0; 
        transition: none; 
    }
    
    /* Nav Menu: Hidden off-screen (slide-out, teal bg) */
    .nav-menu {
        order: 2; 
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: #014D40; 
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: none; 
        padding: 2rem 0;
        z-index: 999;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Bottom Row (Header 2): Hamburger - Very Right, WHITE BG, TEAL SYMBOL */
    .hamburger {
        order: 3; 
        display: flex;
        align-self: flex-end;
        justify-content: flex-end; 
        width: 100%; 
        height: auto;
        margin: 0; 
        padding: 10px 20px; 
        background: #fff;
        border-radius: 0 0 5px 5px; 
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
                background: #014D40; 
        margin: 3px 0;
        transition: 0.3s; 
    }

    /* FIXED: Mobile Enhancements for Tabs & Modal (Horizontal Scrollable Tabs - No Stacking) - Higher Specificity */
    .modal .tab-nav {
        flex-direction: row;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
        border-radius: 5px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        gap: 0.25rem;
        padding: 0 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
    }
    
    .modal .tab-nav::-webkit-scrollbar {
        display: none;
    }
    
    .modal .tab-nav li {
        flex: none;
    }
    
       .modal .tab-link {
        border-radius: 6px;
        margin: 0;
        border-bottom: none;
        min-width: 80px;
        flex: 0 0 auto;
        text-align: center;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
        scroll-snap-align: start;
    }
    
    .modal .tab-link.active, 
    .modal .tab-link:hover {
        background: #014D40;
        color: white;
        border-bottom-color: transparent;
    }
    
    .modal .tab-content {
        padding: 1.5rem;
        margin: 0;
        word-break: break-word;
    }

    .modal .itinerary-container {
        margin: 1rem 0;
    }
    
    .modal .itinerary-day {
        margin-bottom: 1rem;
    }
    
    .modal .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .modal .gallery-grid img {
        height: 200px;
    }
    
    .modal .day-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .modal .day-details {
        padding: 1rem;
    }

    .modal .itinerary-details {
        margin-left: 10px;
    }
    
    .modal .itinerary-details li {
        margin-bottom: 6px;
        font-size: 0.9em;
    }

    .tour-info .button-group {
        justify-content: stretch;
        margin-top: 1rem;
    }
    
    .details-btn {
        max-width: none;
        padding: 16px 24px;
        font-size: 18px;
        border-radius: 12px;
        animation: none; 
        margin: 0;
    }

    .details-btn::after {
        font-size: 16px;
    }

    .details-btn:hover::after {
        margin-left: 10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Scrolled State: Compact overall navbar (company name stays static) */
    .navbar.scrolled {
        min-height: 120px; 
    }
    
    .navbar.scrolled .nav-container {
        padding: 5px 20px; 
        gap: 3px; 
    }
    
    .navbar.scrolled .logo {
        padding: 8px 0; 
    }
    
    .navbar.scrolled .logo-container {
        height: auto;
    }

    .navbar.scrolled .hamburger {
        padding: 8px 20px; /
    }
    
    .navbar.scrolled .nav-menu {
        top: 120px; 
    }
    
    /* FIXED: Hamburger to X Animation (teal lines stay teal) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Adjustment: Offset for taller mobile navbar */
    .hero {
        margin-top: 140px; 
    }

    /* Other Existing Mobile Styles (Merged - No Duplicates) */
    .hero h2 {
        font-size: 2em;
    }

    .filters form {
        flex-direction: column;
        align-items: center;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }

    /* FIXED: Modal Tweaks for Mobile Consistency (Merged) - Higher Specificity */
    .modal .modal-content {
        margin: 5% auto;
        width: 98%;
        padding: 2rem;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 85vh;
        box-sizing: border-box;
    }
}

/* Nested Small-Screen Adjustments (<480px) - NO WHATSAPP DUPLICATION */
@media (max-width: 480px) {
    .navbar {
        min-height: 120px; 
    }
    
    .nav-container {
        padding: 8px 15px; 
    }
    
    .company-name {
        font-size: 14px; 
        white-space: normal; 
        padding: 6px 8px; 
        transition: none; 
    }
    
    .nav-menu {
        top: 120px; 
    }
    
    .navbar.scrolled {
        min-height: 100px;
    }
    
    .navbar.scrolled .nav-menu {
        top: 100px;
    }
    
    /* COMPANY NAME: STATIC - NO SCROLL CHANGES (no rules needed) */
    .hero {
        margin-top: 120px; 
    }
    
    .hamburger {
        padding: 8px 15px; 
        background: #fff; 
    }
    
    .hamburger span {
        background: #014D40; 
    }
}

/* FIXED: Global Tab Styles - Horizontal Layout for Modals (No Stacking on Desktop/Tablet) - Higher Specificity, No !important */
.modal .tab-nav {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center;
    list-style: none; 
    margin: 0 0 2rem 0; 
    padding: 0;
    gap: 0.5rem; 
    border-bottom: 2px solid #ddd; 
    overflow-x: visible; 
    overflow-y: hidden;
    white-space: nowrap; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: thin; 
    -ms-overflow-style: none; 
    box-sizing: border-box;
}

.modal .tab-nav::-webkit-scrollbar {
    height: 4px; 
    display: none; 
}

.modal .tab-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal .tab-nav::-webkit-scrollbar-thumb {
    background: #014D40; 
    border-radius: 2px;
}

/* Tab Links: Horizontal Buttons (Global) - Higher Specificity */
.modal .tab-link {
    display: inline-block; 
    padding: 12px 20px; 
    margin: 0; 
    background: #f8f9fa; 
    color: #333; 
    text-decoration: none;
    border: none;
    border-radius: 8px 8px 0 0; 
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease; 
    white-space: nowrap; 
    flex-shrink: 0; 
    min-width: 100px; 
    text-align: center;
    border-bottom: 2px solid transparent; 
}

.modal .tab-link:hover,
.modal .tab-link.active {
    background: #014D40; 
    color: #fff; 
    border-bottom-color: #014D40; 
}

/* Tab Content: Global (No Changes to Layout) - Higher Specificity */
.modal .tab-content {
    display: none; 
    padding: 2rem; 
    margin: 0;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px; 
    background: #fff;
    word-break: break-word; 
    box-sizing: border-box;
}

.modal .tab-content.active {
    display: block; 
}

/* Hide on very small screens if needed, but keep for mobile - WhatsApp Float Adjustment */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float img { 
        width: 40px; 
        height: 40px; 
    }
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr; 
        gap: 1rem;  
        padding: 1rem; 
    }
    
    .tour-card img {
        height: 150px;  
    }
}

@media (max-width: 480px) {
    .tour-grid {
        gap: 0.5rem;  
    }
    
    .tour-card {
        box-shadow: none;  
    }
}

@media (min-width: 1025px) {
    .tour-grid {
        gap: 3rem;  
    }
}

.tour-grid {
    overflow: hidden;  
}

/* === FEATURED DESTINATIONS - Optimized Smaller Cards === */
.featured {
  background: linear-gradient(to bottom, #fff, #f8f9fa);
  padding: 5rem 0;
  text-align: center;
  overflow-x: hidden;
}

.featured h2 {
  font-size: 2.8em;
  margin-bottom: 3rem;
  color: #014D40;
  position: relative;
}

.featured h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #DAA520;
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* === Wrapper === */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* === Featured Slider === */
.featured-slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s ease;
  will-change: transform;
  margin: 0 -1rem;
}

/* Cards (Desktop Default) */
.destination-card {
  flex: 0 0 28%; 
  box-sizing: border-box;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  margin: 0 1rem; 
}

.destination-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Overlay */
.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(24, 17, 60, 0.9), rgba(24, 17, 60, 0.3));
  color: #fff;
  padding: 1.6rem;
  text-align: left;
  border-radius: 0 0 20px 20px;
}

.destination-overlay h3 {
  font-size: 1.4em; 
  margin-bottom: 0.4rem;
  color: #DAA520;
}

.destination-overlay p {
  font-size: 0.9em;
  margin-bottom: 0.8rem;
}

.destination-overlay .details-btn {
  background: #DAA520;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.destination-overlay .details-btn:hover {
  background: #b8941e;
}

/* Line effect for overlay */
.destination-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;        
  left: 0;
  width: 0;
  height: 3px;      
  background: #DAA520; 
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Show line on PC hover */
.destination-card:hover .destination-overlay::after {
  width: 100%;
}


/* Pagination */
.featured-pagination {
  text-align: center;
  margin-top: 1.5rem;
}

.featured-pagination .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.featured-pagination .dot.active {
  background: #DAA520;
}

/* Tablet */
@media (max-width: 991px) {
  .destination-card {
    flex: 0 0 46%;
    margin: 0 0.5rem;
  }

  .destination-card img {
    height: 280px;
  }
}

/* === Mobile (Fixed card size + proper slide behavior) === */
@media (max-width: 600px) {
  .featured {
    overflow-x: hidden;
    padding: 3rem 0;
  }

  .slider-wrapper {
    overflow: hidden;
    padding: 0;
  }

  .featured-slider {
    display: flex;
    transition: transform 0.6s ease;
    margin: 0;
    padding: 0 0.5rem;
  }

  .destination-card {
    flex: 0 0 85%; 
    margin: 0 0.5rem;
    border-radius: 15px;
  }

  .destination-card img {
    height: 200px; 
  }

  .featured h2 {
    font-size: 1.8em;
  }

  .featured-pagination {
    margin-top: 1rem;
  }

  .featured-pagination .dot {
    width: 10px;
    height: 10px;
  }
}

/* === Mobile (Fixed card size + swipe) === */
@media (max-width: 600px) {
  .featured {
    padding: 3rem 0;
  }

  .slider-wrapper {
    overflow: hidden;
    padding: 0;
  }

  .featured-slider {
    display: flex;
    overflow-x: auto;           
    scroll-behavior: smooth;    
    -webkit-overflow-scrolling: touch; 
    margin: 0;
    padding: 0 0.5rem;
  }

  .featured-slider::-webkit-scrollbar {
    display: none; 
  }

  .destination-card {
    flex: 0 0 85%; 
    margin: 0 0.5rem;
    border-radius: 15px;
  }

  .destination-card img {
    height: 200px; 
  }

  .featured h2 {
    font-size: 1.8em;
  }

  .featured-pagination {
    display: none; 
    margin-top: 1rem;
  }
}

/* Pagination Dots for Testimonials */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0 1.5rem;
}

.carousel-pagination .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(218, 165, 32, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-pagination .dot.active {
  background-color: #DAA520;
  transform: scale(1.2);
}

.carousel-pagination .dot:hover {
  background-color: #ccc;
}

.custom-carousel {
  position: relative;
  overflow: visible; 
  padding-bottom: 50px; 
}

.carousel-pagination {
  position: absolute;   
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

/* Mobile pagination tweak */
@media (max-width: 768px) {
  .carousel-pagination {
    margin-top: 0.5rem;
  }

  .carousel-pagination .dot {
    width: 8px;
    height: 8px;
  }
}

/* === Testimonials Carousel Fix === */
.custom-carousel,
.custom-carousel-inner,
.custom-carousel-item {
  all: unset;
  display: block;
}

.custom-carousel-inner {
  position: relative;
  overflow: hidden;
}

.custom-carousel-item {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.custom-carousel-item.active {
  display: block;
  opacity: 1;
}

/* Testimonials section general look */
.testimonials {
  background: #f8f9fa;
  padding: 5rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5em;
  color: #014D40;
  margin-bottom: 2rem;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-size: 1.1em;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  color: #DAA520;
  font-weight: 600;
}

/* Pagination dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0 0;
}

.carousel-pagination .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(218, 165, 32, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-pagination .dot.active {
  background-color: #DAA520;
  transform: scale(1.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .carousel-pagination .dot {
    width: 8px;
    height: 8px;
  }
}

/* === Mobile Navigation Dropdown Fix === */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  /* Hide normal menu */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 10px 10px;
  }

  /* Show menu when hamburger active */
  .nav-menu.active {
    display: flex;
    animation: dropdownFade 0.3s ease;
  }

  /* Menu links style */
  .nav-menu li {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1.5rem;
  }

  .nav-menu li a {
    color: #014D40;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .nav-menu li a:hover {
    color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 6px;
  }

  /* Hamburger stays visible on mobile */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  @keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.hamburger.active + .nav-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Vision & Mission */
.vision-mission {
    padding: 4rem 0;
    background: white;
}

.vision-mission h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
    color: #014D40;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vm-item {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vm-item:hover {
    transform: translateY(-5px);
}

.vm-item i {
    font-size: 3em;
    color: #DAA520;
    margin-bottom: 1rem;
}

.vm-item h3 {
    color: #014D40;
    margin-bottom: 1rem;
}

/* Milestones */
.milestones {
    padding: 4rem 0;
    background: white;
}

.milestones h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
    color: #014D40;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #DAA520;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #DAA520;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    margin-left: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-year {
    font-weight: bold;
    color: #014D40;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .vm-grid {
    flex-direction: column;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 40px;
    text-align: left;
  }
}

/* Enhanced Vision & Mission: Subtle icon styling (builds on existing .vm-item i) */
.vision-mission .vm-item i {
    display: inline-block !important;
    font-size: 3em;
    color: #DAA520;
    margin-bottom: 1rem;
    opacity: 0.8;  
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vision-mission .vm-item:hover i {
    opacity: 1;  
    transform: scale(1.05);  
}

/* Enhanced Milestones: Prettier appearance with gradients, shadows, and fade-in animation */
.milestones {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);  
}

.milestones h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5em;
    color: #014D40;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #DAA520, #b8941e);  
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    opacity: 0; 
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;  
    animation-delay: calc(var(--item-index, 0) * 0.2s);  
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #DAA520;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3); 
}

.timeline-content {
    background: linear-gradient(135deg, #f9f9f9, #ffffff); 
    padding: 2rem;
    border-radius: 15px;
    margin-left: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);  
}

.timeline-marker i {
    color: white;
    font-size: 1.5em; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

.timeline-content {
    background: linear-gradient(135deg, #ffffff, #f9f9f9); 
    border: 1px solid #DAA520; 
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.2); 
    border-radius: 20px; 
}
.timeline-year {
    color: #DAA520;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); 
}

.timeline-year {
    font-weight: bold;
    color: #014D40;
    margin-bottom: 0.5rem;
}
.timeline-content {
    margin: 0 auto; 
    max-width: 500px; 
    text-align: center; 
}

/* Keyframe for fade-in animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments for enhanced sections */
@media (max-width: 768px) {
    .vision-mission .vm-item i {
        font-size: 2.5em;  
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 40px;
        text-align: left;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
