/**
 * Custom styles for Beyond Splendid Ventures
 */

/* ======= HEADER STYLES ======= */
.site-header {
    padding: 15px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.main-navigation {
    font-family: var(--heading-font);
}

.main-navigation ul li {
    margin: 0 15px;
}

.main-navigation ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

.main-navigation ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover:after,
.main-navigation ul li.current-menu-item a:after {
    width: 100%;
}

/* ======= HERO SECTION ======= */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======= FEATURED DESTINATIONS ======= */
.featured-destinations {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.destination-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    transform: translateZ(0); 
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.destination-details {
    padding: 20px;
    background: var(--light-color);
}

.destination-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.destination-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
}

.destination-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.destination-link:hover {
    color: var(--secondary-color);
}

.destination-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.destination-link:hover i {
    transform: translateX(3px);
}

/* ======= POPULAR TOURS ======= */
.popular-tours {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tour-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background-color: var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-price {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 1;
}

.tour-details {
    padding: 20px;
}

.tour-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.tour-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
}

.tour-meta-item i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.tour-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tour-button:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    margin: 20px;
    text-align: center;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author-title {
    color: #777;
    font-size: 14px;
}

/* ======= WHY CHOOSE US ======= */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
    border-radius: 8px;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    font-size: 15px;
}

/* ======= CALL TO ACTION ======= */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======= FOOTER ======= */
.site-footer {
    color: var(--light-color);
}

.footer-widgets {
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-widget ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--light-color);
}

.footer-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact-info p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* ======= ABOUT PAGE ======= */
.about-hero {
    height: 50vh;
    min-height: 400px;
}

.about-section {
    padding: 80px 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: auto;
}

.team-member-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member-position {
    color: #777;
    margin-bottom: 15px;
}

.team-member-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ======= CONTACT PAGE ======= */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    font-size: 24px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea.form-control {
    height: 150px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .testimonial-content {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .featured-destinations,
    .popular-tours,
    .testimonials-section,
    .why-choose-us,
    .about-section,
    .team-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .featured-destinations,
    .popular-tours,
    .testimonials-section,
    .why-choose-us,
    .about-section,
    .team-section,
    .contact-section {
        padding: 40px 0;
    }
}
/* Tour Single Template Styles */
.tour-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tour-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.tour-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tour-meta-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.tour-gallery-price-section {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tour-gallery {
    flex: 1;
    min-width: 300px;
}

.tour-featured-image {
    margin-bottom: 15px;
}

.tour-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tour-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: #0E3D4D;
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.tour-booking-box {
    width: 350px;
    background: #fffbee;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0E3D4D;
    display: block;
    line-height: 1;
}

.price-per {
    font-size: 14px;
    color: #666;
}

.tour-booking-form {
    margin-bottom: 25px;
}

.tour-booking-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tour-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.tour-highlights li {
    margin-bottom: 8px;
}

.tour-content-section {
    margin-bottom: 50px;
}

.tour-description {
    margin-bottom: 40px;
}

.tour-itinerary h2 {
    margin-bottom: 20px;
}

.itinerary-accordion .itinerary-day {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.day-title {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.day-title:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.day-title.active:after {
    content: '-';
}

.day-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.day-highlights {
    margin: 15px 0;
    padding-left: 20px;
}

.tour-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.info-section h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 10px 0;
}

.related-tours {
    margin-top: 60px;
}

.related-tours h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-tour-card:hover {
    transform: translateY(-5px);
}

.related-tour-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-tour-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
}

.related-tour-price {
    padding: 0 15px 15px;
    color: #0E3D4D;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tour-gallery-price-section {
        flex-direction: column;
    }
    
    .tour-booking-box {
        width: 100%;
    }
    
    .tour-meta-header {
        gap: 15px;
    }
    
    .tour-title {
        font-size: 2rem;
    }
}
/* Table of Contents Tour Styles */
/* Sticky Left TOC Layout */
.tour-content-with-toc {
    display: flex;
    gap: 40px;
    position: relative;
    align-items: flex-start;
}

.tour-toc-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 #f8f9fa;
}

.tour-toc-sidebar::-webkit-scrollbar {
    width: 6px;
}

.tour-toc-sidebar::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.tour-toc-sidebar::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 3px;
}

.tour-main-content {
    flex: 1;
    min-width: 0;
}

.tour-toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.tour-toc-header i {
    color: #0E3D4D;
    font-size: 18px;
}

.tour-toc-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.tour-toc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-toc-nav li {
    margin-bottom: 5px;
    position: relative;
}

.tour-toc-nav li:last-child {
    margin-bottom: 0;
}

.tour-toc-nav a.toc-link {
    display: block;
    padding: 8px 10px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.tour-toc-nav a.toc-link span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-toc-nav a.toc-link:hover {
    background: rgba(26, 115, 232, 0.08);
    color: #0E3D4D;
}

.tour-toc-nav a.toc-link.active {
    background: rgba(26, 115, 232, 0.1);
    color: #0E3D4D;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tour-content-with-toc {
        flex-direction: column;
    }
    
    .tour-toc-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        margin-bottom: 30px;
    }
}

/* Smooth scrolling and section highlighting */
html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 20px;
    animation: toc-highlight 1.5s ease;
}

@keyframes toc-highlight {
    0% { background-color: rgba(26, 115, 232, 0.15); }
    100% { background-color: transparent; }
}
/* Destination Single Page Styles */
.destination-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.destination-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}


.featured-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.destination-taxonomy-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.destination-category-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.destination-location-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 14px;
}

.destination-location-badge i {
    margin-right: 5px;
}

.destination-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.destination-featured-image {
    margin-top: 20px;
}

.destination-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.destination-content-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.destination-main-content {
    flex: 1;
    min-width: 0;
}

.destination-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.destination-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0E3D4D;
    padding-bottom: 10px;
    text-align: left;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.highlight-list li:before {
    content: "•";
    color: #0E3D4D;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.destination-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.info-card-title {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    color: #0E3D4D;
    font-size: 18px;
    margin-top: 2px;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
}

.info-value {
    display: block;
    font-weight: 500;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.tips-list li:before {
    content: "✓";
    color: #4caf50;
    position: absolute;
    left: 0;
}

.related-tours-card {
    background: #ffffff !important;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-tours-list {
    margin-bottom: 15px;
}

.related-tour-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.related-tour-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-tour-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    text-decoration: none;
}

.related-tour-item h4 {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.related-tour-item:hover h4 {
    color: #D4AC34;
}

.tour-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-all-tours {
    display: inline-block;
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    background: #0C513F;
    border-radius: 30px;
    transition: transform 0.3s ease;
}
.view-all-tours:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #fff;
    margin: 0;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .destination-content-layout {
        flex-direction: column;
    }
    
    .destination-sidebar {
        width: 100%;
    }
    
    .destination-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 20px;
}
/* Attractions Section Styles */
.attractions-list {
    display: grid;
    gap: 30px;
}

.attraction-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.attraction-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0E3D4D;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.attraction-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0E3D4D;
}

.attraction-description {
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .attraction-item {
        padding: 20px;
    }
    
    .attraction-title {
        font-size: 1.2rem;
    }
}
/* Search Results Styles */
.search-results-container {
    padding: 40px 0;
}

.search-results-grid {
    display: grid;
    gap: 30px;
}

.search-result-item {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.search-result-content {
    flex: 1;
}

.search-result-thumbnail {
    flex: 0 0 250px;
}

.search-result-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.entry-title {
    margin-top: 0;
    font-size: 1.4rem;
}

.entry-title a {
    color: #0E3D4D;
    text-decoration: none;
}

.entry-summary {
    margin: 15px 0;
    color: #555;
}

.search-result-meta {
    margin-bottom: 10px;
}

.tour-price {
    display: inline-block;
    background: #e3f2fd;
    color: #0E3D4D;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.post-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f0f0f0;
    color: #666;
}

.post-type-badge.tour {
    background: #e3f2fd;
    color: #0E3D4D;
}

.post-type-badge.destination {
    background: #e8f5e9;
    color: #2e7d32;
}

.read-more {
    margin-left: 15px;
    color: #0E3D4D;
    text-decoration: none;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-result-item {
        flex-direction: column;
    }
    
    .search-result-thumbnail {
        flex: 0 0 auto;
    }
}

/* for the corporate page */
:root {
  --primary: #0073aa;
  --light-gray: #f9f9f9;
  --accent: #ff9800;
}

.corporate-travel {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #333;
}
.hero {
  text-align: center;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.25rem;
  color: #666;
}
.intro {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Services */
.service-card {
  background: var(--light-gray);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.service-card h3 {
  margin-top: 0;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.25rem;
}
.service-card .features {
  list-style: disc inside;
  margin: 1rem 0;
}
.service-card .sub-list {
  margin-bottom: 1rem;
}
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.destinations h4 {
  margin-bottom: 0.5rem;
}

/* Why Us */
.why-us {
  margin: 3rem 0;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
}
.reasons-grid div {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Packages */
.packages {
  margin-bottom: 3rem;
}
.package-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.package {
  flex: 1 1 280px;
  background: var(--light-gray);
  padding: 1.25rem;
  border-radius: 0.5rem;
  text-align: center;
}
.package.featured {
  border: 2px solid var(--primary);
}

/* CTA */
.cta {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
}
.cta ol {
  text-align: left;
  display: inline-block;
  margin-bottom: 1rem;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 1.1rem;
}
.btn-primary:hover {
  background: darken(var(--primary), 10%);
}

/* Utility & Responsive */
@media (max-width: 768px) {
  .destinations, .reasons-grid, .package-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
