* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}
.logo-image {
    height: 5rem;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: green;
    letter-spacing: -0.5px;
}
.logo-subtitle {
    font-size: 0.8rem;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #4b5563;
    margin: 5px 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                opacity 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .logo-image {
        height: 4.1rem;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 6rem 2rem;
        flex-direction: column;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--i));
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        display: none;
    }
}
.map-section {
    padding: 60px 20px;
    background: #f8fafc;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.section-title {
    color: #1e3a8a;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.section-subtitle {
    color: #64748b;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 5px;
}

.location-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.map-container {
    flex: 1;
    min-width: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.office-info {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: clamp(15px, 4vw, 30px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.info-title {
    color: #1e3a8a;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: nowrap;
    width: 100%;
}

.info-icon {
    background: #eff6ff;
    padding: clamp(8px, 2vw, 12px);
    border-radius: 8px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 3vw, 1.2rem);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.info-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.info-text {
    color: #64748b;
    line-height: 1.5;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    word-wrap: break-word;
}

.contact-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: clamp(10px, 3vw, 12px) clamp(20px, 4vw, 25px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 10px;
    }

    .map-container iframe {
        height: 350px;
    }

    .location-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .office-info {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }

    .map-container,
    .office-info {
        min-width: 250px;
        margin: 0 auto;
    }

    .info-item {
        gap: 10px;
    }

    .contact-btn {
        width: 100%;
    }
}
.contact-section1 {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header1 {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.section-title1 {
    color: #1e3a8a;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle1 {
    color: #64748b;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container1 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info1 {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-card1 {
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.info-title1 {
    color: #1e3a8a;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.info-list1 {
    list-style: none;
}

.info-item1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.info-item1:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon1 {
    background: #eff6ff;
    padding: 12px;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text1 {
    color: #64748b;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.form-container {
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #334155;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.3s ease;
    background: #f8fafc;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
}

.submit-btn {
    background: #2563eb;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .contact-section1 {
        padding: 40px 15px;
    }

    .info-card1, 
    .form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section1 {
        padding: 30px 10px;
    }
    .contact-info1,
    .contact-form {
        min-width: 250px;
    }
}
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: #fff;
    width: 100%;
    padding: 50px 15px 20px;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
  }

  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-about,
  .footer-contact {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .footer-about:hover,
  .footer-contact:hover {
    transform: translateY(-5px);
  }

  .footer-about h3,
  .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-about h3::after,
  .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
  }

  .footer-about p {
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-size: 15px;
  }

  .contact-list {
    list-style: none;
  }

  .contact-list li {
    color: #f0f0f0;
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .contact-list li i {
    color: #4CAF50;
    min-width: 20px;
  }

  .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .social-links a {
    color: #fff;
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background: #4CAF50;
    transform: translateY(-3px);
  }

  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
  }

  @media screen and (max-width: 600px) {
    .footer {
      padding: 40px 12px 15px;
    }

    .footer-container {
      flex-direction: column;
      gap: 30px;
    }

    .footer-about,
    .footer-contact {
      min-width: 100%;
      text-align: center;
    }

    .footer-about h3::after,
    .footer-contact h3::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .contact-list li {
      justify-content: center;
      text-align: left;
    }

    .social-links {
      justify-content: center;
    }

    .footer-bottom {
      margin-top: 30px;
    }
  }

  @media screen and (max-width: 320px) {
    .footer {
      padding: 30px 10px 15px;
    }

    .footer-about,
    .footer-contact {
      padding: 20px 15px;
    }

    .footer-about h3,
    .footer-contact h3 {
      font-size: 18px;
    }

    .footer-about p,
    .contact-list li {
      font-size: 14px;
    }

    .social-links a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }

    .footer-bottom {
      font-size: 12px;
    }
  }
  :root {
    --primary: #2A4834;
    --secondary: #4CAF50;
    --text: #333;
    --bg: #f9f9f9;
}
.faq-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #288732;
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text);
    opacity: 0.8;
}

.accordion {
    list-style: none;
}

.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-button {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--primary);
    font-weight: 600;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1rem;
        margin: 1rem;
    }

    .accordion-button {
        padding: 1.2rem;
    }

    .accordion-content-inner {
        padding: 0 1.2rem 1.2rem;
    }
}

.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    color: var(--secondary);
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--text);
    opacity: 0.8;
}
/* reviews-styles.css */
.reviews-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px;
}

.review-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.9rem;
    color: #718096;
}

.rating {
    font-size: 1.25rem;
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;  /* Show first 6 lines */
    -webkit-box-orient: vertical;
    position: relative;
    margin-bottom: 10px;
}

/* Add "Read More" functionality */
.review-text.expanded {
    -webkit-line-clamp: unset;
}

/* Add fade effect at the bottom of truncated text */
.review-text:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, transparent, white);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-image {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        padding: 10px;
        margin: 20px auto;
    }

    .review-card {
        padding: 15px;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .rating {
        font-size: 1.1rem;
    }
}

/* Add some animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-card {
    animation: fadeIn 0.5s ease-out forwards;
}
.reviews-container h2{
    text-align: center;
       margin-bottom: 2rem;
       color: #288732;
     font-size: 2.6rem;
   }
/* Add this JavaScript to handle "Read More" functionality */
.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.destination-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.destination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.destination-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-item:hover img {
    transform: scale(1.05);
}

.destination-info {
    padding: 20px;
}

.destination-info h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.destination-info p {
    font-size: 0.95rem;
    color: #7f8c8d;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
}

.modal-body {
    margin-top: 20px;
}

.modal h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal h3 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.overview, .badges, .hotels {
    margin-bottom: 30px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotels ul {
    list-style-type: none;
}

.hotels li {
    margin-bottom: 10px;
}

.hotels a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotels a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media screen and (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .modal h2 {
        font-size: 1.6rem;
    }

    .modal h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 400px) {
    .destination-info h2 {
        font-size: 1.2rem;
    }

    .destination-info p {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

@media screen and (max-width: 280px) {
    .container2 {
        padding: 10px;
    }

    .destination-item {
        min-width: 0;
    }

    .destination-info {
        padding: 15px;
    }

    .destination-info h2 {
        font-size: 1.1rem;
    }

    .destination-info p {
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 15px;
    }

    .modal h2 {
        font-size: 1.4rem;
    }

    .modal h3 {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}
/* Main container styles */
.Packages-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}.carousel-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #333;
}/* Carousel structure */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
  padding: 1rem;
}/* Carousel items */
.carousel-item {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: calc(33.333% - 1.33rem);
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}.carousel-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}.carousel-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}.carousel-info p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}.carousel-info .price {
  font-size: 1.25rem;
  color: #2c5282;
  font-weight: 600;
}.stars {
  color: #f6b93b;
  letter-spacing: 2px;
}/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}.left-btn {
  left: 1rem;
}.right-btn {
  right: 1rem;
}.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}.explore-more{
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}.explore-more:hover {
  background-color: #d10707;
}
/* Responsive design */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }.carousel-info h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }.carousel-heading {
    font-size: 2rem;
  }.carousel-info {
    padding: 1rem;
  }.carousel-item img {
    height: 200px;
  }.carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .Packages-wrapper {
    padding: 1rem 0.5rem;
  }.carousel-heading {
    font-size: 1.75rem;
  }.carousel-info h3 {
    font-size: 1.1rem;
  }
}
/* Tour Showcase Modal */
.tour-showcase {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.showcase-container {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase.active {
    display: block;
}

.tour-showcase.active .showcase-container {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.showcase-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.showcase-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0 8px;
}

.showcase-close:hover {
    transform: rotate(90deg);
}

/* Navigation */
.showcase-nav {
    display: flex;
    gap: 10px;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.showcase-nav-btn {
    padding: 12px 24px;
    border: none;
    background: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.showcase-nav-btn.active {
    background: #1a2a6c;
    color: white;
}

/* Content Sections */
.showcase-sections {
    padding: 30px;
}

.showcase-section {
    display: none;
}

.showcase-section.active {
    display: block;
}
/* Accordion Styles */
.accordion-item2 {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header2 {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header2:hover {
    background: #e9ecef;
}

.accordion-header2::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-item2.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item2.active .accordion-content {
    max-height: 500px;
}

.accordion-content2 ul {
    padding: 20px;
    margin: 0;
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
/* Booking Form */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-groupp {
    margin-bottom: 20px;
}

.form-groupp label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-groupp input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-groupp input:focus {
    border-color: #1a2a6c;
    outline: none;
}

.booking-submit {
    width: 100%;
    padding: 15px;
    background: #1a2a6c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.booking-submit:hover {
    background: #2a3a7c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container {
        margin: 15px auto;
        width: 95%;
    }

    .showcase-header h2 {
        font-size: 1.4rem;
    }

    .showcase-nav {
        flex-wrap: wrap;
        padding: 15px;
    }

    .showcase-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .showcase-sections {
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showcase-header {
        padding: 15px;
    }

    .showcase-nav-btn {
        flex: 1 1 calc(50% - 5px);
        text-align: center;
        padding: 8px;
    }
}
 .pinnacle-showcase {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background-color: #000;
        }

        .ethereal-gallery {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .vista-frame {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .vista-frame.illuminated {
            opacity: 1;
            transform: scale(1);
        }

        .vista-frame__panorama {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.95);
        }

        .mystic-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.6) 40%,
                rgba(0,0,0,0.2) 100%
            );
            z-index: 2;
        }

        .saga-chronicle {
            position: relative;
            max-width: 90%;
            width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 40px);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ethereal-headline {
            font-family: 'Arial', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: clamp(20px, 3vw, 40px);
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
            line-height: 1.1;
            letter-spacing: -0.02em;
            transform: translateX(-3px);
        }

        .mystical-narrative {
            font-family: 'Arial', sans-serif;
            font-size: clamp(1.1rem, 2.2vw, 1.6rem);
            color: rgba(255,255,255,0.9);
            margin-bottom: clamp(30px, 5vw, 50px);
            max-width: 650px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            line-height: 1.6;
        }

        .odyssey-portal {
            display: inline-flex;
            align-items: center;
            padding: clamp(15px, 2vw, 20px) clamp(30px, 4vw, 40px);
            background: linear-gradient(45deg, #ff0000, #ff4444);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.6vw, 1.1rem);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
        }

        .odyssey-portal:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 6px 30px rgba(255, 0, 0, 0.4);
        }

        .chronicle-icon {
            margin-right: 12px;
            width: clamp(22px, 2.2vw, 26px);
            height: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .celestial-navigation {
            position: absolute;
            bottom: clamp(30px, 5vw, 50px);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: clamp(10px, 1.5vw, 15px);
            z-index: 3;
        }

        .celestial-marker {
            width: clamp(8px, 1.2vw, 12px);
            height: clamp(8px, 1.2vw, 12px);
            border: 2px solid rgba(255,255,255,0.7);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(4px);
        }

        .celestial-marker.radiant {
            background: #ffffff;
            border-color: #ffffff;
            transform: scale(1.2);
        }

        @media screen and (max-width: 768px) {
            .pinnacle-showcase {
                min-height: 550px;
            }

            .mystic-overlay {
                background: linear-gradient(
                    180deg,
                    rgba(0,0,0,0.4) 0%,
                    rgba(0,0,0,0.8) 70%
                );
            }

            .saga-chronicle {
                text-align: center;
                justify-content: flex-end;
                padding-bottom: clamp(80px, 15vh, 120px);
            }

            .mystical-narrative {
                margin-left: auto;
                margin-right: auto;
            }

            .ethereal-headline {
                transform: none;
            }
        }

        @media screen and (max-width: 480px) {
            .pinnacle-showcase {
                min-height: 500px;
            }

            .odyssey-portal {
                width: 100%;
                justify-content: center;
            }
        }

        @media screen and (max-width: 320px) {
            .saga-chronicle {
                padding-bottom: clamp(60px, 12vh, 90px);
            }
        }
         /* Previous styles remain, adding new animation classes */
         .ethereal-headline {
            opacity: 0;
            transform: translateX(-50px);
        }

        .ethereal-headline.descend-reveal {
            animation: revealFromLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .mystical-narrative {
            opacity: 0;
            transform: translateY(30px);
        }

        .mystical-narrative.ascend-reveal {
            animation: revealFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .odyssey-portal {
            opacity: 0;
            transform: translateX(30px);
        }

        .odyssey-portal.emerge-reveal {
            animation: revealFromRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
        }

        @keyframes revealFromLeft {
            to {
                opacity: 1;
                transform: translateX(-3px);
            }
        }

        @keyframes revealFromBottom {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes revealFromRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media screen and (max-width: 768px) {
            @keyframes revealFromLeft {
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }
        .skyline-controls {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%) translateX(-100%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 16px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .skyline-controls.cascade {
            transform: translateY(-50%) translateX(0);
        }
        
        .zenith-link {
            position: relative;
            display: flex;
            align-items: center;
            padding: 12px 20px;
            border-radius: 0 50px 50px 0;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        
        .zenith-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            filter: brightness(0.8);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .zenith-link:hover::before {
            opacity: 1;
        }
        
        .zenith-link:hover {
            transform: translateX(5px);
            padding-right: 25px;
        }
        
        .summit-reserve {
            background: linear-gradient(45deg, #FF4136, #FF725C);
            box-shadow: 0 4px 15px rgba(255, 65, 54, 0.3);
        }
        
        .peak-chat {
            background: linear-gradient(45deg, #25D366, #128C7E);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .alpine-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            position: relative;
            z-index: 1;
        }
        
        .crest-text {
            position: relative;
            z-index: 1;
        }
        
        @media screen and (max-width: 768px) {
            .skyline-controls {
                left: unset;
                right: 0;
                transform: translateY(-50%) translateX(100%);
            }
            
            .skyline-controls.cascade {
                transform: translateY(-50%) translateX(0);
            }
        
            .zenith-link {
                border-radius: 50px 0 0 50px;
                padding: 10px 16px;
            }
        
            .zenith-link:hover {
                transform: translateX(-5px);
                padding-left: 20px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .crest-text {
                font-size: 0.875rem;
            }
        
            .alpine-icon {
                width: 20px;
                height: 20px;
                margin-right: 8px;
            }
        }
        
        @media (hover: none) {
            .zenith-link:hover {
                transform: none;
                padding: 12px 20px;
            }
        }
        .claude-modal {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .claude-content {
            background-color: #fff;
            margin: 20px auto;
            padding: 25px;
            width: 90%;
            max-width: 600px;
            border-radius: 12px;
            position: relative;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            box-sizing: border-box;
        }
        
        .claude-close {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #666;
            z-index: 1;
        }
        
        .claude-message {
            display: none;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .claude-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .claude-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .claude-field {
            margin-bottom: 15px;
        }
        
        .claude-field label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333;
        }
        
        .claude-field input,
        .claude-field textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            box-sizing: border-box;
        }
        
        .claude-field textarea {
            resize: vertical;
            min-height: 80px;
            max-height: 150px;
        }
        
        .claude-submit {
            background-color: #4CAF50;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        .claude-submit:hover {
            background-color: #45a049;
        }
        
        /* Responsive adjustments */
        @media screen and (max-height: 700px) {
            .claude-content {
                margin: 10px auto;
                padding: 20px;
            }
            
            .claude-field {
                margin-bottom: 10px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .claude-content {
                width: 95%;
                padding: 15px;
            }
            
            .claude-field input,
            .claude-field textarea {
                font-size: 14px;
            }
        }