:root {
    --primary: #115F64;
    /* Dark Teal / Pine Green */
    --primary-dark: #0B464A;
    --secondary: #0B191E;
    /* Deep marine background matching Dark Teal */
    --text-dark: #182B33;
    --text-light: #F4F8FA;
    /* Soft white/pale */
    --text-muted: #95B2C0;
    /* Pale Blue accent */
    --glass-blur: 20px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #ffffff;
    /* Putih bersih sesuai permintaan */
    color: var(--text-dark);
    /* Teks dasar di atas kanvas putih akan berwarna gelap */
    overflow-x: hidden;
}

.hero {
    position: relative;
    color: var(--text-light);
    /* Pertahankan warna teks putih untuk konten di dalam hero background */
    margin: 1.5rem;
    border-radius: 30px;
    overflow: hidden;
    min-height: calc(100vh - 3rem);
    background-image: url('file:///C:/Users/cakbus0702/.gemini/antigravity/brain/31583b8f-6dbd-48bb-bb4a-be653a862b9f/bg_travel_1774976238862.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 38, 48, 0.8) 0%,
            rgba(30, 38, 48, 0.3) 50%,
            rgba(30, 38, 48, 0) 100%);
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 6rem);
    max-width: 1000px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.2rem 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar.scrolled {
    background: rgba(30, 38, 48, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    top: 30px;
    width: calc(100% - 5rem);
    max-width: 1100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.login {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.login:hover {
    color: var(--primary);
}

.signup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(17, 95, 100, 0.3);
}

.signup:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(17, 95, 100, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15vh 5% 0;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title span {
    color: transparent;
    -webkit-text-stroke: 1px white;
    background: linear-gradient(120deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: fillText 2s ease-in-out forwards;
    animation-delay: 0.5s;
    font-style: italic;
}

@keyframes fillText {
    0% {
        background-size: 0% 100%;
        color: transparent;
    }

    100% {
        background-size: 100% 100%;
        color: white;
        -webkit-text-stroke: 0px white;
    }
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.local-destinations {
    margin-top: 1.5rem;
}

.destinations-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destinations-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ─── CARD OVERLAP EFFECT ─── */
.adventure-card {
    position: relative;
    width: 220px;
    cursor: pointer;
}

.adventure-card.featured {
    width: 380px;
    max-width: 100%;
}

.adventure-card.featured .card-image {
    height: 220px;
}

.adventure-card.featured .card-body p {
    font-size: 13.5px;
}

.adventure-card.featured .tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-top: 4px;
}

.card-image {
    width: 100%;
    height: 150px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adventure-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 20, 60, 0.5) 0%, transparent 70%);
}

.card-title-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 2;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.card-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.adventure-card:hover .card-arrow {
    transform: translate(2px, -2px);
}

.card-arrow svg {
    width: 13px;
    height: 13px;
}

.card-body {
    position: relative;
    z-index: 3;
    margin-top: -22px;
    /* Overlap effect key */
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.adventure-card:hover .card-body {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

.card-body p {
    font-size: 12px;
    line-height: 1.7;
    color: #444;
    font-weight: 300;
}

.card-body p strong {
    color: #1a1a2e;
    font-weight: 700;
}

.card-tags {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.tag-purple {
    background: #ede9fe;
    color: #6d28d9;
}

.tag-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.tag-green {
    background: #d1fae5;
    color: #065f46;
}

.search-widget-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 2rem;
}

.search-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: -1px;
}

.tab {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.9);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tab.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border: 1px solid white;
}

.tab.active i {
    color: var(--primary);
}

.search-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 20px 20px 20px;
    padding: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.search-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    transition: background 0.3s;
    cursor: pointer;
}

.search-group:hover {
    background: rgba(0, 0, 0, 0.03);
}

.icon-box {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(242, 106, 79, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.input-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-content label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.input-content input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    width: 100%;
}

.input-content input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

.divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(17, 95, 100, 0.3);
    margin-left: 0.5rem;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(17, 95, 100, 0.4);
}

/* Animations */
.title,
.subtitle,
.local-destinations,
.search-widget-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.title {
    animation-delay: 0.2s;
}

.subtitle {
    animation-delay: 0.4s;
}

.local-destinations {
    animation-delay: 0.5s;
}

.search-widget-container {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .title {
        font-size: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .search-panel {
        flex-direction: column;
        border-radius: 0 20px 20px 20px;
        padding: 1.5rem;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }

    .search-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .search-group {
        width: 100%;
    }

    .navbar {
        width: calc(100% - 5rem);
        max-width: 100%;
        top: 35px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(30, 38, 48, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        margin: 0;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        align-items: center;
    }

    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .title {
        font-size: 2.8rem;
    }

    /* ── Hero Form — Mobile compact ── */
    .search-widget-container {
        margin-top: 1rem;
    }

    .search-tabs {
        gap: 0.4rem;
    }

    .tab {
        font-size: 0.75rem;
        padding: 0.5rem 0.85rem;
        gap: 0.3rem;
    }

    .search-panel {
        padding: 0.7rem;
        border-radius: 0 14px 14px 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .search-group {
        padding: 0.25rem 0.7rem;
        gap: 0.6rem;
    }

    .icon-box {
        min-width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .input-content label {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .input-content input {
        font-size: 0.82rem;
    }

    .divider {
        margin: 0.3rem 0;
    }

    .search-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-top: 0.8rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text {
        margin-bottom: 1rem;
    }

    /* ── Hero Form — Extra small ── */
    .search-widget-container {
        margin-top: 0.6rem;
    }

    .tab {
        font-size: 0.68rem;
        padding: 0.4rem 0.65rem;
    }

    .tab i {
        display: none;
    }

    .search-panel {
        padding: 0.5rem;
    }

    .search-group {
        padding: 0.2rem 0.55rem;
        gap: 0.5rem;
    }

    .icon-box {
        min-width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }

    .input-content label {
        font-size: 0.65rem;
    }

    .input-content input {
        font-size: 0.78rem;
    }

    .divider {
        margin: 0.2rem 0;
    }

    .search-btn {
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
        margin-top: 0.5rem;
        gap: 0.4rem;
    }
}

/* ─── NEW CAROUSEL SECTION ─── */
.carousel-section {
    width: calc(100% - 3rem);
    margin: 1.5rem auto;
    position: relative;
    color: var(--text-light);
    /* Pertahankan teks putih untuk layar belakang Teal gelap ini */
    z-index: 10;
    overflow: hidden;
    background: var(--secondary);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* bingkai tipis */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 6rem 0;
}

.wave-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.carousel-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-light);
    line-height: 1.15;
    font-weight: 700;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
}

.counter-cur {
    color: var(--text-light);
    font-weight: 500;
}

.counter-total {
    color: var(--text-muted);
    opacity: 0.6;
}

.counter-line {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, var(--text-muted), var(--primary-dark));
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-size: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    user-select: none;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-muted);
    color: var(--text-light);
    transform: scale(1.08);
}

.nav-btn:disabled {
    pointer-events: none;
    opacity: 0.4;
}

/* ── CAROUSEL INTERNALS ── */
.carousel-wrapper {
    overflow: hidden;
    height: 340px;
    position: relative;
}

@media (max-width: 768px) {
    .card.active {
        width: 300px !important;
    }
}

.carousel-track {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
    gap: 18px;
}

.card {
    flex: 0 0 auto;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    will-change: width, opacity, filter, transform;
}

.card {
    width: 200px;
    height: 255px;
    opacity: 0.45;
    filter: brightness(0.65) saturate(0.7);
    transform: scale(0.91);
    transition:
        width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.active {
    width: 400px;
    height: 300px;
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: scale(1);
}

.card.active::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(17, 95, 100, 0.35), transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
    display: block;
}

.card:hover img {
    transform: scale(1.045);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 25, 30, 0.92) 0%,
            rgba(11, 25, 30, 0.45) 45%,
            transparent 100%);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    z-index: 3;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    background: var(--primary);
    backdrop-filter: blur(8px);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    border-radius: 2px;
}

.card-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    margin-top: 7px;
}

.dur-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.card-duration span {
    color: var(--text-muted);
    font-weight: 500;
}

.card-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.45s ease;
    opacity: 0;
}

.card.active .card-extra {
    max-height: 60px;
    opacity: 1;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 22px;
}

.dot-item {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-item.active {
    background: var(--primary);
    width: 24px;
}

/* ─── OFFERS / PROMOTIONS SECTION ─── */
.offers-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    background: #ffffff;
}

.offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.offers-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.offers-title em {
    font-style: italic;
    color: var(--primary);
}


/* Filter Tabs */
.offers-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
}

.filter-tab {
    border: none;
    background: transparent;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(17, 95, 100, 0.3);
}

.filter-tab:hover:not(.active) {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

/* Rows */
.offers-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    height: 260px;
}

/* Large Card (left or right) */
.offer-card--large {
    flex: 1.6;
}

/* Column holding 2 small cards stacked */
.offers-col-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.offers-col-small--left {
    order: -1;
}

/* Base card */
.offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.offer-card:hover img {
    transform: scale(1.06);
}

/* Card overlay info at bottom */
.offer-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: white;
}

.offer-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.offer-card-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.offer-card-info p i {
    font-size: 0.85rem;
    color: #ff6b6b;
}

/* Smaller card internal size */
.offers-col-small .offer-card {
    flex: 1;
}

/* Filtered rows view — same layout as Semua */
.offers-grid-filtered {
    display: block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.offers-grid-filtered.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.offers-footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-view-all {
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(17, 95, 100, 0.2);
    transform: translateY(-2px);
}

.btn-view-all:active {
    transform: translateY(0px);
}


/* ─── Responsive: keep grid same as PC, just scale down ─── */
@media (max-width: 768px) {
    .offers-section {
        padding: 3rem 1rem 2.5rem;
    }

    .offers-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .offers-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .offers-filter-tabs {
        flex-wrap: wrap;
        gap: 0.3rem;
        padding: 4px;
    }

    .filter-tab {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }

    /* Keep rows as flex row — same as PC */
    .offers-row {
        height: 160px;
        gap: 0.7rem;
        margin-bottom: 0.7rem;
    }

    /* Large card — keep flex proportions */
    .offer-card--large {
        flex: 1.6;
    }

    /* Small column — vertical stack, same as PC */
    .offers-col-small {
        flex: 1;
        flex-direction: column;
        gap: 0.7rem;
    }

    .offers-col-small--left {
        order: -1;
    }

    /* Card text scale down */
    .offer-card {
        border-radius: 14px;
    }

    .offer-card-info {
        padding: 1.5rem 0.8rem 0.7rem;
    }

    .offer-card-info h3 {
        font-size: 0.72rem;
        margin-bottom: 0.15rem;
    }

    .offer-card-info p {
        font-size: 0.62rem;
    }

    .btn-view-all {
        font-size: 0.72rem;
        padding: 0.45rem 1.1rem;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .offers-row {
        height: 120px;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .offers-section {
        padding: 2.5rem 0.75rem 2rem;
    }

    .offer-card {
        border-radius: 10px;
    }

    .offers-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .offer-card-info h3 {
        font-size: 0.62rem;
    }

    .offer-card-info p {
        display: none;
    }

    .btn-view-all {
        font-size: 0.65rem;
        padding: 0.38rem 0.9rem;
        gap: 0.25rem;
    }
}

/* ─── LOGIN MODAL STYLES ─── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 25, 30, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: white;
    background: #ff6b6b;
}

.form_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -5px;
}

.logo_container img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.title_container {
    text-align: center;
    margin-bottom: 5px;
}

/* Special override for modal title to prevent generic title style collision */
#loginModal .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-shadow: none;
    -webkit-text-stroke: 0;
    background: none;
    animation: none;
}

.title_container .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0px;
    display: block;
}

.input_container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input_label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.input_container .icon {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.input_field {
    padding: 12px 15px 12px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.input_field:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(17, 95, 100, 0.1);
}

.input_field::placeholder {
    color: #94a3b8;
}

.sign-in_btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 95, 100, 0.25);
    margin-top: 5px;
}

.sign-in_btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 95, 100, 0.35);
}

.separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
}

.separator .line {
    flex: 1;
    border: none;
    height: 1px;
    background: #e2e8f0;
}

.separator span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.sign-in_ggl,
.sign-in_apl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    border: 1.5px solid #e2e8f0;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sign-in_ggl:hover,
.sign-in_apl:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.note {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 10px;
}

.note:hover {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

/* ─── ACTIVITIES SECTION ─── */
.activities-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.activities-header {
    margin-bottom: 3rem;
}

.activities-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.8rem;
}

.activities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.activities-title span {
    color: var(--primary);
    font-style: italic;
}

.activities-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.7;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 450px;
    gap: 2rem;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 25, 30, 0.9) 0%, rgba(11, 25, 30, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tag-orange {
    background: #fc8a40;
    color: #672c00;
}

.tag-blue {
    background: #58d5fb;
    color: #004e60;
}

.tag-teal {
    background: #d0e4ff;
    color: #001d35;
}

.tag-primary {
    background: #ffdbc9;
    color: #763300;
}

.bento-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.bento-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    max-width: 95%;
}

.bento-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.bento-btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

.bento-btn.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-btn.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Grid Pos */
.bento-card:nth-child(1) {
    grid-column: span 7;
}

.bento-card:nth-child(2) {
    grid-column: span 5;
}

.bento-card:nth-child(3) {
    grid-column: span 5;
    height: 400px;
}

.bento-card:nth-child(4) {
    grid-column: span 7;
    height: 400px;
}

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 95, 100, 0.1);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bento-grid {
        grid-auto-rows: 320px;
        gap: 1.2rem;
    }

    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .activities-title {
        font-size: 2rem;
    }

    .activities-section {
        padding: 4rem 1rem 3rem;
    }

    .bento-grid {
        grid-auto-rows: 240px;
        gap: 0.6rem;
    }

    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        height: 220px;
    }

    .bento-content {
        padding: 0.85rem;
    }

    .bento-tag {
        font-size: 0.45rem;
        padding: 3px 6px;
        margin-bottom: 0.3rem;
    }

    .bento-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .bento-text {
        font-size: 0.55rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Membatasi agar tidak memakan ruang */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bento-btn {
        padding: 5px 10px;
        font-size: 0.6rem;
        border-radius: 6px;
    }

    .newsletter-section {
        padding: 4rem 1.5rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .newsletter-form {
        flex-direction: row;
        gap: 0.5rem;
    }

    .newsletter-form input {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        width: 60%;
    }

    .newsletter-form button {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

/* ─── ABOUT US SECTION ─── */
.aboutus-section {
    background: #fff;
    padding: 6rem 2rem;
}

.aboutus-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.aboutus-header {
    text-align: center;
    margin-bottom: 5rem;
}

.aboutus-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.aboutus-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.aboutus-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Centre vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 40px);
    background: #c1c7d1;
    z-index: 0;
}

/* Each row */
.tl-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Alternating — swap media to right */
.tl-row--alt .tl-body {
    order: 1;
}

.tl-row--alt .tl-dot {
    order: 2;
}

.tl-row--alt .tl-media {
    order: 3;
}

/* Media block */
.tl-media {
    position: relative;
}

.tl-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
}

/* Badge (#1) */
.tl-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
    text-align: center;
}

.tl-badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.tl-badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #717781;
    margin: 0;
    margin-top: 4px;
}

/* Floating card (wellness) */
.tl-float-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(193, 199, 209, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    max-width: 170px;
    z-index: 3;
}

.tl-float-icon {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.tl-float-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Timeline Dot */
.tl-dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 6px solid #c1c7d1;
    border-radius: 50%;
    justify-self: center;
    flex-shrink: 0;
    z-index: 2;
}

/* Text body */
.tl-body {
    padding: 0 1rem;
}

.tl-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.tl-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tl-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Button */
.tl-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tl-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Certified badge */
.tl-cert {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tl-cert-icon {
    width: 46px;
    height: 46px;
    background: #ffdbc9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #9b4500;
    flex-shrink: 0;
}

.tl-cert-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

/* Stat cards */
.tl-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.tl-stat-card {
    background: #f3f4f5;
    border-radius: 12px;
    padding: 1rem 1.2rem;
}

.tl-stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
}

.tl-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #717781;
    margin: 4px 0 0;
}

/* Checklist */
.tl-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.tl-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
}

.tl-checklist li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Banner */
.aboutus-cta {
    margin-top: 5rem;
    background: var(--primary);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aboutus-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.aboutus-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.aboutus-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.aboutus-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background-color: #fff;
    color: var(--primary);
    border: none;
    padding: 1em 2.5em;
    border-radius: 45px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    outline: none;
}

.cta-btn-primary:hover {
    background-color: #6b7280;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-7px);
}

.cta-btn-primary:active {
    transform: translateY(-1px);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1em 2.5em;
    border-radius: 45px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.cta-btn-secondary:hover {
    background-color: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-7px);
}

.cta-btn-secondary:active {
    transform: translateY(-1px);
}

/* ── RESPONSIVE: keep PC layout on mobile, just scale down ── */
@media (max-width: 900px) {
    .aboutus-section {
        padding: 4rem 1rem;
    }

    .aboutus-header {
        margin-bottom: 3rem;
    }

    .aboutus-title {
        font-size: 1.8rem;
    }

    .aboutus-desc {
        font-size: 0.9rem;
    }

    .timeline {
        gap: 3.5rem;
    }

    /* Keep 3-col grid on mobile, just tighten gaps */
    .tl-row,
    .tl-row--alt {
        grid-template-columns: 1fr 24px 1fr;
        gap: 0.8rem;
    }

    /* Maintain alternating order from PC */
    .tl-row--alt .tl-body {
        order: 1;
    }

    .tl-row--alt .tl-dot {
        order: 2;
    }

    .tl-row--alt .tl-media {
        order: 3;
    }

    .tl-media img {
        height: 200px;
        border-radius: 12px;
    }

    /* Scale down overlapping badge */
    .tl-badge {
        bottom: -10px;
        right: -8px;
        padding: 0.5rem 0.7rem;
        border-radius: 10px;
    }

    .tl-badge-num {
        font-size: 1.4rem;
    }

    .tl-badge-label {
        font-size: 0.55rem;
    }

    /* Scale down floating wellness card */
    .tl-float-card {
        top: -10px;
        right: -8px;
        padding: 0.6rem 0.8rem;
        max-width: 110px;
        border-radius: 10px;
    }

    .tl-float-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .tl-float-label {
        font-size: 0.65rem;
    }

    /* Dot */
    .tl-dot {
        width: 16px;
        height: 16px;
        border-width: 4px;
    }

    /* Text body */
    .tl-body {
        padding: 0 0.3rem;
    }

    .tl-kicker {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .tl-heading {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .tl-text {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .tl-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .tl-cert {
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .tl-cert-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .tl-cert-label {
        font-size: 0.72rem;
    }

    .tl-stats {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }

    .tl-stat-card {
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
    }

    .tl-stat-num {
        font-size: 1.1rem;
    }

    .tl-stat-label {
        font-size: 0.6rem;
    }

    .tl-checklist {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }

    .tl-checklist li {
        font-size: 0.72rem;
        gap: 0.4rem;
    }

    .tl-checklist li i {
        font-size: 1rem;
    }

    /* Timeline vertical line */
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    /* CTA */
    .aboutus-cta {
        padding: 2.5rem 1.2rem;
        border-radius: 16px;
    }

    .aboutus-cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .aboutus-cta-text {
        font-size: 0.85rem;
        margin-bottom: 1.8rem;
    }

    .aboutus-cta-btns {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        flex: 1;
        padding: 0.75rem 0.4rem;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}

/* ─── FOOTER SECTION ─── */
.main-footer {
    position: relative;
    background: linear-gradient(rgba(11, 25, 30, 0.98), rgba(11, 70, 74, 0.92)), url('bali.jpg') center bottom/cover no-repeat;
    color: #fff;
    padding: 6rem 5% 2rem;
    font-family: 'Outfit', sans-serif;
    margin: 2rem;
    border-radius: 40px;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-profile .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.f-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #E5E7EB;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-contact a i {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    justify-content: flex-start;
}

.footer-socials .wrapper {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-socials .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    margin: 0 15px 0 0;
    width: 40px;
    height: 40px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
}

.footer-socials .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-socials .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-socials .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-socials .wrapper .icon:hover span,
.footer-socials .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.footer-socials .wrapper .facebook:hover,
.footer-socials .wrapper .facebook:hover .tooltip,
.footer-socials .wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #fff;
}

.footer-socials .wrapper .tiktok:hover,
.footer-socials .wrapper .tiktok:hover .tooltip,
.footer-socials .wrapper .tiktok:hover .tooltip::before {
    background: #000;
    color: #fff;
}

.footer-socials .wrapper .instagram:hover,
.footer-socials .wrapper .instagram:hover .tooltip,
.footer-socials .wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #fff;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-form {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.footer-form:focus-within {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.footer-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.9rem 1.2rem;
    width: 100%;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    outline: none;
}

.footer-form button:hover {
    transform: translateX(4px);
}

.footer-subtext {
    color: #E5E7EB;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: #b0b0b0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fb-right {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.fb-right a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.fb-right a:hover {
    color: #fff;
}

.fb-right span {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Mobile Responsiveness */
@media (max-width: 900px) {
    .main-footer {
        padding: 4rem 1.5rem 2rem;
        margin: 1rem;
        border-radius: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-heading {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 1rem;
    }

    .fb-right {
        justify-content: center;
    }
}