/* =====================================================
   SIPADECENG - Landing Page Styles
   File: public/css/auth/welcome.css
   ===================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; /* Offset for fixed navbar */
    overflow-x: hidden;
}
* {
    font-family: 'Poppins', 'Roboto', 'Inter', sans-serif;
}
body {
    background: #f4f6fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* =================== NAVBAR =================== */
/* NAVBAR NEW COOL FLOATING UI */
.navbar {
    background: transparent !important;
    padding: 24px 0;
    z-index: 1030;
    border: none;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    border-radius: 100px; /* Pill shape */
    padding: 8px 24px;
}

/* No scroll animations */
.navbar.active {
    background: transparent !important;
    padding: 24px 0;
    box-shadow: none;
    border: none;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    height: 38px;
    margin-right: 12px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b !important;
    margin: 0 14px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #0f172a !important; /* Cool dark tone */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #0f172a;
    border-radius: 50%;
}

.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.03);
    padding: 10px 0;
    margin-top: 20px;
}

.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.nav-login {
    background: #0f172a; /* Sleek dark button */
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 28px !important;
    font-weight: 600;
    margin-left: 15px;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    display: inline-block;
}

.nav-login:hover {
    background: #1e293b !important;
}

/* Mobile adjustments for the pill shape */
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 5px !important;
    }
    .navbar .container {
        border-radius: 16px;
        padding: 5px 15px;
        position: relative;
        width: 95%;
    }
    .navbar-brand {
        font-size: 1.1rem;
    }
    .navbar-brand img {
        height: 30px;
        margin-right: 8px;
    }
    /* Perkecil ukuran burger icon (navbar-toggler) */
    .navbar-toggler {
        padding: 4px 10px;
        font-size: 1rem;
        border-radius: 8px;
        border-color: rgba(0,0,0,0.05);
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
    }
    /* Fix indicator double/ngebug di mobile */
    .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
        border-radius: 8px;
    }
    .nav-link.active::after {
        display: none; /* Sembunyikan titik/dot indikator di mobile */
    }
    .nav-link.active {
        background: rgba(37, 99, 235, 0.05);
        color: #0f172a !important;
    }
    .nav-login {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* =================== HERO SECTION =================== */
.top-beranda-axios {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
    backdrop-filter: saturate(10%);
    -webkit-backdrop-filter: saturate(10%);
    z-index: 1;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}
.hero-axios-title {
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
}
.pill-blue-wrapper {
    background-color: #38bdf8;
    color: #0f172a !important;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    margin-bottom: 5px;
}
.pill-blue-marquee {
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    padding-top: 4px;
    animation: marquee-running 10s linear infinite;
}
.pill-blue-marquee:hover {
    animation-play-state: paused;
}
@keyframes marquee-running {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.axios-side-content {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 991.98px) {
    .axios-side-content {
        padding-left: 0;
        border-left: none;
    }
    .hero-axios-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
.hero-axios-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 400;
}
.axios-circular-button-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-axios-circle {
    width: 60px;
    height: 60px;
    background: #38bdf8;
    color: #0f172a !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}
.btn-axios-circle i {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.btn-axios-circle:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}
.btn-axios-circle:hover i {
    transform: rotate(0deg);
}
.axios-circular-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =================== TENTANG SECTION (REDESIGN) =================== */
.section-tentang {
    padding: 120px 0;
    background-color: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.tentang-line {
    height: 2px;
    background-color: #2563eb;
    width: 100%;
}

.tentang-heading-large {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -1px;
}

.tentang-squares {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
}
.square-black {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background-color: #0f172a;
}
.square-primary {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 35px;
    height: 35px;
    background-color: #2563eb; /* Blue theme */
    z-index: 2;
}

.tentang-img-main-wrapper {
    border-radius: 24px;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.tentang-img-main {
    object-fit: cover;
    height: 100%;
    border-radius: 0;
}

.tentang-text-wrap {
    padding-left: 20px;
}
@media (max-width: 991.98px) {
    .tentang-text-wrap {
        padding-left: 0;
        margin-top: 40px;
    }
}

.tentang-desc-modern {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    text-align: justify;
}

.tentang-circular-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-tentang-circle {
    width: 65px;
    height: 65px;
    background: #2563eb; /* Blue theme */
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.btn-tentang-circle i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.btn-tentang-circle:hover {
    transform: scale(1.1);
    background: #1d4ed8;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}
.btn-tentang-circle:hover i {
    transform: rotate(90deg);
}
.tentang-circular-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.tentang-img-secondary-wrapper {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.tentang-img-secondary {
    object-fit: cover;
    border-radius: 0;
}

/* Custom Image Reveal Wipe & Zoom */
.image-reveal-wrapper {
    position: relative;
    overflow: hidden;
}

[data-aos="wipe-wrap"] {
    clip-path: inset(0 100% 0 0);
    transition-property: clip-path;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-aos="wipe-wrap"].aos-animate {
    clip-path: inset(0 0 0 0);
}

[data-aos="wipe-wrap"] img {
    transform: scale(1.4);
    transition-property: transform;
    transition-duration: inherit;
    transition-delay: inherit;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-aos="wipe-wrap"].aos-animate img {
    transform: scale(1);
}

/* =================== ALUR SECTION (REDESIGN) =================== */
.section-alur-new {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.98) 100%), url('../../images/about.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.alur-sticky-wrapper {
    position: sticky;
    top: 130px;
    padding-right: 20px;
}
@media (max-width: 991.98px) {
    .alur-sticky-wrapper {
        position: relative;
        top: 0;
        padding-right: 0;
    }
}

.alur-heading-main {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -1px;
}

.alur-desc-main {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    text-align: justify;
}

.alur-circular-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-alur-circle {
    width: 60px;
    height: 60px;
    background: #38bdf8;
    color: #0f172a !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}
.btn-alur-circle i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.btn-alur-circle:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.btn-alur-circle:hover i {
    transform: rotate(90deg);
}
.alur-circular-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.alur-scroll-container {
    padding-right: 15px;
    padding-left: 5px;
    padding-bottom: 20px;
    max-height: 470px;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #cbd5e1 transparent; /* Firefox */
}
/* Chrome, Safari, Edge custom scrollbar minimalist */
.alur-scroll-container::-webkit-scrollbar {
    width: 4px; /* Super thin */
}
.alur-scroll-container::-webkit-scrollbar-track {
    background: transparent; /* No visible track */
}
.alur-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.alur-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.alur-scroll-container::-webkit-scrollbar-button {
    display: none; /* No arrows whatsoever */
}
@media (max-width: 991.98px) {
    .alur-scroll-container {
        max-height: 470px;
        margin-top: 40px;
    }
}

.alur-item {
    position: relative;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 14px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.alur-item:last-child {
    margin-bottom: 0;
}

/* Base state content */
.alur-item-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alur-text {
    flex: 1;
    padding-right: 25px;
}
.alur-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}
.alur-text p {
    font-size: 0.93rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    transition: color 0.4s ease;
}
.alur-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    transition: color 0.4s ease;
    flex-shrink: 0;
    line-height: 1;
}

/* Background image overlay */
.alur-item-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    opacity: 1;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Active or Hover State */
.alur-item.active,
.alur-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: transparent;
}
.alur-item.active .alur-item-bg,
.alur-item:hover .alur-item-bg {
    transform: scaleX(1);
}
.alur-item.active .alur-text h3,
.alur-item:hover .alur-text h3 {
    color: #ffffff;
}
.alur-item.active .alur-text p,
.alur-item:hover .alur-text p {
    color: rgba(255, 255, 255, 0.9);
}
.alur-item.active .alur-number,
.alur-item:hover .alur-number {
    color: #38bdf8; /* Cyan */
}

/* =================== SIAPA SAJA SECTION (REDESIGN) =================== */
.section-siapa-new {
    padding: 120px 0;
    background-color: #ffffff;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

.siapa-heading-large {
    font-size: clamp(2rem, 3.5vw, 3.5rem); /* Matches alur-heading-main exactly */
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -1px;
}

.siapa-card-new {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    cursor: default;
    border: 1px solid rgba(56, 189, 248, 0.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08), 0 0 15px rgba(56, 189, 248, 0.1); /* Soft neon glow */
}

.siapa-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%), url('../../images/about.jpg') center/cover no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.siapa-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.siapa-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.siapa-icon {
    font-size: 2rem;
    color: #2563eb;
    transition: color 0.4s ease;
}

.siapa-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0f172a;
    transition: color 0.4s ease;
}

.siapa-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.siapa-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.4s ease;
}

/* Active or Hover State (Dark Theme as per image) */
.siapa-card-new.active,
.siapa-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.4), 0 0 25px rgba(56, 189, 248, 0.5); /* Strong neon glow on hover */
}

.siapa-card-new.active .siapa-card-bg,
.siapa-card-new:hover .siapa-card-bg {
    opacity: 1;
}

.siapa-card-new.active .siapa-number,
.siapa-card-new:hover .siapa-number {
    color: #38bdf8; /* Cyan accent matching Alur */
}

.siapa-card-new.active .siapa-icon,
.siapa-card-new:hover .siapa-icon {
    color: #38bdf8;
}

.siapa-card-new.active .siapa-card-title,
.siapa-card-new:hover .siapa-card-title {
    color: #ffffff;
}

.siapa-card-new.active .siapa-card-desc,
.siapa-card-new:hover .siapa-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* =================== HUBUNGI KAMI SECTION (NEW REDESIGN) =================== */
.section-hubungi-new {
    min-height: 100vh;
    background: url('../../images/ptamks.webp') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

.hubungi-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(2px) saturate(10%);
    -webkit-backdrop-filter: blur(2px) saturate(10%);
    z-index: 1;
}

.hubungi-circular-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hubungi-circle {
    width: 80px;
    height: 80px;
    background: #38bdf8; /* Cyan accent matching Hero & Alur */
    color: #0f172a !important; /* Force icon color */
    border-radius: 50%;
    text-decoration: none;
    position: absolute;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    font-size: 1.5rem;
}
.btn-hubungi-circle .fas {
    color: #0f172a !important;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.btn-hubungi-circle:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}
.btn-hubungi-circle:hover .fas {
    transform: rotate(90deg);
}

.hubungi-circular-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.hubungi-card-container {
    padding: 20px;
}

.hubungi-interactive-card {
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

@media (max-width: 575.98px) {
    .hubungi-interactive-card {
        padding: 40px 25px;
    }
}

.hubungi-item {
    margin-bottom: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.hubungi-item:last-child {
    margin-bottom: 0;
}

.hubungi-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Inactive State */
.hubungi-item:not(.active) .hubungi-item-title {
    font-size: 1.5rem;
    color: #475569;
    border-bottom: 3px solid #0f172a;
    padding-bottom: 2px;
}

.hubungi-item:not(.active) .hubungi-item-title:hover {
    color: #0f172a;
    border-color: #38bdf8;
}

.hubungi-item-content {
    display: none;
    margin-top: 20px;
    animation: fadeIn 0.4s ease forwards;
}

/* Active State */
.hubungi-item.active {
    cursor: default;
}

.hubungi-item.active .hubungi-item-title {
    font-size: 2.2rem;
    border-bottom: 3px solid transparent;
    color: #0f172a;
    pointer-events: none;
    letter-spacing: -0.5px;
}

.hubungi-item.active .hubungi-item-content {
    display: block;
}

.hubungi-item-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    .hubungi-item:not(.active) .hubungi-item-title {
        font-size: 1.25rem;
    }
    .hubungi-item.active .hubungi-item-title {
        font-size: 1.8rem;
    }
}

.btn-hubungi-action {
    background: #2563eb; /* Blue primary color */
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    padding: 12px 28px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-hubungi-action:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =================== WHATSAPP BUTTON =================== */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.1);
}
.my-whatsapp {
    color: #fff;
    font-size: 1.8rem;
}

/* =================== FOOTER =================== */
.section-footer-top {
    background: #f8fafc;
    padding: 80px 0 60px 0;
    border-top: 1px solid rgba(0,0,0,0.03);
}
.footer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}
.footer-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}
.contact-item-footer {
    transition: transform 0.2s ease;
}
.contact-item-footer:hover {
    transform: translateX(8px);
}
.contact-icon-footer {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    flex-shrink: 0;
}
.contact-item-footer:hover .contact-icon-footer {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
.hover-primary-text {
    transition: color 0.2s ease;
}
.hover-primary-text:hover {
    color: #2563eb !important;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37,99,235,0.2);
}
.btn-kunjungi {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-kunjungi:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
.section-footer-bottom {
    background: #0f172a;
    color: #94a3b8;
    padding: 24px 0;
}
.footer-copyright {
    font-size: 0.95rem;
}

/* =================== FAQ SECTION =================== */
.section-faq {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.faq-main-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -1px;
}
.faq-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    max-width: 95%;
}

/* Modern Accordion */
.modern-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.1) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.06), 0 0 10px rgba(56, 189, 248, 0.08); /* Soft neon glow */
    transition: all 0.3s ease;
}
.modern-accordion .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2), 0 0 20px rgba(56, 189, 248, 0.3); /* Strong blue glow */
    border-color: rgba(56, 189, 248, 0.5) !important;
    transform: translateY(-2px);
}
.modern-accordion .accordion-button {
    background: #ffffff;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 24px;
    box-shadow: none !important;
    border-radius: 16px !important;
}

@media (max-width: 767.98px) {
    .modern-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 16px 20px;
    }
}
.modern-accordion .accordion-button:not(.collapsed) {
    color: #2563eb;
    background: #ffffff;
    box-shadow: none;
}
.modern-accordion .accordion-button::after {
    background-image: none;
    content: '\f067'; /* FontAwesome plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
}
.modern-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '\f068'; /* FontAwesome minus icon */
    color: #2563eb;
    transform: rotate(180deg);
}
.modern-accordion .accordion-body {
    padding: 0 24px 24px 24px;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    background: #ffffff;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .title-top-beranda-1 { font-size: 1.8rem; }
    .title-top-beranda-2 { font-size: 1.4rem; }
    .siapa-main-title { font-size: 2rem; line-height: 1.3; }
    .siapa-desc { max-width: 100%; font-size: 1rem; }
    .siapa-card-horizontal { padding: 20px; flex-direction: column; }
    .siapa-card-horizontal .icon-box { margin-bottom: 15px; margin-right: 0; }
    .faq-main-title { font-size: 2rem; }
    .faq-desc { max-width: 100%; font-size: 1rem; }
    .whatsapp { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .my-whatsapp { font-size: 1.3rem; }
    .hubungi-main-title { font-size: 2rem; }
    .contact-info-wrapper { padding-right: 0; }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
