:root {
    --primary: #2b3b8c;
    --secondary: #3b50a3;
    --accent: #5e72e4;
    --light: #F8F9FA;
    --dark: #1F2937;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #ffffff;
}

/* Glass Navbar */
.ftco_navbar {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 20px 0 !important;
}

.ftco_navbar.scrolled {
    padding: 15px 0 !important;
    background: #2b3b8c !important;
    /* Block solid dark blue when scrolled */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: none;
    border-bottom: none;
}

.navbar-brand {
    font-weight: 800;
    color: #ffffff !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-item.active .nav-link,
.ftco_navbar.scrolled .nav-link:hover {
    color: #ffffff !important;
}

.ftco_navbar.scrolled .nav-item.active .nav-link {
    color: #f8c146 !important;
    /* Highlight gold on active when scrolled (optional for style matching your screenshot) */
}

.ftco_navbar.scrolled .nav-link {
    color: #ffffff !important;
    /* Default white when scrolled */
}

/* Buttons */
.btn-premium {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 12px 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    backdrop-filter: blur(5px);
}

.btn-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-premium-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 12px 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    backdrop-filter: blur(5px);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Modern Hero */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2b3b8c 0%, #4a62af 50%, #5e72e4 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Add smooth wave overlay to mimic reference */
.hero-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.05)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero-shape {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Premium Counters */
.counter-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.glass-card-counter {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.glass-card-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.glass-card-counter .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 30px;
}

.glass-card-counter .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

/* Glass Cards Generic */
.glass-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.glass-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(10, 38, 71, 0.05);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.glass-card:hover .icon-wrapper {
    background: var(--accent);
    color: #fff;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Blog/Kegiatan Cards */
.modern-blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-blog-card .img-container {
    height: 250px;
    overflow: hidden;
}

.modern-blog-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-blog-card:hover .img-container img {
    transform: scale(1.05);
}

.modern-blog-card .content {
    padding: 30px;
    flex-grow: 1;
}

.badge-premium {
    background: rgba(255, 90, 95, 0.1);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Image Showcase */
.image-showcase {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-showcase img {
    width: 100%;
    display: block;
}

.image-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 38, 71, 0.8), transparent);
}

/* Modern Footer */
.modern-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.modern-footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.modern-footer ul li {
    margin-bottom: 15px;
}

.modern-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.modern-footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Contact Box */
.contact-info-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateX(10px);
}

.contact-info-box .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 95, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-info-box p {
    margin: 0;
}

.contact-info-box p span {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info-box a {
    color: var(--dark);
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-shape {
        width: 100%;
        clip-path: none;
        opacity: 0.9;
    }

    .hero-text-box {
        margin-top: 50px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .counter-section {
        margin-top: 50px;
    }
}