/* Home page — extracted from Home.aspx inline <style>. Scoped under .page-home. */

.page-home .sisf-e-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.page-home .sisf-e-badge--offer {
    background-color: var(--main-color);
    color: #ffffff;
}

/* Featured Cruises Section */
.page-home .featured-cruises-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.page-home .featured-cruise-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.page-home .featured-cruise-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.page-home .featured-cruise-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.page-home .featured-cruise-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.page-home .featured-cruise-card:hover .featured-cruise-card-image img {
    transform: scale(1.05);
}

.page-home .featured-cruise-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-home .featured-cruise-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.page-home .featured-cruise-card-title a {
    color: #000;
    text-decoration: none;
    line-height: 22px
}

.page-home .featured-cruise-card-title a:hover {
    color: var(--main-color);
}

.page-home .featured-cruise-card-type {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.page-home .featured-cruise-card .btn-default {
    font-size: 13px;
    padding: 12px 20px;
    margin-top: auto;
}

.page-home .our-services-section .sisf-services-column .services-icon {
    background: #F7F7F7;
    padding: 15px 0;
    position: relative;
    flex-shrink: 0;
    width: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15px;
}

.page-home .our-services-section .sisf-services-column .services-icon i {
    font-size: 48px;
    color: var(--main-color);
    transition: 0.2s ease-in-out;
}

.page-home .our-services-section .sisf-services-column:hover .services-icon i {
    color: #000000;
    transition: 0.2s ease-in-out;
}

.page-home .our-services-section .sisf-services-column {
    align-items: flex-start;
}

.page-home .our-services-section .line-icon::before {
    height: 100%;
}

/* Hero non-swiper wrappers (same layout as swiper without swiper JS) */
.page-home .hero-swiper-slide {
    position: relative;
}

/* Hero Enhanced */
.page-home .hero-subtitle {
    font-size: 29px !important;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color) !important;
    margin-bottom: 10px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.4s;
}

.page-home .hero-supporting-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.3;
    max-width: 620px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.6s;
}

.page-home .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: -52px;
    position: relative;
    z-index: 20;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.8s;
}

.page-home .hero-ctas a {
    pointer-events: auto;
    cursor: pointer;
}

.page-home .hero-ctas-secondary {
    display: flex;
    gap: 14px;
}

.page-home .hero-cta-outlined {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-family: var(--default-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-home .hero-cta-outlined:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fast Facts Strip */
.page-home .fast-facts-strip {
    background: #fafafa;
    padding: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

.page-home .fast-fact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    padding: 20px 18px;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.page-home .fast-fact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-home .fast-fact-icon i {
    font-size: 16px;
    color: var(--main-color);
}

.page-home .fast-fact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.page-home .fast-fact-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--main-color);
}

.page-home .fast-fact-value {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
}

.page-home .fast-fact-value small {
    font-size: 11px;
    font-weight: 400;
    color: #000;
    font-style: italic;
}

.page-home .hero-trust-line {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: 0.5px;
}

.page-home .hero-trust-line i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 12px;
    margin-right: 8px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .page-home .fast-fact {
        padding: 15px 14px;
        margin-bottom: 12px;
    }

    .page-home .hero-ctas-secondary {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .page-home .hero-cta-outlined {
        width: 100%;
        text-align: center;
    }

    .page-home .hero-supporting-text {
        font-size: 15px;
        padding: 0 10px;
    }

    .page-home .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* Cruise Categories Section */
.page-home .cruise-categories-section {
    padding: 70px 0;
}

.page-home .cruise-category-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.page-home .cruise-category-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.page-home .cruise-category-card-image {
    height: 260px;
    overflow: hidden;
}

.page-home .cruise-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.page-home .cruise-category-card:hover .cruise-category-card-image img {
    transform: scale(1.05);
}

.page-home .cruise-category-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-home .cruise-category-card-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.page-home .cruise-category-card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-home .cruise-category-card-body .btn-default {
    font-size: 13px;
    padding: 12px 24px;
}

/* Why Choose Us Section */
.page-home .why-choose-section {
    padding: 70px 0;
}

.page-home .why-choose-item {
    padding: 30px 16px;
}

.page-home .why-choose-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-home .why-choose-item:hover .why-choose-icon {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.page-home .why-choose-icon i {
    font-size: 32px;
    color: var(--main-color);
}

.page-home .why-choose-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.page-home .why-choose-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-home .why-choose-item {
        padding: 20px 10px;
    }
}

/* Experience Highlights Section */
.page-home .experience-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.page-home .experience-image {
    border-radius: 8px;
    overflow: hidden;
}

.page-home .experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-home .experience-text {
    font-size: 17px;
    line-height: 1.8;
    color: #000;
}

/* Inclusions Preview Section */
.page-home .inclusions-section {
    padding: 70px 0;
}

.page-home .inclusion-item {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.page-home .inclusion-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    font-size: 22px;
    color: var(--main-color);
}

.page-home .inclusion-item span {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.page-home .inclusions-transfer-note {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.page-home .inclusions-transfer-note i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--main-color);
    color: #ffffff;
    font-size: 12px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Trust Reviews Section */
.page-home .trust-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.page-home .trust-text {
    font-size: 17px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.page-home .trust-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-home .trust-score-stars i {
    color: #fbbc04;
    font-size: 18px;
}

.page-home .trust-score-value {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.page-home .trust-score-source {
    font-size: 14px;
    color: #888;
}

.page-home .trust-image {
    border-radius: 8px;
    overflow: hidden;
}

.page-home .trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* How It Works Section */
.page-home .how-it-works-section {
    padding: 70px 0;
}

.page-home .hiw-step-number {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-home .hiw-step:hover .hiw-step-number {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.page-home .hiw-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.page-home .hiw-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
}

/* FAQ Section */
.page-home .faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.page-home .faq-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 24px;
}

.page-home .faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.page-home .faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.page-home .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.page-home .faq-question i {
    font-size: 13px;
    color: var(--main-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.page-home .faq-question.active i {
    transform: rotate(180deg);
}

.page-home .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.page-home .faq-answer p {
    padding: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

/* Final CTA Section */
.page-home .final-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.page-home .final-cta-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-home .final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .final-cta-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-home .final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.page-home .final-cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.page-home .final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .page-home .final-cta-section {
        padding: 80px 0;
    }

    .page-home .final-cta-buttons {
        flex-direction: column;
    }

    .page-home .final-cta-buttons .hero-cta-outlined {
        width: 100%;
        text-align: center;
    }
}
