/*====================================
DESTINATION DETAILS
====================================*/

.destination-details-section {
    padding: 100px 0;
    background: #fff;
}

.destination-details-wrap {
    max-width: 1200px;
    margin: auto;
}

.destination-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #132c63;
    margin-bottom: 20px;
}

.destination-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.destination-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.destination-info-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: .4s;
}

.destination-info-card:hover {
    transform: translateY(-5px);
}

.destination-info-card i {
    font-size: 28px;
    color: #2f9dbc;
    margin-bottom: 15px;
}

.destination-info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #132c63;
}

.destination-info-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/*====================================
IMAGE + CONTENT SECTION
====================================*/

.destination-guide-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.guide-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.guide-content h2 {
    font-size: 42px;
    color: #132c63;
    font-weight: 800;
    margin-bottom: 20px;
}

.guide-content p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.guide-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.guide-content ul li {
    margin-bottom: 15px;
    color: #555;
}

.guide-content ul li i {
    color: #2f9dbc;
    margin-right: 10px;
}

.guide-btn {
    display: inline-block;
    background: #2f9dbc;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/*====================================
EXPLORE MORE DESTINATIONS
====================================*/

.travel-guides-section {
    padding: 100px 0;
    background: #fff;
}

.travel-guides-title {
    text-align: center;
    margin-bottom: 50px;
}

.travel-guides-title h2 {
    font-size: 48px;
    color: #132c63;
    font-weight: 800;
}

.guide-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.guide-tab-btn {
    border: none;
    background: #f2f2f2;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}

.guide-tab-btn.active {
    background: #2f9dbc;
    color: #fff;
}

.guide-tab-content {
    display: none;
}

.guide-tab-content.active {
    display: block;
}

.guide-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.guide-card:hover {
    transform: translateY(-8px);
}

.guide-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.guide-card-content {
    padding: 25px;
}

.guide-card-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #132c63;
}

.guide-card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.guide-card-content a {
    color: #2f9dbc;
    font-weight: 600;
    text-decoration: none;
}

/*====================================
FAQ SECTION
====================================*/

.destination-faq-section {
    padding: 100px 0;
    background: #f8f8f8;
    margin-topp: 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #132c63;
}

.faq-wrap {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #132c63;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: .4s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.9;
}

.faq-item.active .faq-answer {
    display: block;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px) {

    .guide-row {
        grid-template-columns: 1fr;
    }

    .destination-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-content h2,
    .guide-content h2,
    .travel-guides-title h2,
    .faq-title h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .destination-details-section,
    .destination-guide-section,
    .travel-guides-section,
    .destination-faq-section {
        padding: 70px 0;
    }

    .destination-info-grid {
        grid-template-columns: 1fr;
    }

    .guide-card-grid {
        grid-template-columns: 1fr;
    }

    .guide-tabs {
        flex-direction: column;
        align-items: center;
    }

    .destination-content h2,
    .guide-content h2,
    .travel-guides-title h2,
    .faq-title h2 {
        font-size: 28px;
    }

    .guide-card img {
        height: 220px;
    }
}


/* ==========================
FAQ SECTION
========================== */

.faq-section {
    padding: 120px 0;
    background: #f8fbff;
    position: relative;
}

.faq-heading {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.faq-heading span {
    display: inline-block;
    color: #18b7e8;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #560ce3;
    margin-bottom: 20px;
}

.faq-heading p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 17px;
}

.custom-faq {
    max-width: 950px;
    margin: auto;
}

.custom-faq .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(16, 44, 104, .08);
}

.custom-faq .accordion-button {
    background: #fff;
    color: #560ce3;
    font-size: 20px;
    font-weight: 700;
    padding: 25px 30px;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #560ce3;
    color: #fff;
}

.custom-faq .accordion-button::after {
    filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

.custom-faq .accordion-body {
    padding: 25px 30px;
    background: #fff;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.9;
}

/* Hover */

.custom-faq .accordion-item:hover {
    transform: translateY(-5px);
    transition: .4s;
    box-shadow: 0 25px 60px rgba(24, 183, 232, .15);
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-heading h2 {
        font-size: 40px;
    }

    .custom-faq .accordion-button {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .custom-faq .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .custom-faq .accordion-body {
        padding: 18px;
        font-size: 14px;
    }
}


/*==================================
DESTINATION CTA
==================================*/

.destination-cta {
    position: relative;
    background: url("image/destination/tampa-banner.jpg") center center/cover no-repeat;
    min-height: 240px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}

.destination-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 33, 48, .65);
}

.destination-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.destination-cta-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.destination-cta-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.destination-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-call-btn {
    background: #560ce3;
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-call-btn i {
    font-size: 22px;
}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px) {

    .destination-cta {
        min-height: 280px;
    }

    .destination-cta-content h2 {
        font-size: 38px;
    }

    .destination-cta-content p {
        font-size: 18px;
    }

    .cta-call-btn,
    .cta-package-btn {
        font-size: 18px;
        padding: 15px 25px;
    }
}

@media(max-width:767px) {

    .destination-cta {
        min-height: 320px;
        border-radius: 18px;
    }

    .destination-cta-content {
        padding: 25px;
    }

    .destination-cta-content h2 {
        font-size: 28px;
    }

    .destination-cta-content p {
        font-size: 16px;
    }

    .destination-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-call-btn,
    .cta-package-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


/* Section Title */
.other-destinations .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #222;
}

/* Card Style */
.destination-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #f9f9ff, #eef3ff);
}

/* Title */
.destination-card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Arrow animation */
.destination-card .arrow {
    font-size: 20px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.destination-card:hover .arrow {
    transform: translateX(6px);
    opacity: 1;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* Large tablets */
@media (max-width: 992px) {
    .other-destinations .section-title {
        font-size: 24px;
    }

    .destination-card h3 {
        font-size: 16px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .destination-card {
        padding: 15px;
    }

    .destination-card h3 {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .destination-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .destination-card .arrow {
        align-self: flex-end;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .destination-card {
        padding: 12px;
    }

    .destination-card h3 {
        font-size: 14px;
    }
}
