/* CSS kustom untuk Landing Page - WordPress */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0f52ba;
    --primary-hover: #0a3d8f;
    --primary-light: rgba(15, 82, 186, 0.08);
    --secondary: #00c4cc;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 82, 186, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset dasar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.custom-landing-body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Header */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 82, 186, 0.05);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a, .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
    display: inline-block;
    transition: var(--transition);
}

.nav-menu a::after, .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu .current-menu-item a, .nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-menu a:hover::after, .nav-menu .current-menu-item a::after, .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}/* Sub-menu Dropdown Support */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 20px -5px rgba(15, 82, 186, 0.08) !important;
    border-radius: 8px !important;
    padding: 6px 0 !important;
    min-width: 160px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

/* Hover Bridge to prevent dropdown from disappearing */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.nav-menu .sub-menu li {
    width: 100%;
    padding: 0 6px;
    border-bottom: none !important;
}

.nav-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 10px 14px !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none;
    border-radius: 6px !important;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: left;
    background-color: transparent !important;
}

.nav-menu .sub-menu a::after {
    display: none !important;
}

.nav-menu .sub-menu a:hover {
    background-color: rgba(15, 82, 186, 0.06) !important;
    color: #0f52ba !important;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: #0c1e45;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05) translateX(100%);
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 1.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    opacity: 0;
    transform: scale(1.05) translateX(-100%);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 82, 186, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 36px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -10px rgba(15, 82, 186, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(15, 82, 186, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-blue {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-blue:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(15, 82, 186, 0.3);
}

/* Section General */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-light {
    background-color: var(--light-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tagline {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Tentang Kami Section */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.feature-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: block;
    object-fit: cover;
}

.badge-card {
    position: absolute;
    bottom: -24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 250px;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* Video Section */
.video-section {
    text-align: center;
    background-color: var(--light-bg);
}

.video-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.underline-decor {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.video-container {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    position: relative;
    background-color: var(--dark);
}

.video-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('assets/images/video_thumbnail.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-thumbnail-placeholder:hover {
    transform: scale(1.02);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ef4444;
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background-color: #dc2626;
}

.video-play-btn svg {
    margin-left: 4px;
}

/* Campaign Section */
.badge-left {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.badge-left-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer Section */
.custom-footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.footer-links a, .footer-link {
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover, .footer-link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.newsletter-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-submit:hover {
    background-color: var(--primary-hover);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-bottom-link {
    font-size: 13px;
    color: var(--text-light);
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Responsivitas Layar (Media Queries) */
@media (max-width: 1024px) {
    .grid-2 {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .nav-menu.open {
        max-height: 480px;
    }
    
    .nav-menu .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none !important;
        border: none !important;
        background-color: #f8fafc !important;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        padding: 6px 0 !important;
        gap: 0;
        border-radius: 0 !important;
    }

    .nav-menu .sub-menu li {
        padding: 0;
        border-bottom: none !important;
    }

    .nav-menu .sub-menu a {
        text-align: center;
        padding: 12px 0 !important;
        background-color: #f8fafc !important;
        color: #334155 !important;
    }

    .nav-menu .sub-menu a:hover {
        background-color: rgba(15, 82, 186, 0.06) !important;
        color: #0f52ba !important;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .badge-card {
        right: 12px;
        bottom: -16px;
    }
    
    .badge-left {
        left: 12px;
        bottom: -16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Spacing correction for Footer PT Name & Address */
.custom-footer .footer-company-name {
    margin-bottom: 2px !important;
}
.custom-footer .footer-company-address {
    margin-top: 2px !important;
}
