/* ===== MAP HERO SECTION ===== */
.map-hero-section {
    /*padding: 80px 20px;*/
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.benefits-hero-header {
    padding: 50px 20px 0px;
    text-align: center;
}

.map-hero-title {
    margin: 0 0 30px 0;
    background: linear-gradient(45deg,
        #25408E 0%,
        #25408E 30%,
        #21ADE4 40%,
        #CE9336 50%,
        #CE9336 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: map-hero-gradient-sweep 4s ease-in-out infinite alternate;
}

@keyframes map-hero-gradient-sweep {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.map-hero-description {
    max-width: 900px;
    margin: 0 auto 30px;
    color: #242021;
    padding: 0 !important;
}

.map-hero-instruction {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #242021;
    font-weight: 900;
    padding: 0 !important;
}

/* ===== INTERACTIVE MAP ===== */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

#svg-map {
    width: 100%;
    height: auto;
    display: block;
}

#svg-map path {
    fill: #FFFFFF;
    stroke: #999999;
    stroke-width: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

#svg-map path:hover {
    fill: url(#state-gradient);
    stroke: #21ADE4;
    stroke-width: 2.5;
    filter: drop-shadow(0 4px 12px rgba(37, 64, 142, 0.5));
}

#svg-map path:active {
    fill: #CE9336;
}

#svg-map text {
    font-family: "Figtree";
    font-size: 10px;
    font-weight: 900;
    fill: #242021;
    pointer-events: none;
    text-anchor: middle;
    transition: fill 0.3s ease;
}

#svg-map path:hover + text {
    fill: #FFFFFF;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-state-selector {
    display: none;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.state-dropdown-container {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.state-dropdown {
    flex: 1;
    padding: 15px;
    font-family: "Figtree";
    font-size: 16px;
    font-weight: 400;
    color: #242021;
    border: 2px solid #999999;
    border-radius: 8px;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 30px;
}

.state-dropdown:focus {
    outline: none;
    border-color: #21ADE4;
}

.state-go-button {
    padding: 15px 30px;
    font-family: "Figtree";
    font-size: 16px;
    font-weight: 900;
    color: #FFFFFF;
    background: linear-gradient(135deg, #25408E 0%, #21ADE4 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.state-go-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 64, 142, 0.4);
}

.state-go-button:active {
    transform: translateY(0);
    background: linear-gradient(135deg, #21ADE4 0%, #25408E 100%);
}


/* ===== FEATURED DESTINATIONS SECTION ===== */
.featured-destinations-section {
    padding: 88px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.featured-destinations-header {
    margin-bottom: 0;
}

.featured-destinations-title {
    margin-bottom: 0;
}

.featured-destinations-word-animated {
    background: linear-gradient(45deg,
        #25408E 0%,
        #25408E 30%,
        #21ADE4 40%,
        #CE9336 50%,
        #CE9336 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: featured-destinations-gradient-sweep 4s ease-in-out infinite alternate;
}

@keyframes featured-destinations-gradient-sweep {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.featured-destinations-description {
    max-width: 800px;
    margin: 20px auto 50px;
    color: #666;
    padding: 0;
}

.featured-destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    height: 325px;
}

.featured-destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.featured-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 64, 142, 0.50);
}

.featured-destination-card.featured-large {
    grid-row: span 2;
}

.featured-destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.featured-destination-card:hover .featured-destination-image {
    filter: grayscale(0%);
}

.featured-destination-card:hover .featured-destination-title {
    text-shadow: none;
}

.featured-destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.featured-destination-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin: 0;
}

.featured-destination-card:not(.featured-large) .featured-destination-title {
    text-align: left;
}

.featured-destinations-mobile-carousel {
    display: none;
}

.featured-mobile-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
    height: 250px;
    border-radius: 12px;
    overflow: visible;
}

.featured-mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 64, 142, 0.50);
    border-radius: 12px;
    overflow: hidden;
}

.featured-mobile-slide.featured-active {
    opacity: 1;
}

.featured-mobile-slide:hover .featured-mobile-state-name {
    text-shadow: none;
}

.featured-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.featured-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.featured-mobile-state-name {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin: 0;
    text-align: left;
}

.featured-mobile-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 15px rgba(37, 64, 142, 0.50);
}

.featured-mobile-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.featured-mobile-prev {
    left: -20px;
}

.featured-mobile-next {
    right: -20px;
}

/* Additional content styles */
.featured-additional-text {
    max-width: 1000px;
    margin: 50px auto 60px;
    text-align: center;
    color: #555;
    padding: 0 !important;
}

/* Featured Destinations FAQ Section */
.featured-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(37, 64, 142, 0.29);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 64, 142, 0.50);
}

.featured-faq-question {
    background: #ffffff;
    padding: 25px 60px 25px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background 0.3s ease;
}

.featured-faq-item.active .featured-faq-question {
    background: linear-gradient(to bottom, #25408E, #21ADE4);
}

.featured-faq-item.active .featured-faq-question-text {
    color: #fff;
}

.featured-faq-question-text {
    margin: 0;
}

.featured-faq-icon {
    position: absolute;
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.featured-faq-icon-img {
    min-width: 30px;
    height: 30px;
}

.featured-faq-arrow-down {
    display: block;
}

.featured-faq-arrow-up {
    display: none;
    position: absolute;
}

.featured-faq-item.active .featured-faq-arrow-down {
    display: none;
}

.featured-faq-item.active .featured-faq-arrow-up {
    display: block;
}

.featured-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #ffffff;
}

.featured-faq-answer-content {
    padding: 10px 10px 10px 25px;
}

.featured-faq-answer-text {
    margin: 10px 0px;
    padding: 0 !important;
    color: #555;
    max-width: none;
    text-align: left !important;
}

.featured-faq-item.active .featured-faq-answer {
    max-height: 1000px;
}

/* ===== STATE LINKS SECTION ===== */
.state-links-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 20px;
}

.state-links-header {
    text-align: center;
    margin-bottom: 60px;
}

.state-links-title {
    margin: 0;
}

.state-links-grid {
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    max-width: 740px;
    margin: 0 auto;*/
    column-count: 2;
    column-gap: 60px;
    max-width: 760px;
    margin: 40px auto;
}

.state-link-item {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #242021 !important;
    font-weight: 400 !important;
    
}

.state-link-item:hover {
    transform: translateX(5px);
    color: #25408E !important;
    text-decoration: underline !important;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    width: 100%;
    /*margin-left: calc(50% - 50vw);*/
    margin-top: 0;
    margin-bottom: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-image: url('https://travelnursesinc.com/wp-content/uploads/2025/09/Rectangle-25-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
}

.cta-heading {
    font-family: "Figtree";
    color: white;
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #25408E !important;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Figtree";
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover,
.cta-button:focus {
    color: #fff;
    background: #21ade4;
    border: 2px solid #21ade4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, .6) 30%, #000 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    -webkit-animation: cta-shine 2s infinite;
    animation: cta-shine 2s infinite;
}

@keyframes cta-shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}

.cta-mobile-break {
    display: none;
}

/* ===== RESPONSIVE ===== */
/* Tablet */
@media (max-width: 768px) {
    /* ===== MAP HERO SECTION ===== */
    .benefits-hero-header {
        padding: 60px 15px 0px 15px;
    }
    .map-hero-section {
        padding: 60px 15px;
    }

    .map-container {
        padding: 30px 15px;
    }

    .mobile-state-selector {
        display: block;
    }
    /* ===== MAP HERO SECTION ===== */

    /* ===== FEATURED DESTINATION SECTION ===== */

    .featured-destinations-section {
        padding: 40px 15px;
    }
    .featured-destinations-grid {
        display: none;
    }
    .featured-destinations-mobile-carousel {
        display: block;
    }
    .featured-additional-text {
        margin: 40px auto 50px;
    }
    .featured-faq-question {
        padding: 20px 50px 20px 20px;
    }
    .featured-faq-answer-content {
        padding: 10px 10px 10px 25px;
    }
    .featured-faq-icon {
        right: 20px;
    }

    /* ===== FEATURED DESTINATION SECTION ===== */

    /* ===== STATE LINKS SECTION ===== */
    .state-links-section {
        padding: 40px 15px;
    }
    .state-links-header {
        margin-bottom: 40px;
    }
    /*.state-links-grid {
        gap: 15px 40px;
    }*/
    .state-links-grid {
        column-count: 1;
      }
    /* ===== STATE LINKS SECTION ===== */

    /* ===== CTA SECTION ===== */
    .cta-section {
        min-height: 250px;
        padding: 60px 20px;
    }
    .cta-heading {
        font-size: 40px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    /* ===== CTA SECTION ===== */
}

@media(max-width:500px){
    .state-links-grid{
        text-align: center;
    }
}
/* Mobile */
@media (max-width: 480px) {

    /* ===== MAP HERO SECTION ===== */
    .map-hero-section {
        padding: 50px 15px;
    }
    .benefits-hero-header {
        padding: 60px 15px 0px;
    }
    .mobile-state-selector {
        padding: 20px 10px;
    }

    .state-dropdown-container {
        flex-direction: column;
        gap: 15px;
    }

    .state-go-button {
        width: 100%;
        border-radius: 30px;
    }
    /* ===== MAP HERO SECTION ===== */

    /* ===== FEATURED DESTINATION SECTION ===== */
    .featured-faq-question {
        padding: 18px 45px 18px 18px;
    }
    .featured-faq-answer-content {
        padding: 10px 10px 10px 25px;
    }
    .featured-faq-icon {
        right: 18px;
        width: 26px;
        height: 26px;
    }
    /* ===== FEATURED DESTINATION SECTION ===== */

    /* ===== STATE LINKS SECTION ===== */
    .state-links-section {
        padding: 40px 15px;
    }
    .state-links-header {
        margin-bottom: 30px;
    }
    /*.state-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }*/
    /* ===== STATE LINKS SECTION ===== */

    /* ===== CTA SECTION ===== */
    .cta-section {
        min-height: 200px;
        padding: 50px 15px;
    }
    .cta-heading {
        font-size: 32px;
        line-height: 1 !important;
    }
    .cta-mobile-break {
        display: block;
    }
    .cta-button {
        padding: 12px 25px;
    }
    /* ===== CTA SECTION ===== */

}

