﻿body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
}

/* Scroll-triggered animations */
[data-animate] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: var(--animate-duration, 900ms);
    transition-delay: var(--animate-delay, 0ms);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
}

[data-animate]:not(.is-visible) {
    transform: translate3d(0, 30px, 0);
}

[data-animate="fade-left"]:not(.is-visible) {
    transform: translate3d(40px, 0, 0);
}

[data-animate="fade-right"]:not(.is-visible) {
    transform: translate3d(-40px, 0, 0);
}

[data-animate="zoom-in"]:not(.is-visible) {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition-duration: 0ms !important;
        transition-delay: 0ms !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* NAVBAR */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #0088FF !important;
    width: 50px !important;
}

.navbar-brand img {
    width: 115px;
    height: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #0088FF !important;
    margin-right: 18px;
    position: relative;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .btn-primary {
    padding: 8px 18px;
    border-radius: 8px;
}

/* HERO */
.hero {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0088FF;
}

.hero p {
    color: #555;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    background-image: url('/assets/img/hero.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 520px;
    border-radius: 28px;
}

/* HERO â€“ MOBILE FIX */
@media (max-width: 768px) {

    /* tengah-kan konten */
    .hero-content {
        top: 16% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    /* tombol daftar + play */
    .hero-content .d-flex {
        justify-content: center !important;
    }

    .hero-content .btn {
        font-size: 0.85rem !important;
        padding: 7px 18px !important;
    }

    .hero-content .play-btn {
        width: 42px !important;
        height: 42px !important;
        margin-left: 10px !important;
    }
}


/* TENTANG */
.section-title {
    font-weight: 700;
    color: #0088FF;
    margin-bottom: 20px;
}

/* ALASAN - SESUAI FIGMA */
.section-reason-title {
    font-weight: 700;
    color: #0088FF;
}

.reason-item {
    text-align: center;
    margin-bottom: 35px;
}

.reason-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #F9CE4B;
    /* biru tua seperti figma */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.reason-icon i {
    font-size: 1.7rem;
    color: #ffffff;
}

.reason-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #111827;
}

.reason-text {
    font-size: 0.85rem;
    color: #6b7280;
    max-width: 230px;
    margin: 0 auto;
}

/* responsif */
@media (max-width: 768px) {
    .reason-item {
        margin-bottom: 28px;
    }
}

/* PROSES PENDAFTARAN â€“ SESUAI FIGMA */
.section-process {
    padding: 90px 0;
    background: radial-gradient(circle at top left,
            #f4f7ff 0,
            #ffffff 45%,
            #f4f7ff 100%);
}

.process-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    color: #0088FF;
}

/* daftar langkah kiri */
.process-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F9CE4B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 1.7rem;
    color: #ffffff;
}

.process-text-title {
    font-weight: 600;
    font-size: 0.98rem;
    color: #111827;
    margin-bottom: 4px;
}

.process-text-desc {
    font-size: 0.87rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* gambar card kanan (1 gambar utuh) */
.process-card-wrapper {
    display: flex;
    justify-content: center;
}

.process-card-image {
    max-width: 460px;
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

/* responsif */
@media (max-width: 768px) {
    .section-process {
        padding: 60px 0;
    }

    .process-title {
        font-size: 1.6rem;
    }

    .process-card-wrapper {
        margin-top: 24px;
    }
}

/* TESTIMONI â€“ CARD FIGMA */
.section-testimoni-title-small {
    font-size: 0.95rem;
    color: #6b7280;
}

.section-testimoni-title-main {
    font-weight: 700;
    font-size: 1.6rem;
    color: #111827;
}

.testi-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 22px 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-stars {
    color: #f6b100;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 0.88rem;
    color: #4b5563;
    margin-bottom: 18px;
}

.testi-footer {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 2px;
}

.testi-sub {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* CTA BIRU â€“ SIAP MEMULAI PERJALANAN */
.cta-section {
    padding: 40px 0 80px;
}

.cta-box {
    background: #0088FF;
    border-radius: 28px;
    padding: 35px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.cta-img-wrapper {
    display: flex;
    justify-content: center;
}

.cta-img {
    max-height: 260px;
    width: auto;
}

.cta-title {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 460px;
}

.cta-btn {
    margin-top: 18px;
    background: #ffffff;
    color: #0088FF;
    border-radius: 999px;
    padding: 8px 26px;
    font-weight: 500;
    border: none;
    display: inline-flex;
    align-items: center;
}

.cta-btn i {
    margin-right: 6px;
}

/* responsif */
@media (max-width: 768px) {
    .cta-box {
        padding: 24px 20px;
        text-align: center;
        flex-direction: column;
    }

    .cta-img-wrapper {
        margin-bottom: 12px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        margin: 0 auto;
    }
}

/* FOOTER â€“ STYLE FIGMA MODERN */
.footer {
    background: #0088FF;
    color: #ffffff;
    padding: 55px 0 35px;
}

.footer .footer-logo img {
    width: 115px;
    height: auto;
}

.footer-desc {
    font-size: 0.87rem;
    line-height: 1.55;
    opacity: 0.95;
}

.footer-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-link {
    display: block;
    color: #eaf3ff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: #ffffff;
    margin-left: 3px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-item i {
    font-size: 1rem;
    margin-right: 10px;
    padding-top: 3px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: #0088FF;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #e8f0ff;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 35px;
    padding-top: 15px;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0088FF;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 99999;
    /* lebih tinggi dari navbar & hero */
    transition: 0.3s;
}

.floating-wa i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.floating-wa:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
    text-decoration: none;
}

/* kalau mau sedikit lebih rapat di mobile tapi tetap muncul */
@media (max-width: 768px) {
    .floating-wa {
        bottom: 16px;
        right: 16px;
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}


/* SECTION PAKET UMROH */
.section-package-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #111827;
}

.section-package-subtitle {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* KARTU PAKET */
.package-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #eef2ff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 70px rgba(15, 23, 42, 0.12);
}

.package-showcase-image {
    position: relative;
    padding: 22px 24px 0;
}

.package-showcase-img {
    width: 100%;
    border-radius: 26px;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.package-seat-banner {
    position: absolute;
    top: 34px;
    right: 38px;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px 16px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.2);
    text-align: right;
}

.package-seat-banner span {
    font-weight: 700;
    font-size: 0.82rem;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-seat-banner small {
    display: block;
    font-size: 0.78rem;
    color: #0f172a;
    margin-top: 4px;
}

.package-price-sticker {
    position: absolute;
    top: 34px;
    left: 34px;
    background: #ffffff;
    border-radius: 18px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.package-price-sticker p {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.package-price-sticker h5 {
    margin: 6px 0 2px;
    font-size: 1.1rem;
    color: #16a34a;
    font-weight: 700;
}

.package-price-sticker small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.package-floating-info {
    position: absolute;
    left: 34px;
    bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.package-floating-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 12px 16px;
    min-width: 160px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.package-floating-box .title {
    margin: 0 0 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.package-floating-box .value {
    margin: 0;
    font-weight: 600;
    font-size: 0.85rem;
    color: #0f172a;
}

.package-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.package-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.package-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.package-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.package-seat-chip {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: #0f8a45;
    font-weight: 600;
    font-size: 0.82rem;
}

.package-feature-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(60px, 1fr));
    gap: 12px;
    text-align: center;
}

.package-feature-icons i {
    font-size: 1.2rem;
    color: #0088FF;
    margin-bottom: 6px;
}

.package-feature-icons span {
    display: block;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
}

.package-benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

.package-benefit-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.package-benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0088FF;
    font-size: 1.2rem;
    line-height: 1;
}

.package-price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.package-price-line .price-text {
    font-weight: 700;
    font-size: 1.35rem;
    color: #16a34a;
}

.package-price-line small {
    font-size: 0.85rem;
    color: #94a3b8;
}

.package-btn {
    width: 100%;
    background: #0088FF;
    border-radius: 999px;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.25s;
}

.package-btn:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .package-showcase-image {
        padding: 18px 18px 0;
    }

    .package-showcase-img {
        height: 100%;
    }

    .package-seat-banner,
    .package-price-sticker {
        position: static;
        display: inline-flex;
        flex-direction: column;
        margin-top: 12px;
        margin-right: 8px;
    }

    .package-floating-info {
        position: static;
        margin-top: 16px;
    }

    .package-feature-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* SECTION FORM PERENCANAAN UMROH */
.section-plan {
    background: #f5f7fb;
}

/* card utama */
.plan-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* gambar kiri */
.plan-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* teks kanan */
.plan-title {
    font-weight: 700;
    font-size: 1.35rem;
    color: #111827;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

/* form */
.plan-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
}

/* button */
.plan-btn {
    background: #0088FF;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 0;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.plan-btn:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-1px);
}

/* responsive */
@media (max-width: 768px) {
    .plan-card {
        padding: 20px 16px;
    }

    .plan-title {
        font-size: 1.2rem;
    }

    .plan-img {
        margin-bottom: 10px;
    }
}

/* INPUT & SELECT DI FORM PLAN */
.plan-input {
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
    font-size: 0.9rem !important;
    padding: 9px 12px !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
}

/* fokus: border biru + outline lembut */
.plan-input:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25) !important;
    outline: none !important;
}

/* placeholder / option pertama */
.plan-input::placeholder {
    color: #9ca3af;
}

/* ABOUT PAGE */
.about-hero {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.75), rgba(15, 23, 42, 0.85)),
        url('/assets/img/about.png') center/cover;
    color: #ffffff;
}

.about-hero-label {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
}

.about-hero-title {
    font-weight: 700;
    font-size: 2.75rem;
    letter-spacing: 0.05em;
    margin-top: 15px;
}

.about-hero-text {
    font-size: 1rem;
    color: #e2e8f0;
    max-width: 820px;
    margin: 15px auto 0 auto;
    line-height: 1.7;
}

.about-section {
    background: #f8fafc;
}

.about-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.about-card+.about-card {
    margin-top: 1.5rem;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: #0088FF;
}

.about-pill.secondary {
    background: #161e63;
}

.about-card-title {
    font-weight: 700;
    color: #111827;
}

.about-card-text,
.about-list li {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-list {
    padding-left: 18px;
    margin-bottom: 0;
}

.about-list li {
    margin-bottom: 8px;
}

.about-card-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.about-stats {
    background: #ffffff;
}

.stat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.stat-value {
    font-weight: 700;
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #4b5563;
}

.company-card {
    background: #f8fafc;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.about-meta li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 6px;
}

.text-purple {
    color: #a855f7 !important;
}

@media (max-width: 767px) {
    .about-hero {
        padding: 110px 0 80px;
    }

    .about-card {
        padding: 24px;
    }
}

/* SCHEDULE PAGE */
.schedule-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0088FF 0%, #161e63 60%);
    color: #ffffff;
    text-align: center;
}

.schedule-hero-label {
    display: inline-flex;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.schedule-hero-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin: 18px auto 12px;
    max-width: 820px;
}

.schedule-hero-text {
    color: #e0ecff;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
}

.schedule-wrapper {
    background: #f5f7fb;
}

.schedule-preview-section {
    background: #f8fbff;
}

.schedule-preview-label {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 136, 255, 0.1);
    color: #0088FF;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.schedule-preview-title {
    font-weight: 700;
    font-size: 2rem;
    color: #0f172a;
    margin: 16px 0 10px;
}

.schedule-preview-text {
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
}

.schedule-preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.schedule-preview-cards .package-card {
    height: 100%;
}

.package-grid-wrapper {
    background: #f8fafc;
}

.package-grid-wrapper .package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-grid-wrapper .package-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.schedule-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #e6ecfb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    margin-bottom: 24px;
    position: relative;
}

.schedule-card--highlight {
    border-color: rgba(0, 136, 255, 0.4);
    box-shadow: 0 28px 60px rgba(0, 136, 255, 0.15);
}

.schedule-card-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(150px, 0.9fr)) minmax(200px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.schedule-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #f2f6ff;
    border: 1px solid #dbe5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0088FF;
}

.schedule-month {
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.schedule-package-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.schedule-package {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.schedule-package-duration {
    font-size: 0.9rem;
    color: #94a3b8;
}

.schedule-hotel-block {
    text-align: left;
}

.schedule-card-top>.schedule-hotel-block {
    padding-left: 24px;
    border-left: 1px solid #eef2ff;
}

.schedule-hotel-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
}

.schedule-hotel-value {
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.schedule-badge--success {
    background: rgba(34, 197, 94, 0.15);
    color: #0f8a45;
}

.schedule-badge--info {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.schedule-badge--warning {
    background: rgba(251, 191, 36, 0.2);
    color: #b45309;
}

.schedule-badge--danger {
    background: rgba(248, 113, 113, 0.2);
    color: #b91c1c;
}

.schedule-badge--outline {
    border: 1px dashed rgba(0, 136, 255, 0.35);
    color: #0088FF;
    background: transparent;
}

.schedule-price-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-price {
    font-weight: 700;
    font-size: 1.8rem;
    color: #16a34a;
    margin-bottom: 0;
}

.schedule-price-block {
    text-align: right;
}

.schedule-price-cta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.schedule-action-block {
    text-align: right;
}

.schedule-btn {
    border-radius: 14px;
    font-weight: 600;
    padding: 12px 28px;
    box-shadow: 0 10px 25px rgba(0, 136, 255, 0.25);
}

.schedule-link {
    font-weight: 600;
    color: #0088FF;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.schedule-link:focus {
    outline: none;
}

.schedule-toggle {
    cursor: pointer;
}

.schedule-divider {
    height: 1px;
    background: #eef2ff;
}

.schedule-card-middle {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #edf1fb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.schedule-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
}

.schedule-details {
    border-top: 1px solid #eef2ff;
    margin-top: 18px;
    padding-top: 20px;
}

.schedule-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.schedule-detail-card {
    border: 1px solid #edf1fb;
    border-radius: 22px;
    padding: 20px;
    background: #fbfdff;
}

.detail-list {
    margin-top: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0, 136, 255, 0.08);
    color: #0088FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.detail-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.detail-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.detail-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
}

.data-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: #475569;
}

.data-loader--inline {
    justify-content: flex-start;
    padding: 12px 0;
}

.loader-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(0, 136, 255, 0.15);
    border-top-color: #0088FF;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .schedule-card {
        padding: 20px;
    }

    .schedule-card-top {
        grid-template-columns: 1fr;
    }

    .schedule-card-top>.schedule-hotel-block {
        border-left: 0;
        padding-left: 0;
    }

    .schedule-package-block {
        align-items: flex-start;
        gap: 12px;
    }

    .schedule-price-cta {
        align-items: flex-start;
        width: 100%;
    }

    .schedule-price-block,
    .schedule-action-block {
        text-align: left;
        width: 100%;
    }

    .schedule-card-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .schedule-badges {
        width: 100%;
    }

    .schedule-btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .schedule-card-top {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .schedule-price-cta {
        align-items: flex-start;
    }
