/* =========================================================================
   Custom CSS for Jakarta Toilet Redesign
   ========================================================================= */

/* =========================================================================
   --- 0. Global Rounded Card Elements ---
   ========================================================================= */

/* Product cards - image box */
.product-block-one .inner-box {
    border-radius: 10px;
    overflow: hidden;
}

.product-block-one .inner-box .image-box {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

/* Feature boxes (What We Offer section) */
.feature-block-one .inner-box {
    border-radius: 10px;
    overflow: hidden;
}

/* Keep rounded cards for content images, but avoid clipping paroller in About section */
.content_block_2 .content-box .image-box {
    border-radius: 10px;
    overflow: hidden;
}

.about-section .image_block_1 .image-box {
    border-radius: 0;
    overflow: visible;
}

.about-section .image_block_1 .image-box .image-1 {
    border-radius: 10px;
    overflow: hidden;
}

.about-section .image_block_1 .image-box .image-2 {
    z-index: 2;
    bottom: 80px;
}

/* News / Blog cards */
.news-block-one .inner-box {
    border-radius: 10px;
    overflow: hidden;
}

.news-block-one .inner-box .image-box {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

/* Client logo boxes in carousel */
.clients-carousel .slide-item .inner-box,
.clients-carousel .owl-item .inner-box {
    border-radius: 8px;
    overflow: hidden;
}


/* --- 1. About Gallery Section --- */
.jt-about-gallery-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #f9f9f9;
}

.jt-about-gallery-section .label {
    font-size: 14px;
    font-weight: 700;
    color: #1b4b8a;
    /* Theme main color */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.jt-about-gallery-section h2 {
    font-size: 36px;
    line-height: 1.3em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.jt-about-gallery-section p {
    font-size: 16px;
    line-height: 1.8em;
    color: #666;
    margin-bottom: 20px;
}

.jt-about-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    position: relative;
}

.jt-about-gallery-section .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.jt-about-gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jt-about-gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}

.jt-about-gallery-section .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.jt-about-gallery-section .item-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    font-size: 18px;
    font-weight: 600;
}

.jt-about-gallery-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.jt-about-gallery-section .play-btn:hover {
    background: #1b4b8a;
    border-color: #1b4b8a;
    color: #fff;
}


/* --- 2. Social Reel Carousel Section --- */
.jt-social-reel-section {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #f0f4fa 0%, #ffffff 50%, #eef6ff 100%);
    overflow: hidden;
}

/* Decorative background blobs */
.jt-social-reel-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 75, 138, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.jt-social-reel-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 75, 138, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.jt-social-reel-section .sec-title {
    margin-bottom: 55px;
}

.jt-social-reel-section .sec-title p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jt-social-reel-section .sec-title p::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #1b4b8a;
    border-radius: 2px;
    vertical-align: middle;
}

/* ── Reel Card: proper 9:16 phone aspect ratio ── */
.social-reel-carousel .reel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 12px 0;
    /* 9:16 aspect ratio — prevents any vertical cropping */
    aspect-ratio: 9 / 16;
    width: 100%;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.10),
        0 20px 40px rgba(27, 75, 138, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    cursor: pointer;
    background: #1a1a2e;
}

.social-reel-carousel .reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18),
        0 35px 60px rgba(27, 75, 138, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ── Phone notch frame (decorative) ── */
.social-reel-carousel .reel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px 20px 0 0;
}

/* ── Background image fills card entirely ── */
.social-reel-carousel .reel-card img.reel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.social-reel-carousel .reel-card:hover img.reel-bg {
    transform: scale(1.05);
}

/* ── Cinematic gradient overlay ── */
.social-reel-carousel .reel-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.0) 30%,
            rgba(0, 0, 0, 0.0) 55%,
            rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}

.social-reel-carousel .reel-card:hover .reel-overlay {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.05) 55%,
            rgba(0, 0, 0, 0.92) 100%);
}

/* ── Story progress bars (top) ── */
.social-reel-carousel .reel-progress-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.social-reel-carousel .reel-progress-bars span {
    flex: 1;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    overflow: hidden;
}

.social-reel-carousel .reel-progress-bars span.active {
    background: rgba(255, 255, 255, 0.35);
}

.social-reel-carousel .reel-progress-bars span.active::after {
    content: '';
    display: block;
    height: 100%;
    width: 60%;
    background: #fff;
    border-radius: 2px;
}

/* ── Header: avatar + username + follow ── */
.social-reel-carousel .reel-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-reel-carousel .reel-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.social-reel-carousel .reel-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    z-index: -1;
}

.social-reel-carousel .reel-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    border: 2px solid #fff;
    display: block;
}

.social-reel-carousel .reel-header-info {
    flex: 1;
    min-width: 0;
}

.social-reel-carousel .reel-username {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-reel-carousel .reel-username .verified-icon {
    color: #4a90e2;
    font-size: 11px;
    flex-shrink: 0;
}

.social-reel-carousel .reel-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

.social-reel-carousel .reel-follow-btn {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.social-reel-carousel .reel-card:hover .reel-follow-btn {
    background: #1b4b8a;
    border-color: #1b4b8a;
}

/* ── Center content: play button ── */
.social-reel-carousel .reel-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.social-reel-carousel .reel-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

/* Pulsing ring animation */
.social-reel-carousel .reel-play-btn::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: reel-pulse 2s ease-out infinite;
}

@keyframes reel-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.social-reel-carousel .reel-card:hover .reel-play-btn {
    transform: scale(1.15);
    background: #1b4b8a;
    border-color: #1b4b8a;
    box-shadow: 0 8px 30px rgba(27, 75, 138, 0.5);
}

/* ── Footer: caption + IG link badge ── */
.social-reel-carousel .reel-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-reel-carousel .reel-caption {
    font-size: 13px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.social-reel-carousel .reel-ig-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.social-reel-carousel .reel-ig-badge i {
    font-size: 14px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-reel-carousel .reel-ig-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* ── Reel engagement actions (right side) ── */
.social-reel-carousel .reel-actions {
    position: absolute;
    right: 10px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 4;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.35s ease;
}

.social-reel-carousel .reel-card:hover .reel-actions {
    opacity: 1;
    transform: translateX(0);
}

.social-reel-carousel .reel-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.social-reel-carousel .reel-action-item i {
    font-size: 22px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.social-reel-carousel .reel-action-item:hover i {
    transform: scale(1.2);
    color: #ff6b9d;
}

.social-reel-carousel .reel-action-item span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ── OWL Carousel overrides ── */
.social-reel-carousel .owl-nav {
    display: none;
}

.social-reel-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 6px;
}

.social-reel-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(27, 75, 138, 0.25);
    transition: all 0.3s ease;
    display: block;
}

.social-reel-carousel .owl-dots .owl-dot.active span {
    background: #1b4b8a;
    width: 24px;
    border-radius: 4px;
}

/* ── Instagram CTA below carousel ── */
.jt-social-reel-section .reel-cta {
    text-align: center;
    margin-top: 50px;
}

.jt-social-reel-section .reel-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: #fff;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jt-social-reel-section .reel-cta a:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 35px rgba(188, 24, 136, 0.45);
    color: #fff;
    text-decoration: none;
}


/* --- 3. Marquee + Contact Section --- */

/* Marquee */
.jt-marquee-bar {
    background: #1b4b8a;
    /* Adjust to brand color */
    color: #fff;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-track span {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 30px;
    letter-spacing: 1px;
}

.marquee-track span.dot {
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Dark */
.jt-contact-section {

    background: linear-gradient(155deg, #005eb8 0%, #004c99 52%, #003366 100%);
    color: #f2f7ff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center;
}

.jt-contact-section::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(124, 168, 226, 0.22) 0%, rgba(124, 168, 226, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.jt-contact-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    bottom: -170px;
    left: -90px;
    background: radial-gradient(circle, rgba(78, 126, 191, 0.20) 0%, rgba(78, 126, 191, 0) 72%);
    pointer-events: none;
    z-index: -1;
}

.jt-contact-section .label {
    color: #9ec0ea;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.jt-contact-section h2 {
    color: #f2f7ff;
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
}

.jt-contact-section h2 strong {
    color: #dbe9fb;
    font-weight: 700;
}

.jt-contact-section .content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jt-contact-section .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #afc2db;
    max-width: 460px;
    margin-bottom: 0;
}

.jt-contact-section .contact-info p {
    font-size: 16px;
    color: #9fb4cf;
    margin-bottom: 10px;
}

.jt-contact-section .contact-info p strong {
    color: #e7f0fb;
    display: inline-block;
    min-width: 90px;
}

.jt-contact-form {
    background: linear-gradient(145deg, #004c99 0%, #003b7a 55%, #002957 100%);
    padding: 26px 26px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 22px 50px rgba(0, 45, 100, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.jt-contact-form .form-header {
    margin-bottom: 14px;
}

.jt-contact-form .form-header h3 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #f1f6ff;
}

.jt-contact-form .form-header p {
    margin: 0;
    color: #b8c8de;
    font-size: 13px;
    line-height: 1.5;
}

.jt-contact-form .form-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #dbe8fb;
    font-size: 12px;
    letter-spacing: 0.4px;
    font-weight: 700;
    text-transform: uppercase;
}

.jt-contact-form .form-label span {
    color: #97acc9;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.jt-contact-form .form-group {
    margin-bottom: 12px;
}

.jt-contact-form input,
.jt-contact-form select,
.jt-contact-form textarea {
    width: 100%;
    background: #003366;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #edf4ff;
    padding: 11px 14px;
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-size: 14px;
}

.jt-contact-form input,
.jt-contact-form select {
    min-height: 44px;
}

.jt-contact-form input[type="date"] {
    color-scheme: dark;
}

.jt-contact-form input::placeholder,
.jt-contact-form textarea::placeholder {
    color: #8ea4c2;
}

.jt-contact-form input:focus,
.jt-contact-form select:focus,
.jt-contact-form textarea:focus {
    background: #004080;
    border-color: #2dd3aa;
    box-shadow: 0 0 0 3px rgba(45, 211, 170, 0.28);
    outline: none;
}

.jt-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #7ea3d4 50%), linear-gradient(135deg, #7ea3d4 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.jt-contact-form select option {
    background: #004c99;
    color: #f1f6ff;
}

.jt-contact-form textarea {
    min-height: 88px;
    resize: none;
}

.jt-contact-form .submit-btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #2dd3aa 0%, #1fa382 100%);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.jt-contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 211, 170, 0.3);
}

.jt-contact-form .form-note {
    margin: 10px 2px 0;
    color: #8fa6c4;
    font-size: 12px;
    line-height: 1.5;
}

.jt-contact-form .row {
    margin-left: -7px;
    margin-right: -7px;
}

.jt-contact-form .row>[class*="col-"] {
    padding-left: 7px;
    padding-right: 7px;
}

@media (max-width: 991px) {
    .jt-contact-section .content-column {
        margin-bottom: 35px;
    }

    .jt-contact-section h2 {
        margin-bottom: 20px;
    }

    .jt-contact-section .intro-text {
        max-width: 100%;
    }

    .jt-contact-form {
        padding: 22px 16px 16px;
    }

    .jt-contact-form .form-header h3 {
        font-size: 21px;
    }
}

/* ========================================================================= */
/* --- 4. Lenis Smooth Scroll Base CSS --- */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ========================================================================= */
/* --- 5. Slim Header & Scroll-Up Sticky Behavior --- */

/* Reduce nav item padding to slim the header */
.main-menu .navigation>li {
    padding: 28px 0px;
}

/* Slim the logo area */
.main-header .logo-box .logo img {
    max-height: 52px;
    width: auto;
}

/* Slim button padding in header */
.main-header .nav-right-content .btn-box a {
    padding: 10px 24px;
    font-size: 13px;
}

/* --- Sticky Header: GSAP-controlled, hidden by default --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* Gradient from #005eb8 (left) to #2dd3aa (right) — matches site theme */
    background: linear-gradient(to right,
            rgba(0, 94, 184, 0.97) 0%,
            rgba(45, 211, 170, 0.95) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 28px rgba(0, 45, 100, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    /* Hidden state — GSAP will animate this */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-110%);
    transition: none !important;
    /* Let GSAP handle all transitions */
}

/* When GSAP adds .header-visible, show it */
.sticky-header.header-visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Slim sticky nav items */
.sticky-header .main-menu .navigation>li {
    padding: 22px 0px;
}

/* Sticky header nav links: white text for dark background */
.sticky-header .main-menu .navigation>li>a {
    color: #ffffff;
}

.sticky-header .main-menu .navigation>li.dropdown>a:before {
    color: rgba(255, 255, 255, 0.8);
}

/* Hover state on sticky nav */
.sticky-header .main-menu .navigation>li>a:hover,
.sticky-header .main-menu .navigation>li.current>a {
    color: #2dd3aa;
}

/* Do NOT show the old .fixed-header sticky behavior (GSAP handles it) */
.fixed-header .sticky-header {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ========================================================================= */
/* --- 6. Modern Team Section --- */

.jt-team-section {
    padding: 100px 0;
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.jt-team-section .sec-title {
    margin-bottom: 50px;
}

.jt-team-section .sec-title p {
    color: #005eb8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.jt-team-section .sec-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a2a40;
}

.team-card {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
}

.team-card .card-inner {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 45, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.team-card .card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 94, 184, 0.15);
}

.team-card .image-box {
    position: relative;
    overflow: hidden;
    background: #eef5fc;
    padding-top: 20px;
}

.team-card .image-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.team-card .card-inner:hover .image-box img {
    transform: scale(1.08);
}

.team-card .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    background: linear-gradient(to top, rgba(0,94,184,0.85) 0%, rgba(0,94,184,0) 100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.team-card .card-inner:hover .social-links {
    bottom: 0;
    opacity: 1;
}

.team-card .social-links .konsultasi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: #ffffff;
    color: #005eb8;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-card .social-links .konsultasi-btn:hover {
    background: #2dd3aa;
    color: #ffffff;
    transform: translateY(-3px);
}

.team-card .lower-content {
    padding: 25px 20px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.team-card .lower-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #2dd3aa;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card .card-inner:hover .lower-content::before {
    opacity: 1;
    width: 80px;
}

.team-card .lower-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a40;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.team-card .card-inner:hover .lower-content h3 {
    color: #005eb8;
}

.team-card .lower-content .designation {
    font-size: 14px;
    color: #6a7c92;
    font-weight: 500;
}

.jt-team-section .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.jt-team-section .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dbe9fb;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.jt-team-section .owl-dots .owl-dot.active span {
    background: #005eb8;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 94, 184, 0.3);
}

.jt-team-section .owl-dots .owl-dot:hover span {
    background: #7ca8e2;
}

/* Nav Prev/Next Buttons */
.jt-team-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.jt-team-section .owl-nav button.owl-prev,
.jt-team-section .owl-nav button.owl-next {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    color: #005eb8 !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e1e8f2 !important;
    margin: 0 -22px; /* Pull outside carousel */
}

.jt-team-section .owl-nav button.owl-prev:hover,
.jt-team-section .owl-nav button.owl-next:hover {
    background: #005eb8 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 94, 184, 0.3);
}

.jt-team-section .owl-nav button i {
    font-size: 16px;
}

.jt-team-section .owl-nav button.owl-prev::before {
    content: "\f060"; /* FontAwesome arrow-left */
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 6 Free";
    font-weight: 900;
}

.jt-team-section .owl-nav button.owl-next::before {
    content: "\f061"; /* FontAwesome arrow-right */
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 6 Free";
    font-weight: 900;
}

/* Hide default text from Owl Carousel prev/next if any */
.jt-team-section .owl-nav button span {
    display: none;
}

/* Perapihan Layout Product lower-content */
.product-block-one .lower-content {
    padding: 25px 20px 20px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
}

.product-block-one .lower-content .rating {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-block-one .lower-content .text {
    margin-bottom: 10px;
    width: 100%;
}

.product-block-one .lower-content .text h3 {
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.product-block-one .lower-content br {
    display: none; /* Hide random breaks */
}

.product-block-one .lower-content .btn-box {
    margin-top: auto;
    width: 100%;
}

/* Image Box Consistency */
.product-block-one .image-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.product-block-one .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slim Fit Button Tanya Harga */
.product-block-one .theme-btn-one {
    padding: 10px 24px !important; /* Slim fit */
    font-size: 14px;
    line-height: 1.5;
}

/* Hide Owl Nav/Dots when Disabled */
.owl-nav.disabled, .owl-dots.disabled {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Konsistensi Spacing Section */
.product-section, 
.feature-section, 
.about-section, 
.jt-team-section, 
.jt-area-layanan-section,
.jt-about-gallery-section, 
.jt-social-reel-section, 
.jt-contact-section {
    padding: 80px 0 !important;
}

/* Area Layanan Section */
.area-card {
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #222;
}
.area-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #222;
}
.area-card h3 i {
    color: #222;
    margin-right: 8px;
}

