@font-face {
    font-family: Figtree;
    src: url('../../assets/fonts/figtree.ttf');
    }
    @font-face {
    font-family: Segoe;
    src: url('../../assets/fonts/segoeuithis.ttf');
    }
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    font-family: Figtree, sans-serif;
    background: honeydew;
    overflow-x: hidden;
    }
    .body {
    margin: 120px 5% 0;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    }
    section {
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
    margin: 10px auto;
    background-color: #fff;
    padding: 40px 5%;
    max-width: 1400px;
    }
    .featured-tours .hero-btn {
    margin-top: 1.5em;
    }
    /* ====================== HEADER & NAVIGATION ====================== */
    header {
    position: fixed;
    width: 100%;
    background: #1D2F1F;
    border-bottom: 5px solid #fff;
    top: 0;
    z-index: 1000;
    }
    .header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    }
    .logo {
    height: auto;
    max-width: 60px;
    }
    .menu-icon {
    display: none;
    cursor: pointer;
    }
    .nav-bar {
    display: flex;
    justify-content: center;
    background: inherit;
    }
    .nav-items {
    display: flex;
    list-style: none;
    gap: 10px;
    }
    .nav-item {
    position: relative;
    }
    .nav-item > a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 5px;
    display: block;
    }
    .dropdown {
    display: none;
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    opacity: 0;
    min-width: 240px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 100;
    transition: opacity 0.3s ease;
    }
    .dropdown a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    }
    .dropdown a:hover {
    background: #0C5128;
    color: #fff;
    }
    .nav-item:hover .dropdown {
    display: block;
    opacity: 1;
    }
    .drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 75%;
    height: 60vh;
    overflow: auto;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 20px;
    }
    .drawer ul {
    list-style: none;
    padding-left: 0;
    }
    .drawer li a {
    display: block;
    padding: 10px;
    color: #333;
    border-bottom:  2px solid #0C5128;
    margin: 10px auto;
    text-decoration: none;
    font-weight: 600;
    }
    .close-icon {
    float: right;
    cursor: pointer;
    }
    .mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    color: #fff;
    margin-top: 0px auto;
    }
    .mobile-submenu li a{
    box-shadow:  0px 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #fff;
    background: #0C5128;
    color: #fff;
    margin:  4px auto;
    }
    .mobile-dropdown-toggle.open .mobile-submenu {
    display: block;
    }
    .mobile-dropdown-toggle > a {
    cursor: pointer;
    position: relative;
    }
    .mobile-dropdown-toggle > a::after {
    content: "▾";
    float: right;
    }
    @media (max-width: 768px) {
    .nav-items {
    display: none;
    }
    .menu-icon {
    display: block;
    }
    .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    }
    }
    /* Hero Section */
    .hero {
    background-size: cover;
    background-color: #fff;
    max-width: 100%;
    margin: 10px auto;
    background-position: center;
    color: #1D2F1F;
    padding: 20px;
    }
    .hero-overlay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .hero-content {
    text-align: center;
    padding: 0 5%;
    max-width: 90%;
    }
    /* Section container */
    .calendar-section {
    padding: 80px 20px;
    background: #fff; /* light safari beige */
    text-align: center;
    margin: 10px 0px;
    }
    .calendar-section h2 {
    font-size: 2.2rem;
    color: #2e3d27; /* dark green */
    margin-bottom: 15px;
    }
    .calendar-section p {
    font-size: 1.15rem;
    color: #555;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    }
    /* Month grid layout */
    .month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    }
    .calendar-section .hero-btn{
    margin-top: 1.15rem;
    }
    /* Month cards */
    .month-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #2e3d27; /* dark safari green */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }
    /* Hover effect */
    .month-card:hover {
    background: #f4e4c1; /* warm safari gold */
    color: #1b2b15;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }
    /* Subtle animation overlay */
    .month-card::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.3);
    transition: 0.4s;
    }
    .month-card:hover::after {
    left: 100%;
    }
    .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    }
    .hero-content p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    color: #333;
    text-align: left;
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    }
    .hero-btn {
    background-color: #0C5128;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    }
    .hero-btn:hover {
    background-color: #1D2F1F;
    }
    /* Company Overview */
    .company-overview {
    padding: 40px 5%;
    max-width: 100%;
    margin: 10px auto;
    background: #fff;
    text-align: left;
    color: #333;
    }
    .company-overview h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 30px;
    }
    .company-overview h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 20px 0;
    background-color: #1D2F1F;
    text-align: center;
    padding: 0.75em;
    color: #fff;
    }
    .overview-content,  .why-choose-us p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 20px;
    }
    .overview-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    }
    .overview-content li {
    margin-bottom: 10px;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    }
    /* Why Choose Us */
    .why-choose-us {
    padding: 40px 5%;
    background: #fff;
    margin: 10px auto;
    max-width: 100%;
    text-align: center;
    }
    .why-choose-us h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 30px;
    color: #333;
    }
    /* About Capable */
    .about-capable {
    padding: 40px 5%;
    background: #fff;
    max-width: 100%;
    margin: 10px auto;
    color: #333;
    }
    .about-capable h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 30px;
    color: #222;
    }
    .about-capable h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 20px 0;
    color: #222;
    }
    .about-content p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    }
    .about-content ul {
    list-style: square;
    padding-left: 20px;
    margin-top: 10px;
    }
    .about-content li {
    margin-bottom: 10px;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    text-align: left;
    }
    /* Benefits */
    .benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    }
    .benefit {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    }
    .benefit:hover {
    transform: translateY(-5px);
    }
    .benefit svg {
    margin-bottom: 15px;
    }
    .benefit h3 {
    margin-bottom: 10px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #222;
    }
    .benefit p {
    color: #555;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    }
    /* Section container */
    .featured-tours {
    padding: 80px 20px;
    background: #ffffff; /* clean white for strong imagery contrast */
    text-align: center;
    }
    .featured-tours h2 {
    font-size: 2.2rem;
    color: #2e3d27; /* safari dark green */
    margin-bottom: 15px;
    }
    .featured-tours p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    text-align: left;
    margin: 0 auto 50px;
    line-height: 1.6;
    }
    /* Grid layout */
    .tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    }
    /* Tour cards */
    .tour-card {
    background: #f9f7f2; /* light safari beige */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    }
    .tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }
    /* Images */
    .tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    }
    .tour-card:hover img {
    transform: scale(1.05);
    }
    /* Card content */
    .tour-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: #2e3d27;
    font-weight: 700;
    }
    .tour-card p {
    font-size: 1.2rem;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.5;
    flex-grow: 1; /* pushes button down */
    }
    /* Buttons */
    .btn-view-more {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 18px;
    background: #0C5128; /* safari gold */
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    }
    .btn-view-more:hover {
    background: #1D2F1F; /* darker gold */
    }
    .btn-primary {
    background-color: #fff;
    color: #1D2F1F;
    font-family: inherit;
    padding: 12px 30px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    }
    .btn-primary:hover,
    .btn-primary:focus {
    background-color: #e6f2e9;
    color: #1a4d2e;
    outline: none;
    box-shadow: 0 6px 12px rgba(20, 99, 43, 0.6);
    }
    /* Top Reasons */
    .top-reasons {
    padding: 40px 5%;
    max-width: 100%;
    margin: 10px auto;
    text-align: left;
    background: #fefefe;
    color: #222;
    }
    .top-reasons h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 30px;
    color: #1a4d2e;
    }
    .top-reasons p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 20px;
    }
    .top-reasons .reason h3 {
    font-size: clamp(1.2rem, 3vw, 1.35rem);
    text-align: left;
    color: #0C5128;
    margin-bottom: 10px;
    }
    /* CTA Banner */
    .cta-banner {
    background: #0C5128;
    color: #fff;
    text-align: center;
    padding: 40px 5%;
    margin: 10px auto;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(20, 99, 43, 0.3);
    }
    .cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 15px;
    font-weight: 700;
    }
    .cta-content p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
    /* Contact Section */
    .contact-section {
    padding: 40px 5%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    color: #222;
    }
    .contact-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 15px;
    color: #1a4d2e;
    }
    .contact-section p {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    text-align: left;
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
    .contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    }
    .contact-form {
    flex: 1 1 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    background: #1D2F1F;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
    }
    .contact-form .form-header {
    padding: 10px;
    margin-bottom: 20px;
    border-bottom: 4px solid #fff;
    color: #fff;
    text-align: center;
    }
    .contact-form .form-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
    }
    .contact-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    }
    .contact-form input,
    .contact-form textarea {
    padding: 10px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
    width: 100%;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
    outline: none;
    border-color: #1D2F1F;
    box-shadow: 0 0 5px #1D2F1F;
    }
    .contact-form button {
    background: #1D2F1F;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    cursor: pointer;
    }
    /* Contact Info */
    .contact-info {
    flex: 1 1 100%;
    max-width: 400px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #1a4d2e;
    text-align: left;
    }
    .contact-info h3 {
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    background: #1D2F1F;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    .contact-info p {
    margin-bottom: 12px;
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #1a4d2e;
    }
    .contact-info a {
    color: #1a4d2e;
    text-decoration: none;
    font-weight: 600;
    }
    .contact-info a:hover,
    .contact-info a:focus {
    text-decoration: underline;
    }
    /* Popup */
    .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    }
    .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    text-align: center;
    }
    .popup-content h3 {
    margin-bottom: 10px;
    color: #1D2F1F;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    .popup-content p {
    margin-bottom: 20px;
    color: #333;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .popup-content button {
    background-color: #1D2F1F;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    border-radius: 5px;
    cursor: pointer;
    }
    .popup-content button:hover {
    background-color: #14324a;
    }
    /* Accreditations */
    .accreditations-section {
    padding: 40px 5%;
    max-width: 100%;
    margin: 10px auto;
    text-align: center;
    color: #222;
    background: #fefefe;
    }
    .accreditations-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #1a4d2e;
    margin-bottom: 15px;
    }
    .accreditations-section p {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    max-width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    }
    .partners-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }
    .partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    }
    .partner-logo:hover,
    .partner-logo:focus {
    transform: scale(1.1);
    }
    /* Testimonials */
    .testimonials-section {
    background: #fff;
    padding: 40px 5%;
    max-width: 100%;
    margin: 10px auto;
    text-align: center;
    }
    .testimonials-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #1a4d2e;
    margin-bottom: 15px;
    }
    .testimonials-section p {
    max-width: 90%;
    margin: 0 auto 30px;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    color: #444;
    }
    .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    }
    .testimonial-card {
    background: white;
    padding: 20px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    }
    .testimonial-card blockquote {
    font-style: italic;
    margin: 0 0 15px;
    color: #333;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    }
    .testimonial-author {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #1D2F1F;
    font-weight: 600;
    }
    /* FAQ Section */
    .faq-section {
    background-color: #f9fafb;
    padding: 40px 5%;
    color: #1f2937;
    max-width: 100%;
    margin: 10px auto;
    }
    .faq-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    text-align: left;
    color: #1D2F1F;
    margin-bottom: 30px;
    }
    .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    }
    .faq-question {
    font-weight: bold;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    cursor: pointer;
    color: #1D2F1F;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    }
    .faq-answer {
    display: none;
    padding-top: 10px;
    text-align: left;
    color: #374151;
    line-height: 1.6;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    }
    .faq-question::after {
    content: "+";
    font-size: 1.2rem;
    color: #1D2F1F;
    }
    .faq-question.active::after {
    content: "−";
    }
    /* Badges */
    .badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    }
    .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    }
    .badge-item svg {
    width: 60px;
    height: 60px;
    }
    .badge-label {
    margin-top: 10px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    color: #333;
    }
    /* Footer */
    .site-footer {
    background-color: #303841;
    color: #fff;
    padding: 40px 5% 20px;
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    width: 100%;
    }
    .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    }
    .footer-column {
    flex: 1 1 200px;
    text-align: left;
    }
    .footer-column h3,
    .footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
    .footer-column p {
    color: #fff;
    line-height: 1.6;
    }
    .footer-column ul {
    list-style: none;
    padding: 0;
    }
    .footer-column li  {
    margin-bottom: 8px;
    color: #fff;
    }
    .footer-column a {
    color: #E3C9A8;
    text-decoration: none;
    }
    .footer-column a:hover {
    color: #ffffff;
    }
    .footer-bottom {
    border-top: 1px solid #fff2;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    }
    /* WhatsApp Button */
    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    border-radius: 50%;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    }
    .whatsapp-float:hover {
    transform: scale(1.1);
    }
    .whatsapp-float svg {
    width: clamp(24px, 5vw, 32px);
    height: clamp(24px, 5vw, 32px);
    fill: #ffffff;
    }
    /* Media Queries */
    @media (max-width: 480px) {
    .body {
    margin: 80px 3% 0;
    }
    .hero {
    padding: 15px;
    }
    .hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    }
    .hero-content p {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    }
    .image img {
    max-height: 50vh;
    }
    .tours-container {
    grid-template-columns: 1fr;
    }
    .contact-form {
    padding: 15px;
    }
    .whatsapp-float {
    width: 50px;
    height: 50px;
    }
    .whatsapp-float svg {
    width: 24px;
    height: 24px;
    }
    }
    @media (max-width: 768px) {
    .nav-items {
    display: none;
    }
    .menu-icon {
    display: block;
    }
    .drawer {
    display: block;
    }
    .body {
    margin: 90px 3% 0;
    }
    .hero {
    padding: 15px;
    }
    .company-overview,
    .why-choose-us,
    .about-capable,
    .top-reasons,
    .cta-banner,
    .contact-section,
    .testimonials-section,
    .accreditations-section,
    .faq-section {
    padding: 30px 3%;
    }
    .tours-container {
    grid-template-columns: 1fr;
    }
    .contact-container {
    flex-direction: column;
    gap: 20px;
    }
    .contact-info,
    .contact-form {
    max-width: 100%;
    }
    .footer-content {
    flex-direction: column;
    gap: 15px;
    }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
    .body {
    margin: 140px 4% 0;
    }
    .nav-items {
    display: none;
    }
    .menu-icon {
    display: block;
    }
    .image img {
    max-height: 60vh;
    }
    .tours-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .contact-container {
    flex-direction: row;
    gap: 20px;
    }
    .contact-form {
    flex: 1 1 50%;
    }
    .contact-info {
    flex: 1 1 40%;
    }
    }
    @media (min-width: 1025px) {
    .menu-icon {
    display: none;
    }
    .nav-items {
    display: flex;
    }
    .drawer {
    display: none;
    }
    .image img {
    max-height: 70vh;
    }
    .tours-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    }
    #scrollTopBtn {
    position: fixed;
    left: 20px;       
    bottom: 40px;     
    z-index: 99;      
    background-color: #303841; 
    color: white;
    border: none;
    opacity: 0.65;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }