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

:root {
    --primary-color: #93571B;
    --secondary-color: #F27216;
    --accent-color: #F9EE45;
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-medium: #d1d5db;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.3rem
}

h4 {
    font-size: 1.2rem
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: .9rem
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #ef4444);
    color: var(--white);
    box-shadow: var(--shadow);
    text-align: center
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover)
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow)
}

.navbar {
    padding: 1rem 0
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-brand img {
    height: 50px;
    width: auto
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative
}

.nav-menu a:hover {
    color: var(--secondary-color)
}

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

.nav-menu a:hover::after {
    width: 100%
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition)
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 90px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-BG.webp') center/cover;
    background-image: url('images/hero-BG.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #6a4301F5);
    opacity: .9
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: .9
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow)
}

.about-section {
    padding: 3rem 0;
    background: var(--gray-light)
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.about-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.about-heading {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem
}

.success-stories-section {
    padding: 3rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 2rem
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem
}

.section-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.story-video {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.story-video:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-caption {
    padding: 1.5rem
}

.video-caption h4 {
    color: var(--primary-color);
    margin-bottom: .5rem
}

.video-caption p {
    color: var(--text-light);
    margin-bottom: 0
}

.privat-skb-section {
    padding: 2rem 0;
    background: var(--gray-light)
}

.privat-skb-widget {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), #6a4301F5);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    color: var(--white)
}

.privat-skb-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    position: relative
}

.privat-skb-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1
}

.privat-skb-text p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px
}

.privat-skb-text .btn {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(242, 114, 22, .3)
}

.privat-skb-text .btn:hover {
    background: #e65a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 114, 22, .4)
}

.privat-skb-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.privat-skb-image img {
    width: 450px;
    height: auto;
    z-index: 2;
    position: relative
}

.privat-skb-secondary-text {
    position: absolute;
    top: -20px;
    left: -30px;
    text-align: center;
    z-index: 3
}

.privat-skb-secondary-text p {
    color: var(--white);
    font-size: .9rem;
    font-style: italic;
    margin: 0;
    line-height: 1.2
}

.privat-skb-secondary-btn {
    position: absolute;
    bottom: -15px;
    right: -40px;
    z-index: 3
}

.privat-skb-secondary-btn .btn {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    padding: 10px 20px;
    font-size: .9rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(242, 114, 22, .3)
}

.privat-skb-secondary-btn .btn:hover {
    background: #e65a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 114, 22, .4)
}

.programs-section {
    padding: 3rem 0;
    background: var(--gray-light)
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto
}

.program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 1 1 450px;
    min-width: 300px;
    max-width: 480px
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.program-image {
    width: 100%;
    height: 260px;
    overflow: hidden
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.program-card:hover .program-image img {
    transform: scale(1.05)
}

.program-content {
    padding: 1.5rem
}

.program-brand {
    margin-bottom: 1rem
}

.program-brand span {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600
}

.program-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center
}

.program-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify
}

.program-content .btn {
    display: block;
    margin: 0 auto;
    align-items: center;
    text-align: center
}

.features-section {
    padding: 3rem 0
}

.features-section p {
    text-align: justify
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.feature-card p {
    line-height: 1.6
}

.features-cta {
    text-align: center;
    margin-top: 3rem
}

.road-to-success-section {
    padding: 3rem 0;
    background: var(--gray-light)
}

.success-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto
}

.success-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition)
}

.success-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.success-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 4px 15px rgba(147, 87, 27, .3);
    transition: var(--transition)
}

.success-step:hover .success-step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(147, 87, 27, .4)
}

.success-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem
}

.success-step p {
    line-height: 1.6;
    text-align: justify
}

.testimonials-section {
    padding: 3rem 0
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0, #f8f9fa 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(147, 87, 27, .1);
    position: relative;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 0
}

.testimonial-card.desktop {
    width: calc(50% - 1rem)
}

.testimonial-card.mobile {
    width: 100%
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: .2;
    font-family: serif;
    font-weight: 700
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(147, 87, 27, .2);
    border-color: var(--primary-color)
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(147, 87, 27, .05), rgba(242, 114, 22, .05));
    border-radius: 12px;
    border: 1px solid rgba(147, 87, 27, .1);
    position: relative;
    z-index: 2
}

.testimonial-author img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: var(--transition)
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.05);
    border-color: var(--secondary-color)
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: .5rem;
    font-size: 1.1rem;
    font-weight: 600
}

.author-info span {
    color: var(--text-dark);
    font-size: .9rem;
    font-weight: 500;
    opacity: .8;
    display: block;
    padding: .25rem .75rem;
    background: var(--accent-color);
    border-radius: 15px;
    width: fit-content
}

.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), #6a4301F5);
    color: var(--white);
    background-image: url(images/cta-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 87, 27, .8), rgba(106, 67, 1, .9));
    z-index: 1
}

.cta-content {
    position: relative;
    z-index: 2
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem
}

.venue-section {
    padding: 3rem 0;
    background: var(--gray-light)
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto
}

.venue-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.venue-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition)
}

.venue-image:hover img {
    transform: scale(1.05)
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0 2rem
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 10px
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem
}

.footer-section p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: .5rem
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition)
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px)
}

.contact-info p {
    margin-bottom: .5rem
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none
}

.contact-info a:hover {
    text-decoration: underline
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6)
}

@media (max-width:1024px) {
    .hero-title {
        font-size: 2rem
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .hero-image {
        order: -1
    }

    .privat-skb-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem
    }

    .privat-skb-image {
        order: -1
    }

    .privat-skb-image img {
        width: 300px
    }

    .privat-skb-secondary-text {
        top: -15px;
        left: -20px
    }

    .privat-skb-secondary-btn {
        bottom: -10px;
        right: -25px
    }
}

@media (max-width:768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition)
    }

    .cta-content h2 {
        font-size: 1.2rem
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }

    .nav-toggle {
        display: flex
    }

    .hero-title {
        font-size: 1.6rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }

    .success-stories-grid {
        grid-template-columns: 1fr
    }

    .success-steps {
        grid-template-columns: 1fr;
        max-width: 100%
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 100%
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .venue-grid {
        grid-template-columns: 1fr;
        max-width: 100%
    }

    .testimonials-grid {
        max-width: 100%
    }

    .testimonial-card.desktop {
        display: none
    }

    .testimonial-card.mobile {
        display: block
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .privat-skb-text h2 {
        font-size: 2rem
    }

    .privat-skb-text p {
        font-size: .9rem
    }

    .privat-skb-image img {
        width: 300px
    }

    .privat-skb-secondary-text {
        top: -10px;
        left: -15px
    }

    .privat-skb-secondary-text p {
        font-size: .8rem
    }

    .privat-skb-secondary-btn {
        bottom: -8px;
        right: -20px
    }

    .privat-skb-secondary-btn .btn {
        padding: 8px 16px;
        font-size: .8rem
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 15px
    }

    .cta-content h2 {
        font-size: 1.2rem
    }

    .program-image {
        width: 100%;
        height: 200px;
        overflow: hidden
    }

    .hero-title {
        font-size: 1.5rem
    }

    .hero-description {
        font-size: 12px
    }

    .about-title {
        font-size: 1.8rem
    }

    .section-header h2 {
        font-size: 1.8rem
    }

    .btn {
        font-size: .8rem;
        padding: 10px 20px
    }

    .btn-large {
        font-size: .9rem;
        padding: 12px 24px
    }

    .privat-skb-content {
        padding: 1.5rem
    }

    .privat-skb-text h2 {
        font-size: 1.8rem
    }

    .privat-skb-text p {
        font-size: 12px
    }

    .privat-skb-image img {
        width: 300px
    }

    .privat-skb-secondary-text {
        top: -8px;
        left: -12px
    }

    .privat-skb-secondary-text p {
        font-size: .7rem
    }

    .privat-skb-secondary-btn {
        bottom: -6px;
        right: -15px
    }

    .privat-skb-secondary-btn .btn {
        padding: 6px 12px;
        font-size: .7rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.about-content,
.feature-card,
.hero-content,
.program-card,
.section-header,
.testimonial-card {
    animation: fadeInUp .6s ease-out both
}

html {
    scroll-behavior: smooth
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--gray-light)
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color)
}




/* Section button WA */
.button-wa {
    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 99999999;
}

.button-wa a {
    display: inline-flex;
    align-items: center;
    background-color: #b18849;
    padding: 8px 62px 8px 20px;
    /* ruang kiri lebih lebar */
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.button-wa .text-label {
    margin-right: 40px;
    /* ruang kosong agar logo muat di kanan */
    white-space: nowrap;
}

.button-wa img {
    width: 70px;
    position: absolute;
    right: -20px;
    /* biar nempel keluar dari oval */
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
    .button-wa a {
        font-size: 12px;
        padding: 3px 40px 3px 16px;
    }

    .button-wa img {
        width: 45px;
        right: -12px;
        right: -10px;
    }
    .header {
        z-index: 100000;
    }
    .navbar {
        padding: .01rem 0
    }
    p,
    .about-description,
    .about-subtitle,
    .section-header p,
    .testimonial-content p,
  	.footer-bottom{
        font-size: 12px;
    }
}