/* ============================================
   LP KURSUS PRIVAT - FULL CSS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ============================================
   HEADER - Background #1A6DE5
   ============================================ */
#header-privat {
    background: #1A6DE5;
    position: sticky;
    top: 0;
    z-index: 99999;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#header-privat .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-privat .header-logo img {
    height: 45px;
    width: auto;
}

#header-privat .header-nav {
    display: flex;
}

#header-privat .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

#header-privat .nav-menu > li {
    position: relative;
}

#header-privat .nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

#header-privat .nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
}

#header-privat .nav-menu > li > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

#header-privat .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header-privat .has-submenu:hover > a i {
    transform: rotate(180deg);
}

#header-privat .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100000;
}

#header-privat .submenu li a {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

#header-privat .submenu li a:hover {
    background: #EBF4FF;
    color: #1A6DE5;
}

/* Mobile Toggle */
#header-privat .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#header-privat .mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#header-privat .mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#header-privat .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

#header-privat .mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
#header-privat .mobile-nav {
    display: none;
    background: #FFFFFF;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

#header-privat .mobile-nav.active {
    max-height: 600px;
}

#header-privat .mobile-menu {
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

#header-privat .mobile-menu > li > a,
#header-privat .mobile-menu > li > .submenu-toggle {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

#header-privat .mobile-menu .menu-icon {
    width: 22px;
    margin-right: 12px;
    color: #1A6DE5;
}

#header-privat .mobile-menu > li > a > span,
#header-privat .mobile-menu > li > .submenu-toggle > span {
    flex-grow: 1;
}

#header-privat .mobile-menu > li > .submenu-toggle > .arrow {
    color: #666;
    transition: transform 0.3s ease;
    margin-left: auto;
}

#header-privat .mobile-menu > li > a:hover,
#header-privat .mobile-menu > li > .submenu-toggle:hover {
    background: #EBF4FF;
}

#header-privat .mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #F8FAFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#header-privat .mobile-submenu.active {
    max-height: 300px;
}

#header-privat .mobile-submenu li a {
    display: block;
    padding: 12px 24px 12px 60px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

#header-privat .mobile-submenu li a:hover {
    background: #EBF4FF;
    color: #1A6DE5;
}

/* Mobile CTA */
#header-privat .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 24px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1A6DE5, #0D5BCE);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(26, 109, 229, 0.25);
}

@media (max-width: 968px) {
    #header-privat .header-nav {
        display: none;
    }
    
    #header-privat .mobile-toggle {
        display: flex;
    }
    
    #header-privat .mobile-nav {
        display: block;
    }
}

@media (max-width: 480px) {
    #header-privat .header-logo img {
        height: 38px;
    }
    
    #header-privat .header-container {
        padding: 10px 16px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero-privat {
    background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 50%, #1C76F7 100%);
    padding: 80px 20px 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero-privat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    /* animation removed for performance */
    pointer-events: none;
}

#hero-privat .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

#hero-privat .hero-content {
    color: #FFFFFF;
}

#hero-privat .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

#hero-privat .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: #FFFFFF;
}

#hero-privat .hero-title .highlight {
    color: #FBBF24;
}

#hero-privat .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 520px;
}

#hero-privat .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

#hero-privat .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #FFFFFF;
    color: #1C76F7;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#hero-privat .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

#hero-privat .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#hero-privat .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

#hero-privat .hero-stats {
    display: flex;
    gap: 32px;
}

#hero-privat .stat-item {
    text-align: left;
}

#hero-privat .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #FBBF24;
    margin-bottom: 4px;
}

#hero-privat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual - Image */
#hero-privat .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-privat .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    #hero-privat {
        padding: 70px 20px 50px;
    }
    
    #hero-privat .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    #hero-privat .hero-content {
        order: 1;
    }
    
    #hero-privat .hero-visual {
        order: 2;
    }
    
    #hero-privat .hero-title {
        font-size: 36px;
    }
    
    #hero-privat .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    #hero-privat .hero-cta {
        justify-content: center;
    }
    
    #hero-privat .hero-stats {
        justify-content: center;
    }
    
    #hero-privat .stat-item {
        text-align: center;
    }
}

@media (max-width: 640px) {
    #hero-privat {
        padding: 60px 16px 40px;
    }
    
    #hero-privat .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    #hero-privat .hero-title {
        font-size: 28px;
    }
    
    #hero-privat .hero-subtitle {
        font-size: 15px;
    }
    
    #hero-privat .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    #hero-privat .btn-primary,
    #hero-privat .btn-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    #hero-privat .hero-stats {
        gap: 20px;
    }
    
    #hero-privat .stat-value {
        font-size: 24px;
    }
    
    #hero-privat .stat-label {
        font-size: 12px;
    }
}

/* ============================================
   KEUNGGULAN SECTION
   ============================================ */
#keunggulan {
    padding: 2rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

#keunggulan::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.05), transparent);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(60px);
}

#keunggulan::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.04), transparent);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    filter: blur(60px);
}

#keunggulan .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#keunggulan .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

#keunggulan .section-title .highlight {
    color: #1C76F7;
}

#keunggulan .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Keunggulan Grid - Desktop */
.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2vh;
}

/* Keunggulan Card */
.keunggulan-card {
    background: white;
    border-radius: 0.625rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.keunggulan-card:hover {
    border-color: #1C76F7;
    box-shadow: 0 8px 25px rgba(28, 118, 247, 0.2);
}

/* Icon wrapper with hover effect */
.keunggulan-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.keunggulan-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    border-radius: 8px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.keunggulan-card:hover .keunggulan-icon {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
}

.keunggulan-icon i {
    font-size: 1.5rem;
    color: #1C76F7;
    transition: all 0.3s ease;
}

.keunggulan-card:hover .keunggulan-icon i {
    color: #fff;
}

#keunggulan .keunggulan-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.keunggulan-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* Swiper Keunggulan - Mobile */
.swiper-keunggulan {
    display: none !important;
    width: 100%;
    padding-bottom: 60px !important;
}

.swiper-keunggulan .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #1C76F7 !important;
    opacity: 0.3 !important;
    transition: all 0.3s !important;
}

.swiper-keunggulan .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 5px !important;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
}

@media (max-width: 1024px) {
    .keunggulan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #keunggulan {
        padding: 3rem 0;
    }

    #keunggulan .section-title {
        font-size: 1.75rem;
    }

    #keunggulan .section-subtitle {
        font-size: 1rem;
    }

    .keunggulan-grid {
        display: none !important;
    }

    .swiper-keunggulan {
        display: block !important;
    }

    .keunggulan-card {
        height: 100%;
        min-height: 250px;
        justify-content: center;
        border: 1px solid #DBEAFE;
        background-color: #f8faff;
    }
    
    .keunggulan-card:hover .keunggulan-icon {
        background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    }
    
    .keunggulan-card:hover .keunggulan-icon i {
        color: #1C76F7;
    }
}
/* ============================================
   TRUSTED SECTION
   ============================================ */
#trusted {
    padding: 2rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

#trusted::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.05), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

#trusted .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#trusted .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

#trusted .section-title .highlight {
    color: #1C76F7;
}

#trusted .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trusted-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#trusted .swiper {
    width: 100%;
    padding-bottom: 50px;
}

#trusted .swiper-slide {
    height: 296px;
    box-shadow: none;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 130px);
    grid-auto-flow: column;
    gap: 26px;
    height: 100%;
    width: 100%;
}

.trusted-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid #DBEAFE;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(28, 118, 247, 0.08);
    background-color: #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.trusted-item:hover {
    border-color: #1C76F7;
    box-shadow: 0 8px 25px rgba(28, 118, 247, 0.15);
}

.trusted-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.swiper-trusted .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #1C76F7 !important;
    opacity: 0.3 !important;
    transition: all 0.3s !important;
}

.swiper-trusted .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
}

.swiper-trusted .swiper-pagination {
    bottom: 0px !important;
}

@media (max-width: 768px) {
    #trusted {
        padding: 1rem 0;
    }

    #trusted .section-title {
        font-size: 1.75rem;
    }

    #trusted .section-subtitle {
        font-size: 1rem;
    }

    .trusted-grid {
        gap: 16px;
        grid-template-rows: repeat(2, 110px);
    }

    #trusted .swiper-slide {
        height: 252px;
    }

    .trusted-item {
        padding: 12px;
    }
}

/* ============================================
   PROGRAM SECTION
   ============================================ */
.program-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #EBF4FF 0%, #DBEAFE 50%, #EBF4FF 100%);
    position: relative;
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.08), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.program-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#daftar .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

#daftar .section-title .highlight {
    color: #1C76F7;
}

.program-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: white;
    color: #1C76F7;
    border: 2px solid #1C76F7;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 300ms;
    box-shadow: 0 2px 10px rgba(28, 118, 247, 0.1);
}

.tab-btn:hover {
    background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    box-shadow: 0 4px 15px rgba(28, 118, 247, 0.2);
    color: #1C76F7;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
    color: white;
    box-shadow: 0 4px 15px rgba(28, 118, 247, 0.4);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Program */
.swiper-program {
    width: 100%;
    padding: 2rem 0 5rem 0;
    overflow: visible;
}

.swiper-reguler,
.swiper-test {
    padding-bottom: 5rem;
}

.swiper-program .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.swiper-program .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* Program Card */
.program-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    border-color: #1C76F7;
    box-shadow: 0 10px 30px rgba(28, 118, 247, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.program-card:hover .card-header::before {
    right: -200%;
}

#daftar .card-header-title {
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.card-content {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-description {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    border-radius: 1rem;
    border-left: 4px solid #1C76F7;
    position: relative;
    overflow: hidden;
}

.program-description::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(28, 118, 247, 0.08);
    border-radius: 50%;
}

.program-description p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.price-section {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 1rem;
    border: 2px dashed #1C76F7;
}

.price-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1C76F7;
}

.price-value span {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.register-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.register-button:hover {
    background: linear-gradient(135deg, #0D5BCE, #0a4a9e);
    box-shadow: 0 8px 25px rgba(28, 118, 247, 0.35);
    color: white;
}

.register-button i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.register-button:hover i {
    transform: translateX(5px);
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C76F7, #0D5BCE, #1C76F7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover::after {
    transform: scaleX(1);
}

/* Swiper Navigation */
.swiper-reguler .swiper-button-next,
.swiper-reguler .swiper-button-prev,
.swiper-test .swiper-button-next,
.swiper-test .swiper-button-prev {
    color: #1C76F7 !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(28, 118, 247, 0.2) !important;
    transition: all 0.3s !important;
}

.swiper-reguler .swiper-button-next:hover,
.swiper-reguler .swiper-button-prev:hover,
.swiper-test .swiper-button-next:hover,
.swiper-test .swiper-button-prev:hover {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-reguler .swiper-button-next::after,
.swiper-reguler .swiper-button-prev::after,
.swiper-test .swiper-button-next::after,
.swiper-test .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 900 !important;
}

.swiper-reguler .swiper-pagination-bullet,
.swiper-test .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #1C76F7 !important;
    opacity: 0.3 !important;
    transition: all 0.3s !important;
}

.swiper-reguler .swiper-pagination-bullet-active,
.swiper-test .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
}

.swiper-reguler .swiper-pagination,
.swiper-test .swiper-pagination {
    bottom: 0px !important;
}

@media (max-width: 768px) {
    .program-section {
        padding: 1rem 0;
    }

    #daftar .section-title {
        font-size: 1.75rem;
    }

    .swiper-reguler .swiper-button-next,
    .swiper-reguler .swiper-button-prev,
    .swiper-test .swiper-button-next,
    .swiper-test .swiper-button-prev {
        display: none !important;
    }

    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .card-header {
        padding: 1.5rem 1rem;
    }

    #daftar .card-header-title {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 1.5rem 1.25rem;
    }

    .price-value {
        font-size: 1.5rem;
    }
}
/* ============================================
   GALERI SECTION
   ============================================ */
.galeri-section {
    padding: 1rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.galeri-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.05), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.galeri-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.galeri-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.galeri-section .section-title .highlight {
    color: #1C76F7;
}

.galeri-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.swiper-galeri {
    width: 100%;
    padding-bottom: 5rem;
}

.swiper-galeri .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.galeri-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.galeri-card:hover {
    border-color: #1C76F7;
    box-shadow: 0 8px 30px rgba(28, 118, 247, 0.2);
}

.galeri-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.galeri-card:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    cursor: grab;
    user-select: none;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-close:hover {
    background: #1C76F7;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: #1C76F7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.swiper-galeri .swiper-button-next,
.swiper-galeri .swiper-button-prev {
    color: #1C76F7 !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(28, 118, 247, 0.2) !important;
    transition: all 0.3s !important;
}

.swiper-galeri .swiper-button-next:hover,
.swiper-galeri .swiper-button-prev:hover {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-galeri .swiper-button-next::after,
.swiper-galeri .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 900 !important;
}

.swiper-galeri .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #1C76F7 !important;
    opacity: 0.3 !important;
    transition: all 0.3s !important;
}

.swiper-galeri .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
}

.swiper-galeri .swiper-pagination {
    bottom: 0px !important;
}

@media (max-width: 768px) {
    .galeri-section {
        padding: 1rem 0;
    }

    .galeri-section .section-title {
        font-size: 1.75rem;
    }

    .swiper-galeri .swiper-button-next,
    .swiper-galeri .swiper-button-prev {
        display: none !important;
    }

    .galeri-card img {
        height: 180px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ============================================
   TESTIMONI SECTION
   ============================================ */
.testimoni-section {
    padding: 1rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimoni-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 118, 247, 0.05), transparent);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(60px);
}

.testimoni-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimoni-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimoni-section .section-title .highlight {
    color: #1C76F7;
}

.testimoni-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.swiper-testimoni {
    width: 100%;
    padding-bottom: 5rem;
}

.swiper-testimoni .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.testimoni-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimoni-card:hover {
    border-color: #1C76F7;
    box-shadow: 0 8px 30px rgba(28, 118, 247, 0.15);
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 4px;
}

.star-rating i {
    color: #FBBF24;
    font-size: 1rem;
}

.testimoni-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.testimoni-text::before {
    content: '"';
    font-size: 1.5rem;
    color: #1C76F7;
    font-weight: 700;
}

.testimoni-text::after {
    content: '"';
    font-size: 1.5rem;
    color: #1C76F7;
    font-weight: 700;
}

.testimoni-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.testimoni-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #DBEAFE;
}

.testimoni-info {
    display: flex;
    flex-direction: column;
}

.testimoni-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    margin: 0;
}

.testimoni-occupation {
    color: #1C76F7;
    font-size: 0.85rem;
    margin: 0;
}

.swiper-testimoni .swiper-button-next,
.swiper-testimoni .swiper-button-prev {
    color: #1C76F7 !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(28, 118, 247, 0.2) !important;
    transition: all 0.3s !important;
}

.swiper-testimoni .swiper-button-next:hover,
.swiper-testimoni .swiper-button-prev:hover {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-testimoni .swiper-button-next::after,
.swiper-testimoni .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 900 !important;
}

.swiper-testimoni .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #1C76F7 !important;
    opacity: 0.3 !important;
    transition: all 0.3s !important;
}

.swiper-testimoni .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #1C76F7, #0D5BCE) !important;
}

.swiper-testimoni .swiper-pagination {
    bottom: 0px !important;
}

@media (max-width: 768px) {
    .testimoni-section {
        padding: 1rem 0;
    }

    .testimoni-section .section-title {
        font-size: 1.75rem;
    }

    .swiper-testimoni .swiper-button-next,
    .swiper-testimoni .swiper-button-prev {
        display: none !important;
    }

    .testimoni-card {
        padding: 1.5rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

#faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

#faq-section .section-title .highlight {
    color: #1C76F7;
}

#faq-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1C76F7;
    box-shadow: 0 4px 20px rgba(28, 118, 247, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F8FAFF;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    padding-right: 16px;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon i {
    color: #1C76F7;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
}

.faq-item.active .faq-toggle-icon i {
    color: white;
    transform: rotate(180deg);
}

.faq-question:hover .faq-toggle-icon {
    background: linear-gradient(135deg, #1C76F7, #0D5BCE);
}

.faq-question:hover .faq-toggle-icon i {
    color: white;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #1C76F7;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #faq-section {
        padding: 3rem 0;
    }

    #faq-section .section-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta-form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 50%, #1C76F7 100%);
    position: relative;
    overflow: hidden;
}

#cta-form-section .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#cta-form-section .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

#cta-form-section .bg-shape-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    left: -100px;
}

#cta-form-section .bg-shape-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -50px;
    right: -50px;
}

#cta-form-section .bg-shape-3 {
    width: 150px;
    height: 150px;
    background: #FBBF24;
    top: 50%;
    right: 10%;
    opacity: 0.08;
}

#cta-form-section .cta-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

#cta-form-section .cta-illustration {
    background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

#cta-form-section .cta-illustration::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

#cta-form-section .illustration-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

#cta-form-section .illustration-icon i {
    font-size: 50px;
    color: #fff;
}

#cta-form-section .illustration-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

#cta-form-section .illustration-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
}

#cta-form-section .cta-form-content {
    padding: 50px 40px;
}

#cta-form-section .form-header {
    margin-bottom: 30px;
}

#cta-form-section .form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

#cta-form-section .form-title span {
    color: #1C76F7;
}

#cta-form-section .form-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

#cta-form-section .form-group {
    margin-bottom: 20px;
    position: relative;
}

#cta-form-section .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#cta-form-section .form-group label i {
    color: #1C76F7;
    margin-right: 8px;
    width: 16px;
}

#cta-form-section .form-group input,
#cta-form-section .form-group select {
    width: 100%;
    padding: 8px 16px 8px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#cta-form-section .form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C76F7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

#cta-form-section .form-group input:focus,
#cta-form-section .form-group select:focus {
    outline: none;
    border-color: #1C76F7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(28, 118, 247, 0.1);
}

#cta-form-section .form-group .input-icon {
    position: absolute;
    left: 16px;
    top: 38px;
    color: #1C76F7;
    font-size: 16px;
}

#cta-form-section .form-group.error input,
#cta-form-section .form-group.error select {
    border-color: #EF4444;
    background: #FEF2F2;
}

#cta-form-section .form-group.error .input-icon {
    color: #EF4444;
}

#cta-form-section .error-message {
    display: none;
    font-size: 12px;
    color: #EF4444;
    margin-top: 6px;
}

#cta-form-section .form-group.error .error-message {
    display: block;
}

#cta-form-section .submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#cta-form-section .submit-btn:hover {
    background: linear-gradient(135deg, #0D5BCE 0%, #0A4DA8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(28, 118, 247, 0.3);
    color: #fff;
}

#cta-form-section .submit-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    #cta-form-section {
        padding: 50px 20px;
    }

    #cta-form-section .cta-card {
        grid-template-columns: 1fr;
    }

    #cta-form-section .cta-illustration {
        padding: 40px 30px;
    }

    #cta-form-section .illustration-icon {
        width: 100px;
        height: 100px;
    }

    #cta-form-section .illustration-icon i {
        font-size: 40px;
    }

    #cta-form-section .illustration-title {
        font-size: 22px;
    }

    #cta-form-section .cta-form-content {
        padding: 40px 30px;
    }

    #cta-form-section .form-title {
        font-size: 24px;
    }

    #cta-form-section .form-group input,
    #cta-form-section .form-group select {
        padding: 8px 16px 8px 42px;
    }
}

/* ============================================
   FOOTER - Background #1A6DE5
   ============================================ */
#footer-privat {
    background: #1A6DE5;
    color: #FFFFFF;
    padding: 60px 0 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#footer-privat .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer-privat .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Brand */
#footer-privat .footer-brand {
    display: flex;
    flex-direction: column;
}

#footer-privat .footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

#footer-privat .footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

#footer-privat .footer-desc strong {
    color: #FFFFFF;
}

/* Social Icons - Hover Icon Only */
#footer-privat .footer-social {
    display: flex;
    gap: 12px;
}

#footer-privat .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer-privat .social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

#footer-privat .social-icon:hover i {
    color: #FBBF24;
    transform: scale(1.2);
}

#footer-privat .social-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Footer Links */
#footer-privat .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

#footer-privat .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer-privat .footer-menu li {
    margin-bottom: 12px;
}

#footer-privat .footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

#footer-privat .footer-menu a:hover {
    color: #FBBF24;
}

#footer-privat .footer-menu a i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

#footer-privat .footer-menu a:hover i {
    color: #FBBF24;
    transform: translateX(3px);
}

/* Footer Contact */
#footer-privat .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer-privat .contact-list li {
    margin-bottom: 16px;
}

#footer-privat .contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

#footer-privat .contact-list a:hover {
    color: #FFFFFF;
}

#footer-privat .contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

#footer-privat .contact-list a:hover .contact-icon {
    background: rgba(255, 255, 255, 0.1);
}

#footer-privat .contact-list a:hover .contact-icon i {
    color: #FBBF24;
    transform: scale(1.15);
}

#footer-privat .contact-icon i {
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Footer Bottom */
#footer-privat .footer-bottom {
    padding: 20px 0;
    text-align: center;
}

#footer-privat .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 968px) {
    #footer-privat .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    #footer-privat .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    #footer-privat {
        padding: 40px 0 0;
    }
    
    #footer-privat .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    #footer-privat .footer-brand {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }
    
    #footer-privat .footer-social {
        justify-content: center;
    }
    
    #footer-privat .footer-links,
    #footer-privat .footer-contact {
        text-align: center;
    }
    
    #footer-privat .contact-list a {
        justify-content: center;
    }
}

/* ============================================
   HEADER - PLACEMENT TEST BUTTON
   ============================================ */
#header-privat .nav-btn-pto {
    background: #FFD700;
    color: #1a1a1a !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#header-privat .nav-btn-pto:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

#header-privat .mobile-btn-pto {
    background: #FFD700;
    color: #1a1a1a !important;
    border-radius: 8px;
    margin-top: 10px;
}

#header-privat .mobile-btn-pto span {
    color: #1a1a1a;
}

#header-privat .mobile-btn-pto .menu-icon {
    color: #1a1a1a;
}

/* ============================================
   PLACEMENT TEST ONLINE (PTO) BANNER SECTION
   ============================================ */
#placement-test-pto {
    padding: 60px 20px;
    background: #f8fafc;
}

#placement-test-pto .container {
    max-width: 1200px;
    margin: 0 auto;
}

.goc-pto-banner {
    background: linear-gradient(135deg, #3886EE 0%, #1a5cb8 50%, #0d4a9e 100%);
    padding: 28px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(56, 134, 238, 0.3);
    position: relative;
    overflow: hidden;
}

.goc-pto-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.goc-pto-banner::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.goc-pto-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.goc-pto-icon {
    font-size: 36px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.goc-pto-text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.goc-pto-badge {
    background: #FFD700;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.goc-pto-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

.goc-pto-cta {
    position: relative;
    z-index: 1;
}

.goc-pto-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #3886EE;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.goc-pto-btn:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #2a6fcc;
}

.goc-pto-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.goc-pto-btn:hover i {
    transform: translateX(3px);
}

/* PTO Banner Responsive */
@media (max-width: 768px) {
    #placement-test-pto {
        padding: 40px 20px;
    }
    
    .goc-pto-banner {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .goc-pto-content {
        flex-direction: column;
    }
    
    .goc-pto-text h3 {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .goc-pto-btn {
        width: 100%;
        justify-content: center;
    }
}