:root {
    --bg-primary: #FAFCFC;
    --text-primary: #004D5A;
    --emerald: #004D5A;
    --emerald-light: #BAF3E6;
    --blue: #008796;
    --purple: #00687A;
    --orange: #F5A623;
    --white: #ffffff;
    --gray-100: #E6F2F0;
    --gray-200: #D1E5E1;
    --gray-300: #A8C9C4;
    --gray-400: #669299;
    --gray-500: #4D7B82;
    --shadow-sm: 0 1px 2px rgba(0, 77, 90, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 77, 90, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 77, 90, 0.1), 0 10px 10px -5px rgba(0, 77, 90, 0.04);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 108px;
    /* Space for fixed header and top bar */
}

.bus-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    direction: ltr;
    white-space: nowrap;
    margin-top: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: linear-gradient(135deg, rgba(186, 243, 230, 0.25), rgba(242, 250, 248, 0.4));
    border-radius: var(--radius);
    padding: 1rem 0;
}

.bus-marquee::-webkit-scrollbar {
    display: none;
}

.bus-marquee-content {
    display: inline-flex;
    gap: 1rem;
    padding: 0 0.5rem;
}

.bus-marquee-item {
    display: inline-flex;
    position: relative;
    flex-shrink: 0;
    width: 260px;
    height: 190px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 77, 90, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.bus-marquee-item:hover {
    transform: scale(1.04);
    z-index: 1;
}

.bus-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bus-marquee-label {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0.45rem 0.65rem;
    background: linear-gradient(to top, rgba(0, 40, 60, 0.85), transparent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .bus-marquee-item { width: 200px; height: 150px; }
    .bus-marquee { margin-top: 1.5rem; padding: 0.75rem 0; }
}

@media (max-width: 420px) {
    .bus-marquee-item { width: 170px; height: 125px; }
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #004D5A;
    color: #ffffff;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 1rem;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.45rem 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid #8be6cc;
    background: rgb(139 230 204);
    color: #2b5f6a;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.header-details-btn:hover {
    background: rgba(245, 166, 35, 0.22);
}

.header-details-btn svg {
    width: 18px;
    height: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--emerald);
    text-decoration: none;
}

.logo .icon-kaaba {
    width: 38px;
    height: 38px;
    color: var(--emerald);
}

.site-logo-img {
    width: 90px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 14px;


}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--emerald);
}

.header-btn {
    background: var(--emerald);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background: #003B45;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--emerald);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    border-color: var(--emerald);
    background: var(--emerald-light);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-header-cta {
    padding: 9px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    color: #1b4e59;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    border: 1px solid #dddddd;
}

.mobile-header-cta svg {
    width: 16px;
    height: 16px;
}

.mobile-header-cta:hover {
    background: #003B45;
}

/* Page Header & Slider */
.slider-section {
    padding: 1.5rem 0 2rem;
    background-color: var(--emerald-light);
    margin-bottom: -1rem;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
}

@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 100% !important;
    }

}

.hero-content {
    flex: 1;
    max-width: 580px;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 520px;
    z-index: 1;
}



.hero-booking-wide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 54px;
    border-radius: 12px;
    background: var(--emerald);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-booking-wide-btn svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.hero-booking-wide-btn:hover {
    background: #059669;
    box-shadow: 0 20px 34px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* Browser Mockup */
.browser-mockup {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 77, 90, 0.15);
    border: 5px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: transform 0.5s ease;
}


.browser-mockup:hover {
    transform: translateY(-10px);
    z-index: 10 !important;
}

.browser-header {
    background: #f1f5f9;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-title {
    margin-right: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--emerald);
    direction: rtl;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.browser-body {
    line-height: 0;
    background: #fff;
}

.browser-body img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.browser-body video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-video-mockup {
    width: 100%;
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--emerald);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.page-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .page-title {
        justify-content: center;
    }

    .hero-logos {
        justify-content: center;
    }

    .hero-steps-hamala {
        align-items: center !important;
    }

    .hamala-circles {
        justify-content: center !important;
    }

    .hero-btns {
        justify-content: center !important;
    }
}

.hero-desc-c {
    margin: 0 0 1.5rem;
}

.hero-desc-b-q {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
}
.hero-desc-b-a {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}
.hero-underline {
    position: relative;
    color: var(--emerald);
    font-weight: 800;
}
.hero-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--emerald);
    border-radius: 3px;
    opacity: 0.4;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.hero-btn.primary {
    background: var(--emerald);
    color: var(--white);
}

.hero-btn.primary:hover {
    background: #003B45;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.hero-btn.secondary:hover {
    background: rgba(0, 77, 90, 0.05);
}

.hero-steps-hamala {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0.5rem 0 0.5rem;
    position: relative;
    z-index: 2;
}

.hamala-circles {
    display: flex;
    justify-content: flex-start;
    margin-bottom: -16px;
    z-index: 1;
}

.hamala-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #BAF3E6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    color: var(--emerald);
}

.hamala-circle:hover {
    transform: translateY(-5px);
    z-index: 10 !important;
}

.hamala-circle:first-child {}

.hamala-circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hamala-circle-content svg {
    width: 24px;
    height: 24px;
    color: var(--emerald);
}

.hamala-circle-content span {
    font-size: 0.75rem;
    font-weight: 800;
}

.hamala-pill {
    background: #73e7cc;
    color: #004D5A;
    padding: 8px 24px 8px 8px;
    border-radius: 42px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--white);
    z-index: 2;
    position: relative;
    width: fit-content;
}

.hamala-pill-icon {
    background: #004D5A;
    color: #BAF3E6;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 61% 14%, 80% 14%, 84% 32%, 100% 43%, 92% 60%, 98% 78%, 82% 87%, 76% 100%, 59% 91%, 50% 100%, 41% 91%, 24% 100%, 18% 87%, 2% 78%, 8% 60%, 0% 43%, 16% 32%, 20% 14%, 39% 14%);
    overflow: visible;
}

.hamala-pill-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

.icon-kaaba {
    width: 40px;
    height: 40px;
    color: var(--emerald);
}


/* Trip Section */
.trip-section {
    position: relative;
    padding-bottom: 1.15rem;
    padding-top: 0.65rem;
}

.trip-card {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.4rem 0 0;
}

.trip-section-title {
    text-align: center;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Trip Card - Background Image Style */
.trip-card-v2 {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid rgba(115, 231, 204, 0.58);
    box-shadow: 0 10px 24px rgba(0, 77, 90, 0.1);
}

.trip-card-v2:hover {
    transform: translateY(-3px);
    border-color: #73e7cc;
    box-shadow: 0 0 0 4px rgba(115, 231, 204, 0.18), 0 16px 30px rgba(0, 77, 90, 0.14);
}

.trip-card-v2:focus-visible {
    outline: 3px solid rgba(245, 166, 35, 0.72);
    outline-offset: 3px;
}

.trip-card-v2:hover .trip-card-v2-bg {
    transform: scale(1.035);
}

.trip-card-v2-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.trip-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 40, 60, 0.9) 24%, rgba(0, 77, 90, 0.72) 62%, rgba(0, 135, 150, 0.22) 100%);
    z-index: 1;
}

.trip-card-v2-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
}

.trip-card-v2-top-badges {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    z-index: 3;
}

.trip-card-v2-body {
    padding: 44px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    justify-content: flex-end;
}

.trip-card-v2-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.trip-card-v2-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trip-card-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 6px;
    margin: 0;
}

.trip-card-v2-feat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trip-card-v2-feat svg {
    width: 14px;
    height: 14px;
    color: #5ee6b8;
    flex-shrink: 0;
}

.trip-card-v2-bottom {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 9px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.trip-card-v2-price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
    min-width: 0;
}

.trip-card-v2-price-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 600;
}

.trip-card-v2-price-value {
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--emerald);
    text-shadow: none;
}

.trip-card-v2-hotel-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.trip-card-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    background: var(--emerald);
    color: var(--white);
    padding: 0.48rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.booking-start-card {
    padding: 32px 32px 30px;
    border: 1.5px solid #66e7d4;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(250, 255, 252, 0.96), rgba(244, 253, 250, 0.94));
    box-shadow: 0 18px 28px rgba(0, 77, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: right;
    flex: 1;
    min-width: 0;
}

.booking-start-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    max-width: 1136px;
    margin-top: 20px;

}



.booking-start-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.booking-start-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b3941;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.booking-start-kicker strong {
    order: -1;
    color: #fff;
    background: #b83d16;
    border-radius: 999px;
    padding: 3px 9px 4px;
    font-size: 0.74rem;
    font-weight: 800;
}

.booking-start-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef6b36;
    box-shadow: 0 0 0 4px rgba(239, 107, 54, 0.12);
}

.booking-start-content h2 {
    margin: 0;
    max-width: 560px;
    color: #082b31;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: 0;
}

.booking-start-content p {
    max-width: 640px;
    margin: 12px 0 0;
    color: #315a61;
    font-size: 0.92rem;
    line-height: 1.9;
}

.booking-start-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 19px;
    color: #365f65;
    font-size: 0.82rem;
}

.booking-start-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.booking-start-features svg {
    width: 15px;
    height: 15px;
    color: #19a562;
    stroke-width: 2.7;
}

.booking-start-action {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.booking-start-cta {
    width: 240px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 9px;
    background: #2f7f73;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 18px 28px rgba(47, 127, 115, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.booking-start-cta:hover,
.booking-start-cta:focus-visible {
    background: #246b61;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(47, 127, 115, 0.3);
}

.booking-start-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.booking-start-action span {
    color: #56777d;
    font-size: 0.78rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-start-faq {
    margin: 16px auto 0;
    text-align: right;
}

.trip-card-v2:hover .trip-card-v2-btn,
.trip-card-v2-btn:hover {
    background: #003B45;
    transform: translateY(-1px);
}

/* VIP card accent */
.trip-card-v2.vip-card::before {
    background: linear-gradient(to top, rgba(60, 40, 0, 0.9) 24%, rgba(80, 55, 10, 0.72) 62%, rgba(90, 65, 15, 0.22) 100%);
}

.trip-card-v2.vip-card .trip-card-v2-feat svg {
    color: #f0d070;
}

.trip-card-v2.vip-card .trip-card-v2-btn {
    background: #B8892A;
    color: #fff;
}

.trip-card-v2.vip-card:hover .trip-card-v2-btn,
.trip-card-v2.vip-card .trip-card-v2-btn:hover {
    background: #8e681f;
}

.trip-faq-card {
    grid-column: 1 / -1;
    min-height: auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-primary);
    background: rgba(186, 243, 230, 0.35);
    border: 1px solid rgba(0, 77, 90, 0.1);
    padding: 0.85rem;
}

.trip-faq-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-faq-icon svg {
    width: 21px;
    height: 21px;
}

.trip-faq-badge {
    width: fit-content;
    background: var(--emerald-light);
    color: var(--emerald);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.trip-faq-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.trip-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.trip-faq-list details {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 77, 90, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.trip-faq-list summary {
    padding: 0.75rem;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 800;
    list-style: none;
}

.trip-faq-list summary::-webkit-details-marker {
    display: none;
}

.trip-faq-list p {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.best-seller-badge-v2 {
    background: rgba(245, 166, 35, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    z-index: 3;
}

.vip-tag {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.85), rgba(240, 192, 64, 0.85));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.04em;
}

.trip-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    width: fit-content;
    max-width: 100%;
    background: rgba(186, 243, 230, 0.56);
    border: 1px solid rgba(0, 77, 90, 0.08);
    border-radius: 999px;
    padding: 0.28rem 0.35rem 0.28rem 0.9rem;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.trip-header h2 {
    font-size: 0.98rem;
    font-weight: 800;
}

.trip-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.best-seller-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.75rem;
    border-bottom-left-radius: var(--radius-sm);
    z-index: 1;
}

.trip-item:hover {
    border-color: var(--emerald);
    background: var(--emerald-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trip-item-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.trip-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trip-icon svg {
    width: 24px;
    height: 24px;
    color: var(--emerald);
}

.trip-info {
    flex: 1;
    min-width: 0;
}

.trip-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.hotel-name {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.trip-days {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    display: inline-block;
    background: var(--gray-100);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.trip-price {
    text-align: left;
    flex-shrink: 0;
    background: var(--gray-50);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--emerald);
}

/* Compact Info Boxes (ListView) */
.compact-trip-info {
    max-width: 850px;
    margin: -1.5rem auto 2rem;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 19px;
    border-radius: 20px;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 15%);
}

.chat-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    direction: rtl;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 77, 90, 0.25);
}

.chat-avatar svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    flex: 1;
}

.chat-msg {
    background: #dcf8c6;
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a2a;
    line-height: 1.7;
    text-align: right;
    position: relative;
    max-width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    display: inline-block;
}


.chat-msg .msg-time {
    display: inline;
    font-size: 0.62rem;
    color: #6b9b7a;
    font-weight: 500;
    margin-right: 8px;
}

.chat-msg .msg-time svg {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1px;
    color: #5cb3f5;
}

.chat-sender-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 0;
    padding-right: 0;
}

/* Sections */
.features-section,
.reviews-section,
.faq-section,
.how-section {
    padding: 1.35rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: var(--text-primary);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
}

.feature-card {
    background: var(--white);
    padding: 0.85rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.feature-icon.emerald {
    background: var(--emerald);
}

.feature-icon.blue {
    background: var(--blue);
}

.feature-icon.purple {
    background: var(--purple);
}

.feature-icon.orange {
    background: var(--orange);
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* How It Works */
.steps-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-info-section {
    padding: 1.35rem 0;
}

.home-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.home-info-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.home-info-panel .section-title {
    font-size: 1.12rem;
    margin-bottom: 0.75rem;
    text-align: right;
}

.home-info-panel .steps-container,
.home-info-panel .faq-list {
    max-width: none;
    margin: 0;
}

.step-detail {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.step-detail summary {
    padding: 0.7rem 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    user-select: none;
}

.step-detail summary::-webkit-details-marker {
    display: none;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-detail p {
    padding: 0 0.85rem 0.75rem;
    color: var(--gray-500);
    font-size: 0.82rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.review-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.review-meta span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-list details {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-list summary {
    padding: 0.7rem 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

.faq-list p {
    padding: 0 0.85rem 0.75rem;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Available Buses & Hotels */
.available-options-section {
    padding: 2.2rem 0;
    background: var(--white);
}

.available-options-block + .available-options-block {
    margin-top: 2rem;
}

.available-options-head {
    max-width: 720px;
    margin-bottom: 1rem;
    text-align: right;
}

.available-options-head .section-title {
    text-align: right;
    margin-bottom: 0.45rem;
}

.available-options-head p {
    color: var(--gray-500);
    font-size: 0.88rem;
}

.available-options-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.45rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--emerald-light);
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 800;
}

.available-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.bus-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bus-options-grid .available-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 130px;
}

.bus-options-grid .available-card-img {
    height: 100%;
}

.available-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.available-card-img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: var(--gray-100);
}

.available-card-body {
    padding: 0.75rem;
}

.available-card-body h3 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.available-price {
    width: fit-content;
    margin-bottom: 0.7rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.14);
    color: #9A5F00;
    font-size: 0.82rem;
    font-weight: 800;
}

.available-features {
    list-style: none;
    display: grid;
    gap: 0.28rem;
    margin-top: 0.45rem;
}

.available-features li {
    position: relative;
    padding-right: 0.85rem;
    color: var(--gray-500);
    font-size: 0.78rem;
    line-height: 1.45;
}

.available-features li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.duration-price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.duration-price-list span {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 700;
}

.hotel-stars {
    margin-bottom: 0.2rem;
    color: var(--orange);
    letter-spacing: 1px;
    font-size: 0.74rem;
}

.hotel-distance {
    color: var(--gray-500);
    font-size: 0.78rem;
    line-height: 1.45;
}

.hotel-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.hotel-price-grid span {
    padding: 0.55rem;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 700;
}

.hotel-price-grid strong {
    display: block;
    margin-top: 0.15rem;
    color: var(--emerald);
    font-size: 0.95rem;
}

/* Travel Showcase */
.travel-showcase-section {
    padding: 2.8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #F7FBFA 100%);
}

.travel-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: 2.2rem;
}

.travel-showcase-content {
    max-width: 620px;
}

.travel-showcase-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--emerald-light);
    color: var(--emerald);
    font-size: 0.82rem;
    font-weight: 800;
}

.travel-showcase-content .section-title {
    margin-bottom: 0.7rem;
    text-align: right;
}

.travel-showcase-content > p {
    max-width: 560px;
    color: var(--gray-500);
    font-size: 0.98rem;
    line-height: 1.9;
}

.travel-showcase-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.35rem;
    list-style: none;
}

.travel-showcase-points li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.75rem;
    align-items: start;
    padding: 0.75rem;
    border: 1px solid rgba(26, 166, 154, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
}

.travel-showcase-points li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
}

.travel-showcase-points strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--text-primary);
    font-size: 0.94rem;
}

.travel-showcase-points small {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    line-height: 1.7;
}

.travel-showcase-visual {
    position: relative;
    min-height: 410px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 78% 16%, rgba(26, 166, 154, 0.13), transparent 28%),
        radial-gradient(circle at 18% 82%, rgba(15, 118, 178, 0.1), transparent 30%),
        #F2FAF8;
    overflow: hidden;
}

.travel-showcase-visual::before {
    content: "";
    position: absolute;
    inset: 12% 8% auto;
    height: 42%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    filter: blur(2px);
}

.travel-visual-image-wrap {
    position: absolute;
    z-index: 2;
}

.travel-visual-hotels-wrap {
    top: 19%;
    right: 12%;
    left: 16%;
}

.travel-visual-bus-wrap {
    right: 6%;
    bottom: 14%;
    left: 8%;
    z-index: 4;
}

.travel-visual-image {
    display: block;
    width: 100%;
    object-fit: contain;
}

.travel-visual-hotels-image {
    max-height: 205px;
    opacity: 0.96;
    filter: drop-shadow(0 18px 24px rgba(8, 60, 56, 0.12));
}

.travel-visual-bus-image {
    max-height: 230px;
    filter: drop-shadow(0 22px 28px rgba(8, 60, 56, 0.18));
}

.travel-visual-card,
.travel-visual-panel,
.travel-visual-badge {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(15, 46, 59, 0.12);
    backdrop-filter: blur(10px);
}

.travel-visual-card {
    display: grid;
    gap: 0.18rem;
    min-width: 190px;
    padding: 0.72rem 0.85rem;
}

.travel-visual-card span,
.travel-visual-panel span,
.travel-visual-badge small {
    color: var(--gray-500);
    font-size: 0.76rem;
    font-weight: 700;
}

.travel-visual-card strong,
.travel-visual-panel strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.travel-visual-card-top {
    top: 9%;
    right: 9%;
}

.travel-visual-card-bottom {
    right: 12%;
    bottom: 7%;
}

.travel-visual-panel {
    left: 7%;
    bottom: 12%;
    display: grid;
    gap: 0.58rem;
    width: 190px;
    padding: 0.8rem;
}

.travel-visual-panel div {
    display: grid;
    gap: 0.12rem;
    padding-bottom: 0.58rem;
    border-bottom: 1px solid var(--gray-200);
}

.travel-visual-panel div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.travel-visual-badge {
    top: 18%;
    left: 11%;
    display: grid;
    justify-items: center;
    min-width: 84px;
    padding: 0.75rem 0.85rem;
}

.travel-visual-badge span {
    color: var(--emerald);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

/* Service Showcase */
.service-showcase-section {
    padding: 2.8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #F8FCFB 100%);
}

.service-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 2.4rem;
    padding: 1.8rem 0;
}

.service-showcase + .service-showcase {
    border-top: 1px solid var(--gray-200);
}

.service-showcase-reverse {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.service-showcase-reverse .service-showcase-content {
    order: 2;
}

.service-showcase-reverse .service-showcase-visual {
    order: 1;
}

.service-showcase-content {
    order: 2;
    max-width: 620px;
}

.service-showcase-visual {
    order: 1;
}

.service-showcase-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.34rem 0.95rem;
    border-radius: 999px;
    background: var(--emerald-light);
    color: var(--emerald);
    font-size: 0.82rem;
    font-weight: 900;
}

.service-showcase-content .section-title {
    margin-bottom: 0.65rem;
    text-align: right;
    font-size: 1.65rem;
}

.service-showcase-content > p {
    max-width: 560px;
    color: var(--gray-500);
    font-size: 0.96rem;
    line-height: 1.9;
}

.service-feature-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.45rem;
    list-style: none;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.75;
}

.service-feature-list strong {
    font-weight: 800;
}

.service-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(15, 118, 178, 0.16);
    color: var(--blue);
}

.service-feature-icon svg {
    width: 16px;
    height: 16px;
}

.service-showcase-visual {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 72% 22%, rgba(26, 166, 154, 0.12), transparent 30%),
        radial-gradient(circle at 20% 82%, rgba(15, 118, 178, 0.08), transparent 30%),
        #F2FAF8;
    overflow: hidden;
}

.service-showcase-image {
    position: relative;
    z-index: 2;
    display: block;
    width: min(92%, 560px);
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(8, 60, 56, 0.15));
}

.service-floating-card,
.service-floating-badge {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 46, 59, 0.12);
    backdrop-filter: blur(10px);
}

.service-floating-card {
    display: grid;
    gap: 0.18rem;
    min-width: 170px;
    padding: 0.72rem 0.85rem;
}

.service-floating-card span,
.service-floating-badge small {
    color: var(--gray-500);
    font-size: 0.76rem;
    font-weight: 700;
}

.service-floating-card strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.service-floating-card-top {
    top: 9%;
    right: 9%;
}

.service-floating-card-bottom {
    left: 8%;
    bottom: 8%;
}

.service-floating-badge {
    top: 16%;
    left: 10%;
    display: grid;
    justify-items: center;
    min-width: 78px;
    padding: 0.72rem 0.85rem;
}

.service-floating-badge span {
    color: var(--emerald);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 1.5rem 0 0.85rem;
    margin-top: 0.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    text-decoration: none;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.75rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.footer-logo-img {
    width: 155px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.footer-logo-icon {
    width: 46px;
    height: 46px;
    color: var(--emerald);
}

.footer-about {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-links-wrap {
    text-align: right;
}

.footer-links-wrap h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--emerald-light);
}

.footer-copy {
    grid-column: 1 / -1;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-version {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.15rem;
}

.footer-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.mobile-booking-footer,
.trip-popup {
    display: none;
}

.trip-popup-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 104px;
        padding-bottom: 98px;
    }

    .mobile-booking-footer {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: end;
        gap: 0;
        min-height: 64px;
        padding: 0.3rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
        background: var(--white);
        border-top: 1px solid rgba(0, 77, 90, 0.08);
        box-shadow: 0 -4px 20px rgba(0, 77, 90, 0.08);
    }

    .mobile-booking-link,
    .mobile-booking-cta {
        min-width: 0;
        border: 0;
        border-radius: 10px;
        font-family: inherit;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-booking-link {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.35rem 0.1rem;
        color: var(--gray-400);
        font-size: 0.72rem;
        font-weight: 700;
        background: transparent;
        line-height: 1.2;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-booking-link.is-active {
        color: var(--emerald);
    }

    .mobile-booking-link.is-active::before {
        content: "";
        position: absolute;
        top: -0.3rem;
        width: 22px;
        height: 3px;
        border-radius: 999px;
        background: var(--emerald);
    }

    .mobile-booking-link:active {
        background: rgba(186, 243, 230, 0.35);
    }

    .mobile-booking-link-details {
        color: var(--orange);
    }

    .mobile-booking-link-details .mobile-booking-icon {
        width: 26px;
        height: 26px;
    }

    .mobile-booking-link-details.is-active {
        color: var(--orange);
    }

    .mobile-booking-link-details.is-active::before {
        background: var(--orange);
    }

    .mobile-booking-link-details:active {
        background: rgba(245, 166, 35, 0.18);
    }

    .mobile-booking-icon,
    .mobile-booking-cta-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-booking-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-booking-icon svg,
    .mobile-booking-cta-icon svg {
        width: 100%;
        height: 100%;
    }

    .mobile-booking-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0;
        color: var(--white);
        background: transparent;
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1.2;
        transform: translateY(-8px);
    }

    .mobile-booking-cta-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 50%;
        color: var(--white);
        background: var(--emerald);
        box-shadow: 0 4px 16px rgba(0, 77, 90, 0.32);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-booking-cta-icon svg {
        width: 22px;
        height: 22px;
    }

    .mobile-booking-cta:active .mobile-booking-cta-icon {
        transform: scale(0.92);
        box-shadow: 0 2px 8px rgba(0, 77, 90, 0.22);
    }

    .mobile-booking-cta span:last-child {
        color: var(--emerald);
        font-weight: 800;
    }

    .trip-popup {
        position: fixed;
        inset: 0;
        z-index: 1300;
        display: block;
        pointer-events: none;
        visibility: hidden;
    }

    .trip-popup.is-open {
        pointer-events: auto;
        visibility: visible;
    }

    .trip-popup-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 34, 40, 0.54);
        opacity: 0;
        transition: opacity 0.22s ease;
    }

    .trip-popup.is-open .trip-popup-backdrop {
        opacity: 1;
    }

    .trip-popup-panel {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        max-height: min(78vh, 620px);
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
        overflow-y: auto;
        border-radius: 18px 18px 0 0;
        background: var(--white);
        box-shadow: 0 -24px 50px rgba(0, 0, 0, 0.18);
        transform: translateY(105%);
        transition: transform 0.28s ease;
    }

    .trip-popup.is-open .trip-popup-panel {
        transform: translateY(0);
    }

    .trip-popup-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 0.9rem;
    }

    .trip-popup-kicker {
        display: inline-flex;
        margin-bottom: 0.25rem;
        color: var(--orange);
        font-size: 0.78rem;
        font-weight: 900;
    }

    .trip-popup-head h2 {
        color: var(--text-primary);
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .trip-popup-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        background: var(--gray-100);
        color: var(--text-primary);
        cursor: pointer;
    }

    .trip-popup-close svg {
        width: 22px;
        height: 22px;
    }

    .trip-popup-list {
        display: grid;
        gap: 0.72rem;
    }

    .trip-popup-item {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.72rem;
        padding: 0.6rem;
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow-sm);
    }

    .trip-popup-item img {
        width: 72px;
        height: 66px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--gray-100);
    }

    .trip-popup-info {
        min-width: 0;
    }

    .trip-popup-info span {
        display: block;
        margin-bottom: 0.12rem;
        color: var(--gray-500);
        font-size: 0.72rem;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-popup-info h3 {
        color: var(--text-primary);
        font-size: 0.92rem;
        line-height: 1.45;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-popup-info p {
        margin-top: 0.12rem;
        color: var(--emerald);
        font-size: 0.78rem;
        font-weight: 900;
    }

    .trip-popup-select {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0.45rem 0.78rem;
        border-radius: 10px;
        background: var(--emerald);
        color: var(--white);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 900;
        white-space: nowrap;
    }

    .trip-popup-empty {
        padding: 1rem;
        border-radius: 12px;
        background: var(--gray-100);
        color: var(--gray-500);
        text-align: center;
        font-weight: 800;
    }

    .main-header {
        padding: 0.4rem 0;
    }

    .header-container {
        position: relative;
    }

    .site-logo-img {
        width: 98px;
        height: 48px;
    }

    .logo .icon-kaaba {
        width: 36px;
        height: 36px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        box-shadow: var(--shadow-xl);
        overflow: hidden;
        z-index: 1002;
    }

    .main-header.menu-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .mobile-header-cta {
        padding: 0.4rem 0.9rem;
        font-size: 0.78rem;
    }

    .mobile-header-cta svg {
        width: 14px;
        height: 14px;
    }

    .slide {
        flex: 0 0 85%;
        height: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand,
    .footer-links-wrap {
        text-align: center;
    }

    .footer-about {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .booking-start-row {
        flex-direction: column;
    }

    .booking-start-card {
        min-height: 0;
    }

    .trips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trip-faq-card {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
    }

    .travel-showcase {
        grid-template-columns: 1fr;
    }

    .travel-showcase-content {
        max-width: none;
    }

    .travel-showcase-visual {
        min-height: 380px;
    }

    .service-showcase,
    .service-showcase-reverse {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .service-showcase-reverse .service-showcase-content,
    .service-showcase-content,
    .service-showcase-visual,
    .service-showcase-reverse .service-showcase-visual {
        order: initial;
    }

    .service-showcase-content {
        max-width: none;
    }

    .available-cards-grid,
    .bus-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bus-options-grid .available-card {
        display: block;
        min-height: 0;
    }

    .bus-options-grid .available-card-img {
        height: 130px;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 1.35rem;
    }

    .trip-card {
        border-radius: var(--radius);
    }

    .booking-start-card {
        min-height: 0;
        padding: 27px 28px 22px;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }

    .booking-start-content {
        align-items: center;
    }

    .booking-start-kicker {
        justify-content: center;
        margin-bottom: 7px;
    }

    .booking-start-content h2 {
        max-width: 280px;
        font-size: 1.42rem;
        line-height: 1.48;
    }

    .booking-start-content p {
        max-width: 260px;
        margin-top: 7px;
        font-size: 0.78rem;
        line-height: 1.85;
    }

    .booking-start-features {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
        font-size: 0.7rem;
    }

    .booking-start-action {
        width: 100%;
        flex-basis: auto;
        gap: 11px;
    }

    .booking-start-cta {
        width: 100%;
        max-width: 264px;
        min-height: 45px;
        font-size: 0.9rem;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .trip-card-v2 {
        min-height: 178px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .available-options-section {
        padding: 1.6rem 0;
    }

    .travel-showcase-section {
        padding: 1.8rem 0;
    }

    .service-showcase-section {
        padding: 1.4rem 0;
    }

    .service-showcase {
        padding: 1.25rem 0;
    }

    .service-showcase-content .section-title {
        font-size: 1.35rem;
    }

    .service-showcase-content > p {
        font-size: 0.88rem;
    }

    .service-feature-list {
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .service-feature-list li {
        align-items: flex-start;
        font-size: 0.88rem;
    }

    .service-showcase-visual {
        min-height: 240px;
        border-radius: var(--radius-sm);
    }

    .service-showcase-image {
        width: min(96%, 420px);
        max-height: 220px;
    }

    .service-floating-card {
        min-width: 132px;
        padding: 0.56rem 0.65rem;
    }

    .service-floating-card span,
    .service-floating-badge small {
        font-size: 0.66rem;
    }

    .service-floating-card strong {
        font-size: 0.76rem;
    }

    .service-floating-card-top {
        top: 6%;
        right: 5%;
    }

    .service-floating-card-bottom {
        left: 5%;
        bottom: 6%;
    }

    .service-floating-badge {
        top: 7%;
        left: 5%;
        min-width: 62px;
        padding: 0.55rem;
    }

    .service-floating-badge span {
        font-size: 1.18rem;
    }

    .travel-showcase {
        gap: 1.4rem;
    }

    .travel-showcase-content .section-title {
        font-size: 1.35rem;
    }

    .travel-showcase-content > p {
        font-size: 0.88rem;
    }

    .travel-showcase-points li {
        padding: 0.68rem;
    }

    .travel-showcase-visual {
        min-height: 330px;
        border-radius: var(--radius-sm);
    }

    .travel-visual-hotels-wrap {
        top: 19%;
        right: 6%;
        left: 8%;
    }

    .travel-visual-bus-wrap {
        right: 1%;
        bottom: 21%;
        left: 1%;
    }

    .travel-visual-hotels-image {
        max-height: 150px;
    }

    .travel-visual-bus-image {
        max-height: 175px;
    }

    .travel-visual-card {
        min-width: 150px;
        padding: 0.62rem 0.7rem;
    }

    .travel-visual-card-top {
        top: 6%;
        right: 5%;
    }

    .travel-visual-card-bottom {
        right: 6%;
        bottom: 6%;
    }

    .travel-visual-panel {
        left: 5%;
        bottom: 7%;
        width: 155px;
        padding: 0.65rem;
    }

    .travel-visual-badge {
        top: 7%;
        left: 5%;
        min-width: 70px;
        padding: 0.6rem;
    }

    .travel-visual-badge span {
        font-size: 1.35rem;
    }

    .available-cards-grid,
    .bus-options-grid {
        display: flex;
        gap: 0.7rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.45rem;
        -webkit-overflow-scrolling: touch;
    }

    .available-cards-grid::-webkit-scrollbar {
        height: 4px;
    }

    .available-cards-grid::-webkit-scrollbar-track {
        background: var(--gray-100);
        border-radius: 999px;
    }

    .available-cards-grid::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 999px;
    }

    .available-card {
        flex: 0 0 calc((100% - 0.7rem) / 2);
        scroll-snap-align: start;
    }

    .available-card-img,
    .bus-options-grid .available-card-img {
        height: 105px;
    }

    .available-card-body {
        padding: 0.65rem;
    }

    .available-card-body h3 {
        font-size: 0.86rem;
    }

    .available-features li,
    .hotel-distance {
        font-size: 0.72rem;
    }

    .hotel-price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .service-showcase-visual {
        min-height: 210px;
    }

    .service-showcase-image {
        max-height: 190px;
    }

    .service-floating-card {
        min-width: 118px;
    }

    .service-floating-card strong {
        font-size: 0.7rem;
    }

    .travel-showcase-visual {
        min-height: 300px;
    }

    .travel-visual-hotels-wrap {
        top: 20%;
        right: 4%;
        left: 4%;
    }

    .travel-visual-bus-wrap {
        bottom: 24%;
    }

    .travel-visual-hotels-image {
        max-height: 128px;
    }

    .travel-visual-bus-image {
        max-height: 152px;
    }

    .travel-visual-panel {
        width: 138px;
    }

    .travel-visual-card {
        min-width: 138px;
    }

    .travel-visual-card strong,
    .travel-visual-panel strong {
        font-size: 0.78rem;
    }

    .travel-visual-card span,
    .travel-visual-panel span,
    .travel-visual-badge small {
        font-size: 0.68rem;
    }

    .available-card {
        flex-basis: calc((100% - 0.6rem) / 2);
    }

    .available-card-img,
    .bus-options-grid .available-card-img {
        height: 92px;
    }
}

@media (max-width: 380px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.home-content-box-details {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.home-content-box-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    list-style: none;
    user-select: none;
    background: rgba(254, 243, 199, 0.5);
    transition: background 0.2s ease;
}

.home-content-box-summary::-webkit-details-marker {
    display: none;
}

.home-content-box-summary:hover {
    background: rgba(254, 243, 199, 0.75);
}

.home-content-box-summary-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-content-box-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.home-content-box-details[open] .home-content-box-chevron {
    transform: rotate(180deg);
}

.home-content-box-body {
    padding: 1rem 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 0.92rem;
}

.home-content-box-body p {
    margin: 0 0 0.75rem;
}

.home-content-box-body p:last-child {
    margin-bottom: 0;
}

.home-content-box-body ul,
.home-content-box-body ol {
    margin: 0.5rem 0;
    padding-right: 1.5rem;
}

.home-content-box-body strong {
    font-weight: 700;
}

@media (max-width: 640px) {
    .home-content-box-summary {
        font-size: 0.92rem;
        padding: 0.75rem 1rem;
    }

    .home-content-box-body {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

.trips-schedule-section {
    padding: 1rem 0;
}

.trips-schedule-details {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.trips-schedule-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    list-style: none;
    user-select: none;
    background: rgba(186, 243, 230, 0.25);
    transition: background 0.2s ease;
}

.trips-schedule-summary::-webkit-details-marker {
    display: none;
}

.trips-schedule-summary:hover {
    background: rgba(186, 243, 230, 0.45);
}

.trips-schedule-summary-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trips-schedule-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.trips-schedule-details[open] .trips-schedule-chevron {
    transform: rotate(180deg);
}

.trips-schedule-table-wrap {
    padding: 0.75rem;
}

.trips-schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.trips-schedule-table thead {
    background: var(--emerald);
    color: var(--white);
}

.trips-schedule-table th {
    padding: 0.65rem 1rem;
    font-weight: 800;
    text-align: right;
    font-size: 0.85rem;
}

.trips-schedule-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.84rem;
}

.trips-schedule-table tbody tr:nth-child(even) {
    background: rgba(186, 243, 230, 0.15);
}

.trips-schedule-table tbody tr:hover {
    background: rgba(186, 243, 230, 0.35);
}

.trips-schedule-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 640px) {
    .trips-schedule-table th,
    .trips-schedule-table td {
        padding: 0.45rem 0.6rem;
        font-size: 0.78rem;
    }

    .trips-schedule-summary {
        font-size: 0.92rem;
        padding: 0.75rem 1rem;
    }
}

/* Trip Details Page */
.td-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.td-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.td-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--emerald-light);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-info-icon svg {
    width: 24px;
    height: 24px;
}

.td-info-icon-clock {
    background: rgba(245, 166, 35, 0.14);
    color: var(--orange);
}

.td-info-body h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.td-info-body p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.85;
}

.td-info-body strong {
    color: var(--emerald);
}

.td-compare {
    margin-bottom: 2rem;
}

.td-compare-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.td-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.td-compare-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.td-compare-card-vip {
    border-color: rgba(201, 168, 76, 0.35);
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.45), var(--white));
}

.td-compare-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.td-compare-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.td-compare-badge-std {
    background: var(--emerald-light);
    color: var(--emerald);
}

.td-compare-badge-vip {
    background: linear-gradient(135deg, #C9A84C, #F0C040);
    color: #fff;
}

.td-compare-header h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.td-compare-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    flex: 1;
}

.td-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.td-compare-list li strong {
    color: var(--text-primary);
}

.td-compare-check {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.td-compare-check svg {
    width: 13px;
    height: 13px;
}

.td-compare-check-gold {
    background: rgba(201, 168, 76, 0.16);
    color: #B8892A;
}

.td-compare-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.td-compare-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    background: var(--gray-100);
    color: var(--gray-500);
}

.td-compare-tag-vip {
    background: rgba(201, 168, 76, 0.14);
    color: #9A7B2A;
}

.td-cta-section {
    text-align: center;
    padding: 1rem 0;
}

.td-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    background: var(--emerald);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 12px 28px rgba(0, 77, 90, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.td-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 77, 90, 0.28);
}

.td-cta-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .td-grid {
        grid-template-columns: 1fr;
    }

    .td-compare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .td-info-card {
        padding: 1rem;
    }

    .td-compare-card {
        padding: 1rem;
    }

    .td-info-body h2 {
        font-size: 0.98rem;
    }

    .td-info-body p {
        font-size: 0.85rem;
    }

    .td-compare-list li {
        font-size: 0.82rem;
    }
}
