*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', serif;
}

body {
    font-family: 'Open Sans', serif;
    background-color: white;
    color: black;
}

.section-title,
.section-subtitle,
h1, h2, h3, h4, h5, h6,
.nav-links a,
.footer-text,
.contact-text,
.contact-link,
.input-field,
.btn-secondary {
    font-family: 'Open Sans', serif;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #223544;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    /* Add spacing between section title and subtitle for specific sections */
    .popular-destination .section-title,
    .activity-tour .section-title,
    #whychooseus .section-title {
        margin-bottom: 10px;
    }
    .popular-destination .section-subtitle,
    .activity-tour .section-subtitle,
    #whychooseus .section-subtitle {
        margin-top: 10px !important;
    }
}

html {
    scroll-behavior: smooth;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 0;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Style header saat scroll */
header.header-scrolled {
    background-color: #223544;
    transition: background-color 0.3s ease;
}

.logo img {
    height: 70px; /* Sesuaikan ukuran logo */
    width: auto; /* Biarkan lebar menyesuaikan */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}
.nav-links li:last-child {
    margin-right: 5px;
}
.search-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;

}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #d0d0d0;
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
}
.search-icon {
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    color: white;
    transition: color 0.3s;
}
.search-icon:hover {
    color: #ddd;
}
.search-box {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: white;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.search-box input {
    width: 100%;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 14px;
}
.close-search {
    cursor: pointer;
    font-size: 16px;
    margin-left: 8px;
    color: #999;
    transition: color 0.3s;
}
.close-search:hover {
    color: #333;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdown-menu li a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-menu li a:hover {
    background-color: #ddd;
}
.dropdown.active .dropdown-menu {
    display: block;
}

/* Mobile dropdown alignment */
@media (max-width: 768px) {
    .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        box-shadow: none !important;
        background-color: #223544 !important;
        width: 100% !important;
    }
    .dropdown-menu li a {
        color: white !important;
        padding: 10px 0 !important;
    }
}

/* Responsif */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px 15px;
        height: auto;
        align-items: center;
    }
    .logo img {
        height: 50px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background:#223544;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1100;
    }
 
 .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px;
    transition: color 0.3s ease-in-out;
 }  
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1200;
    }
    .search-container {
        width: auto;
        margin-top: 0;
        justify-content: flex-end;
    }
}

/* Style untuk video header agar tampil penuh dan responsif */
.header-video {
    width: 100%;
    height: 100%;
    max-height: 800px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    filter: brightness(0.6);
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    max-height: 800px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-family: 'Montserrat', sans-serif;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
}

.video-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.video-subtitle {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .header-video {
        max-height: 600px !important;
    }
    .video-container {
        max-height: 600px !important;
    }
    .video-overlay {
        top: 70% !important;
    }
    .video-title {
        font-size: 1rem !important;
    }
    .video-subtitle {
        font-size: 0.75rem !important;
    }
    .btn-secondary {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
    .inline-style-1 {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
}

@media (max-width: 768px) {
    .header-video {
        max-height: 300px;
    }
}

#bali-map-section {
  padding: 50px 5%;
  background-color: #fff;
}

#bali-map-section h2,
#bali-map-section p {
  text-align: center;
}

#map {
  width: 100%;
  height: 60vh; /* responsive tinggi: 60% dari tinggi viewport */
  min-height: 300px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media (max-width: 600px) {
  #map {
    height: 300px;
  }
}


/* Footer */
.footer {
    background-color: #223544;
    color: #ffffff;
    padding: 50px 5%;
    font-family: Arial, sans-serif;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-destination .card-container {
    gap: 20px;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 260px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hotel-villa-section .card {
    width: 450px;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-family: 'Open Sans', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #223544;
    font-weight: bold;
}

.card-description {
    font-size: 0.9rem;
    color: #555;
}

.btn-detail {
    background-color: #223544;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Open Sans', serif;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

/* New style for popular destination detail button */
.popular-destination .btn-detail {
    background-color: #5890D4;
    color: white;
    border: 2px solid #5890D4;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 15px auto 0 auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.popular-destination .btn-detail:hover {
    background-color: white;
    color: #5890D4;
    border-color: #5890D4;
}

/* New style for activity tour detail button */
.activity-tour .btn-detail {
    background-color: #5890D4;
    color: white;
    border: 2px solid #5890D4;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 15px auto 0 auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.activity-tour .btn-detail:hover {
    background-color: white;
    color: #5890D4;
    border-color: #5890D4;
}

/* Apply activity tour button style to hotel & villa detail buttons */
.hotel-villa-section .btn-detail {
    background-color: #5890D4;
    color: white;
    border: 2px solid #5890D4;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 15px auto 0 auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hotel-villa-section .btn-detail:hover {
    background-color: white;
    color: #5890D4;
    border-color: #5890D4;
}

.btn-detail:hover {
    background-color: #1a2b3a;
    text-decoration: none;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        margin-bottom: 20px;
    }
    .hotel-villa-section .card {
        width: 90% !important;
    }
    .btn-detail {
        margin-bottom: 15px;
    }
    .hotel-villa-section .btn-detail {
        width: fit-content !important;
        max-width: 200px !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Footer Atas */
.footer-top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Logo & Deskripsi */
.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo img {
    width: 200px;
    margin-bottom: 15px;
    display: block;
    max-height: 100px;
    object-fit: contain;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Kontak */
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fa8231;
}

.contact-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item ion-icon {
    font-size: 18px;
    margin-right: 8px;
    color: #fa8231;
}

.contact-link {
    color: white;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Subscribe */
.footer-form {
    flex: 1;
    min-width: 250px;
}

.form-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.form-wrapper {
    display: flex;
    gap: 10px;
}

.input-field {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.btn-secondary {
    background-color: #fa8231;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #e36b1e;
}

/* Footer Bawah */
.footer-bottom {
    text-align: center;
    background-color: #1a2b3a;
    padding: 15px;
    margin-top: 30px;
}

.copyright {
    font-size: 14px;
}

.footer-bottom-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-bottom-link {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom-link:hover {
    text-decoration: underline;
}

/* Responsif untuk Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .footer-top .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand .logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
    }

    /* Make activity tour cards uniform size on mobile */
    .activity-tour-section .card {
        width: 90% !important;
        height: auto !important;
    }

    .activity-tour-section .card-image {
        height: 180px !important;
        object-fit: cover !important;
    }
}

/* Responsif untuk Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 10px;
    }

    .footer-bottom-list {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add consistent spacing between hotel & villa, activity tour, and package sections */
.activity-tour-section,
.card-section,
.package-section,
.hotel-villa-section {
    margin-bottom: 50px;
}

.activity-tour-section {
    margin-top: 80px;
}

.hotel-villa-section {
    margin-top: 50px;
    background-color: white;
    padding: 50px 5%;
}

.inline-style-1 {
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px 30px;
    background-color: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.inline-style-2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Open Sans', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #223544;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .inline-style-2 {
        font-size: 1.5rem;
    }
    .section-title.inline-style-2 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-top: -5px;
    }
}

@media (min-width: 769px) {
    .section-title.inline-style-2 {
        margin-bottom: 15px;
    }
    .section-subtitle {
        margin-top: -5px;
    }
}

.inline-style-3 {
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px 30px;
    background-color: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin-top: 10px;
}

.inline-style-4 {
    padding: 30px 5%;
    background-color: #f9f9f9;
    margin-top: 30px;
}

.inline-style-5 {
    max-width: 900px;
    margin: 0 auto;
}

.inline-style-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    border: 2px solid #223544;
    border-radius: 10px;
    padding: 15px;
}

/* Make activity tour cards display side by side like package cards */
.activity-tour-section .tour-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-tour-section .tour-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
    width: 260px;
    display: flex;
    flex-direction: column;
}

.activity-tour-section .tour-container:hover {
    transform: translateY(-10px);
}

.activity-tour-section .tour-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.activity-tour-section .tour-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity-tour-section .tour-title {
    font-family: 'Open Sans', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #223544;
    font-weight: bold;
}

.activity-tour-section .tour-description {
    font-size: 0.9rem;
    color: #555;
}

/* New styles for tour-price div */
.tour-price {
    background-color: transparent;
    padding: 10px;
    border-radius: 10px;
    color: #223544;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* New style for tour price package with color #5890d4 */
.tour-price-package {
    background-color: #5890d4;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.inline-style-7 {
    flex: 1 1 200px;
    max-width: 200px;
}

.inline-style-8 {
    width: 100%;
    border-radius: 8px;
    height: 140px;
    object-fit: cover;
}

.inline-style-9 {
    flex: 2 1 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.inline-style-10 {
    font-family: 'Open Sans', serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.inline-style-11 {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.inline-style-12 {
    border: 2px solid #223544;
    border-radius: 20px;
    padding: 8px 20px;
    background-color: transparent;
    color: #223544;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
}

.inline-style-13 {
    margin-top: 15px;
}

.inline-style-14 {
    flex: 1 1 180px;
    max-width: 180px;
}

.inline-style-15 {
    width: 100%;
    border-radius: 8px;
    height: 120px;
    object-fit: cover;
}

.inline-style-16 {
    flex: 2 1 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.inline-style-17 {
    font-family: 'Open Sans', serif;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.inline-style-18 {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
}

.inline-style-19 {
    padding: 50px 5%;
    background-color: #f9f9f9;
    margin-top: 30px;
}

@media (min-width: 769px) {
    .welcome-section {
        margin-bottom: 150px;
    }

    /* Reduce spacing between popular destination and activity tour sections */
    .inline-style-19 {
        margin-top: 40px;
    }

    /* Reduce spacing between activity tour and package sections */
    .activity-tour-section.inline-style-19 {
        margin-bottom: 40px;
    }
}

@media (min-width: 769px) {
    .inline-style-19 {
        margin-top: 150px;
    }
}

.inline-style-20 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.inline-style-21 {
    flex: 1 1 300px;
    max-width: 300px;
}

.inline-style-22 {
    width: 100%;
    border-radius: 8px;
}

.inline-style-23 {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.inline-style-24 {
    font-family: 'Open Sans', serif;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .inline-style-24 {
        font-size: 1.3rem;
    }
}

.inline-style-25 {
    text-decoration: none;
    color: #223544;
}

/* New styles for stacked images in welcome section */
.stacked-image {
    position: absolute;
    width: 60%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.stacked-image:hover {
    z-index: 10 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.welcome-text {
    font-family: 'Open Sans', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #223544;
    text-align: justify;
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 0.85rem;
    }
}

.stacked-image:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
}

.stacked-image:nth-child(2) {
    top: 80px;
    left: 80px;
    z-index: 2;
}

.stacked-image:nth-child(3) {
    top: 160px;
    left: 160px;
    z-index: 1;
}
.stacked-image:nth-child(4) {
    top: 240px;
    left: 240px;
    z-index: 0;
}

.stacked-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .welcome-section {
        display: block;
    }
    .stacked-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 0 15px 0 !important;
        display: block;
        width: 85% !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .stacked-image {
        width: 90%;
        position: absolute;
    }
    .stacked-image:nth-child(1) {
        top: 0;
        left: 0;
    }
    .stacked-image:nth-child(2) {
        top: 110px;
        left: 20px;
    }
    .stacked-image:nth-child(3) {
        top: 220px;
        left: 10px;
    }
}

/* Styles for photo from traveler section */
.photo-from-traveler-section {
    padding: 50px 5%;
    background-color: white !important;
}

#package,
.package-section {
    background-color: white;
}

.photo-from-traveler-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Open Sans', serif;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(3) {
    grid-row: span 2;
}

.photo-grid img:nth-child(5) {
    grid-column: span 2;
}

/* Responsive adjustments for photo grid */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }
    .photo-grid img:nth-child(1),
    .photo-grid img:nth-child(3) {
        grid-row: span 1;
    }
    .photo-grid img:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .photo-grid img {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }
}

/* FAQ Section General Styles */
#product-guide-section {
    padding: 50px 5%;
    background-color: #ffffff;
  }
  
  #product-guide-section .section-title {
    text-align: center;
    font-family: 'Open Sans', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #223544;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }
  
  .faq-question {
    position: relative;
    font-size: 1.1rem;
    cursor: pointer;
    padding-right: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: #223544;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-toggle-icon {
    font-size: 0.9rem;
    color: #777;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
  }
  


/* CSS for Why Choose Us Section */
#whychooseus {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
  }
  
.popular-destination {
    background-color: white !important;
    margin-bottom: 10px !important; /* Further reduced bottom margin with !important */
    padding-bottom: 10px !important; /* Added padding-bottom to control spacing */
}

.activity-tour,
.activity-tour-section {
    background-color: white;
    margin-bottom: 10px !important; /* Added margin-bottom to reduce spacing below activity tour */
    padding-bottom: 10px !important; /* Added padding-bottom for better spacing control */
}

#whychooseus p {
    margin-bottom: 30px;
}
  
/*  #whychooseus h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
  }
  
  #whychooseus p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  } */
  
  #whychooseus .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  #whychooseus .feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    max-width: 260px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  #whychooseus .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  #whychooseus .feature-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  #whychooseus .feature-item h3 {
    font-size: 20px;
    color: #007B8F;
    margin-bottom: 15px;
  }
  
  #whychooseus .feature-item p {
    font-size: 16px;
    color: #555;
  }
  
  .desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}
