:root {
    --primary-navy: #1a2942;
    --secondary-navy: #2c3e57;
    --gold-accent: #d4af37;
    --light-gold: #f4e5b8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-top: 76px;
}

.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

[class*="col-"] {
    box-sizing: border-box;
    max-width: 100%;
}

/* Bootstrap container fix for mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        --bs-gutter-x: 1.5rem;
        margin-left: calc(-.5 * var(--bs-gutter-x));
        margin-right: calc(-.5 * var(--bs-gutter-x));
    }
    
    [class*="col-"] {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    max-width: 100%;
    overflow-x: hidden;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, rgba(26, 41, 66, 0.98) 0%, rgba(44, 62, 87, 0.98) 100%);
}

.navbar .container {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand .logo-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navbar-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-brand .brand-text {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-accent) !important;
    transform: translateY(-2px);
}

/* Active Menu Styling */
.navbar-nav .nav-link.active {
    color: var(--gold-accent) !important;
    position: relative;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 2px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 25px;
    margin-left: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold-accent);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn.active-lang {
    background: var(--gold-accent);
    color: var(--primary-navy);
    font-weight: 600;
}

.lang-btn:hover:not(.active-lang) {
    color: var(--white);
}

.lang-divider {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 10px 0 60px;
    max-width: 100%;
}

.hero-section .container {
    max-width: 100%;
    overflow: hidden;
}

.hero-section .row {
    margin: 0;
    max-width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

/* Animated Background Shapes */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-accent);
    top: 10%;
    left: 5%;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gold-accent);
    bottom: 20%;
    right: 10%;
    animation: float 15s infinite ease-in-out 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 50%;
    left: 50%;
    animation: float 18s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 20px;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-accent);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    margin-top: -10px;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

.trust-badge i {
    color: var(--gold-accent);
    font-size: 1.3rem;
}

.trust-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-content .highlight {
    color: var(--gold-accent);
    position: relative;
    display: inline-block;
}

.hero-subtitle-main {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Trust Indicators Row */
.trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--gold-accent);
}

.trust-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trust-info strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.trust-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary-custom {
    background: var(--gold-accent);
    color: var(--primary-navy);
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background: #c49f2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-navy);
}

/* Pulse Animation for CTA */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(212, 175, 55, 0.6), 0 0 0 10px rgba(212, 175, 55, 0.1);
    }
    100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    }
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover .btn-shine {
    left: 100%;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 18px 45px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

/* Urgency Box */
.urgency-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 2px solid rgba(239, 68, 68, 0.5);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: urgencyPulse 2s infinite;
    max-width: 500px;
}

@keyframes urgencyPulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.8);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.urgency-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgency-icon i {
    color: #fca5a5;
    font-size: 1.5rem;
    animation: clockTick 1s infinite;
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.urgency-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.urgency-content strong {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.urgency-content span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin-top: -20px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 100%;
        padding: 0 15px;
        overflow: hidden;
        margin-top: 0;
    }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--gold-accent);
}

.floating-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.floating-card span {
    font-size: 0.85rem;
    color: #666;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation: floatCard 3s infinite ease-in-out;
}

.card-2 {
    bottom: 25%;
    right: -8%;
    animation: floatCard 3s infinite ease-in-out 1s;
}

.card-3 {
    top: 45%;
    left: -12%;
    animation: floatCard 3s infinite ease-in-out 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    border-radius: 25px;
    z-index: 1;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: var(--gold-accent);
    opacity: 0.2;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 3px solid var(--gold-accent);
    opacity: 0.3;
}

/* Section Styling */
section {
    padding: 80px 0;
    max-width: 100%;
    overflow-x: hidden;
}

section .container {
    max-width: 100%;
    overflow-x: hidden;
}

section .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--gold-accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-section .mt-4 img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    display: block;
}

.stat-item .stat-label {
    color: var(--primary-navy);
    font-weight: 500;
}

/* Program Cards */
.program-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--gold-accent);
}

.program-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold-accent);
}

.program-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
}

/* Keunggulan Section */
.keunggulan-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
}

.keunggulan-section .section-title h2,
.keunggulan-section .section-title p {
    color: var(--white);
}

.keunggulan-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.keunggulan-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.keunggulan-item .icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.keunggulan-item h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.keunggulan-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    flex-grow: 1;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
    max-width: 100%;
}

.gallery-section .container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-hint {
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* Gallery navigation wrapper positioning */
.gallery-navigation {
    position: relative;
    padding-top: 10px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--secondary-navy);
    color: var(--white);
    border-color: var(--secondary-navy);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold-accent);
    color: var(--primary-navy);
    border-color: var(--gold-accent);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-accent) var(--light-gray);
    cursor: grab;
}

.gallery-grid:active {
    cursor: grabbing;
}

.gallery-grid.dragging {
    scroll-behavior: auto;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #c49f2e;
}

/* Gallery Navigation Arrows */
.gallery-navigation {
    position: relative;
    max-width: 100%;
    margin: 0 -15px;
    padding: 0 15px;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-accent);
    color: var(--primary-navy);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 1;
}

.gallery-scroll-btn:hover:not([style*="opacity: 0.3"]) {
    background: #c49f2e;
    transform: translateY(-50%) scale(1.1);
}

.gallery-scroll-btn:active:not([style*="opacity: 0.3"]) {
    transform: translateY(-50%) scale(0.95);
}

.gallery-scroll-btn.left {
    left: -25px;
}

.gallery-scroll-btn.right {
    right: -25px;
}

@media (max-width: 768px) {
    .gallery-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        opacity: 0.9;
    }
    
    .gallery-scroll-btn.left {
        left: 5px;
    }
    
    .gallery-scroll-btn.right {
        right: 5px;
    }
    
    .gallery-scroll-btn:hover {
        opacity: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    flex: 0 0 350px;
    width: 350px;
    height: 260px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    user-select: none;
}

.gallery-item[style*="display: none"] {
    display: none !important;
}

.gallery-grid.dragging .gallery-item {
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 41, 66, 0.95) 0%, rgba(26, 41, 66, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    margin-bottom: 15px;
}

.gallery-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--gold-accent);
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.gallery-view-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-accent);
    border: none;
    border-radius: 50%;
    color: var(--primary-navy);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.gallery-item:hover .gallery-view-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-view-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-modal-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
}

.gallery-modal-caption h4 {
    color: var(--gold-accent);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-modal-caption p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    line-height: 1;
}

.gallery-modal-close:hover {
    color: var(--gold-accent);
    transform: rotate(90deg);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--primary-navy);
    border: none;
    padding: 15px 20px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10000;
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--gold-accent);
    transform: translateY(-50%) scale(1.1);
}

/* Gallery item fade animation */
.gallery-item {
    animation: fadeInLeft 0.6s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }

/* Pricing Section */
.pricing-section {
    background: var(--white);
}

.pricing-toggle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.pricing-toggle-header:hover {
    color: var(--gold-accent) !important;
    transform: scale(1.02);
}

.pricing-toggle-header::after {
    content: attr(data-hint);
    position: absolute;
    bottom: -30px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    opacity: 0.7;
    font-style: italic;
}

.pricing-section .section-title .divider {
    margin-top: 35px;
}

.pricing-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pricing-toggle-header[aria-expanded="true"] .pricing-toggle-icon {
    transform: rotate(180deg);
}

#pricingContent {
    transition: all 0.4s ease;
}

#pricingContent.collapsing {
    transition: height 0.35s ease;
}

.pricing-section .row {
    align-items: stretch;
}

.pricing-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 620px;
}

.pricing-card.featured {
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--gold-accent);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
}

.pricing-badge.recommended {
    background: var(--gold-accent);
    color: var(--primary-navy);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, var(--gold-accent), #e6c84f);
    color: var(--primary-navy);
}

.pricing-card h3 {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .price {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-card .price .currency {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    vertical-align: top;
    margin-right: 5px;
}

.pricing-card .price .amount {
    font-size: 2.8rem;
    color: var(--primary-navy);
    font-weight: 800;
}

.pricing-card.featured .price .amount {
    color: var(--gold-accent);
}

.pricing-card .price .period {
    display: block;
    font-size: 1rem;
    color: #888;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features li {
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-features li span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-features li i {
    font-size: 1.2rem;
    color: #28a745;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: #dc3545;
}

.btn-pricing {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--secondary-navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 41, 66, 0.3);
}

.pricing-card.featured .btn-pricing {
    background: var(--gold-accent);
    color: var(--primary-navy);
}

.pricing-card.featured .btn-pricing:hover {
    background: #c49f2e;
    color: var(--primary-navy);
}

.price-info {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-info p {
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-details {
    margin-top: 40px;
}

.detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--light-gray);
    height: 100%;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.detail-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h4 i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card ul li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.detail-card ul li i {
    color: var(--gold-accent);
    font-size: 1rem;
}

.pricing-guarantee {
    margin-top: 20px;
}

.guarantee-box,
.schedule-box,
.payment-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    border-radius: 15px;
    padding: 35px;
    color: var(--white);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-box:hover,
.schedule-box:hover,
.payment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.guarantee-icon,
.schedule-icon,
.payment-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-navy);
}

.guarantee-box h4,
.schedule-box h4,
.payment-box h4 {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.guarantee-box p,
.schedule-box p,
.payment-box p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.schedule-box p strong,
.payment-box p strong {
    color: var(--gold-accent);
}

.bank-account {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.bank-account i {
    color: var(--gold-accent);
    margin-right: 5px;
}

.bank-account small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--gold-accent);
}

.pricing-note p {
    color: #555;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 600;
}

.pricing-note i {
    color: var(--gold-accent);
    font-size: 1.3rem;
}

/* QnA Section */
.qna-section {
    background: var(--light-gray);
}

.qna-toggle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.qna-toggle-header:hover {
    color: var(--gold-accent) !important;
    transform: scale(1.02);
}

.qna-toggle-header::after {
    content: attr(data-hint);
    position: absolute;
    bottom: -30px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    opacity: 0.7;
    font-style: italic;
}

.qna-section .accordion {
    margin-top: 40px;
}

.qna-section .accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.qna-section .accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.qna-section .accordion-button {
    background: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.qna-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    box-shadow: none;
}

.qna-section .accordion-button:not(.collapsed) i {
    color: var(--gold-accent);
}

.qna-section .accordion-button i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.qna-section .accordion-button:hover {
    background: rgba(212, 175, 55, 0.1);
}

.qna-section .accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
}

.qna-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2942'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.qna-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.qna-section .accordion-body {
    padding: 25px 30px;
    background: var(--white);
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 2px solid var(--light-gray);
}

/* Testimoni Section */
.testimoni-section {
    background: var(--white);
    overflow: hidden;
    padding: 80px 0;
}

.testimoni-section .container {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimoni-section {
        padding: 60px 0;
    }
}

.testimoni-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    transition: all 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimoni-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--gold-accent);
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 768px) {
    .testimoni-card .quote-icon {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
}

.testimoni-content {
    margin-bottom: 25px;
    flex: 1;
    overflow: hidden;
}

.testimoni-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: 150px;
    overflow-y: auto;
}

.testimoni-content p::-webkit-scrollbar {
    width: 4px;
}

.testimoni-content p::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.testimoni-content p::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 2px;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimoni-author .avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--gold-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimoni-author .info {
    flex: 1;
    overflow: hidden;
}

.testimoni-author .info h6 {
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimoni-author .info .program {
    color: var(--gold-accent);
    font-size: 0.9rem;
    word-wrap: break-word;
}

.testimoni-author .stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Google Rating Summary */
.google-rating-summary {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
}

.google-rating-summary .rating-stars {
    font-size: 1.5rem;
    color: #FDB30E;
    margin-bottom: 10px;
}

.google-rating-summary p {
    color: #555;
    margin-bottom: 15px;
}

.google-rating-summary .btn {
    margin-top: 10px;
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
    overflow: hidden;
}

#google-reviews-container {
    overflow: visible;
    max-width: 100%;
    flex: 1;
}

#google-reviews-container .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

#google-reviews-container [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.carousel-control-btn {
    background: var(--white);
    border: 2px solid var(--gold-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    align-self: flex-start;
    margin-top: 100px;
}

.carousel-control-btn:hover:not(:disabled) {
    background: var(--gold-accent);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

/* Tablet view - 2 columns */
@media (min-width: 577px) and (max-width: 768px) {
    .carousel-control-btn {
        display: none !important;
    }
    
    #google-reviews-container [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Gallery for tablet */
    .gallery-grid {
        gap: 18px;
        padding: 18px 0;
    }
    
    .gallery-item {
        flex: 0 0 320px;
        width: 320px;
        height: 240px;
    }
    
    .filter-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Desktop view - 3 columns with carousel */
@media (min-width: 769px) {
    .carousel-control-btn {
        display: flex !important;
    }
    
    #google-reviews-container .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    #google-reviews-container .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    /* Gallery for desktop */
    .gallery-grid {
        gap: 25px;
        padding: 25px 0;
    }
    
    .gallery-item {
        flex: 0 0 380px;
        width: 380px;
        height: 285px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .gallery-item {
        flex: 0 0 420px;
        width: 420px;
        height: 315px;
    }
    
    .gallery-grid {
        gap: 30px;
        padding: 30px 0;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .gallery-item {
        flex: 0 0 450px;
        width: 450px;
        height: 340px;
    }
}

/* Mobile view - 1 column */
@media (max-width: 576px) {
    .carousel-control-btn {
        display: none !important;
    }
}

.page-indicator {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Contact Section */
#kontak {
    background: #1A2942;
}

#kontak .section-title h2,
#kontak .section-title p {
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e6c84f 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta-dark {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-cta-dark:hover {
    background: var(--secondary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 41, 66, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 30px;
    max-width: 100%;
    overflow-x: hidden;
}

footer .container {
    max-width: 100%;
    overflow-x: hidden;
}

footer .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-section h5 {
    color: var(--gold-accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    color: var(--gold-accent);
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-accent);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #20b858;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    body {
        padding-top: 70px !important;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
    }
    
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero-section {
        padding: 10px 0 40px;
        min-height: auto;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-image-section {
        padding-top: 0;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.05rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Trust Badge Mobile */
    .trust-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        margin-top: -50px;
    }
    
    .trust-badge i {
        font-size: 1.1rem;
    }
    
    /* Trust Indicators Mobile */
    .trust-indicators {
        gap: 8px;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    
    .trust-item {
        padding: 10px 12px;
        flex: 1;
        min-width: 0;
        max-width: calc(33.333% - 8px);
        box-sizing: border-box;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
    
    .trust-info strong {
        font-size: 1rem;
    }
    
    .trust-info span {
        font-size: 0.75rem;
    }
    
    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pulse-animation {
        animation: none;
    }
    
    /* CTA Benefits Mobile */
    .cta-benefits {
        justify-content: center;
        gap: 12px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    .benefit-item {
        font-size: 0.82rem;
        flex-shrink: 1;
        white-space: nowrap;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    /* Urgency Box Mobile */
    .urgency-box {
        padding: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .urgency-icon {
        width: 45px;
        height: 45px;
    }
    
    .urgency-icon i {
        font-size: 1.3rem;
    }
    
    .urgency-content strong {
        font-size: 0.95rem;
    }
    
    .urgency-content span {
        font-size: 0.8rem;
    }
    
    /* Hero Image Section Mobile */
    .hero-image-section {
        margin-top: 0;
        padding-top: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
        overflow: hidden;
        padding: 0 15px;
    }
    
    .hero-main-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    /* Hide or minimize decorations on mobile */
    .decoration-1,
    .decoration-2 {
        display: none;
    }
    
    /* Floating Cards Mobile - Make smaller and adjust position */
    .floating-card {
        padding: 8px 12px;
        gap: 6px;
        max-width: 120px;
    }
    
    .floating-card i {
        font-size: 1.1rem;
    }
    
    .floating-card strong {
        font-size: 0.9rem;
    }
    
    .floating-card span {
        font-size: 0.7rem;
    }
    
    .card-1 {
        top: 5%;
        left: 0;
    }
    
    .card-2 {
        bottom: 20%;
        right: 0;
    }
    
    .card-3 {
        top: 40%;
        left: 0;
    }
    
    /* Background Shapes Mobile - Hide some for performance */
    .shape-1,
    .shape-2 {
        display: none;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .section-title p {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-cta-dark,
    .btn-whatsapp {
        display: block;
        margin: 10px auto !important;
    }
    
    /* Navbar for mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Navbar brand for mobile */
    .navbar-brand {
        font-size: 1rem;
        gap: 10px;
        max-width: calc(100% - 60px);
    }
    
    .navbar-brand .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Navbar collapse for mobile */
    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
        margin-top: 15px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    /* Active menu for mobile */
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(212, 175, 55, 0.1);
        border-radius: 5px;
    }
    
    /* Language switcher for mobile */
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
    
    /* Keunggulan items for mobile - adjust height */
    .keunggulan-item {
        min-height: 260px;
    }
    
    /* Google rating summary for mobile */
    .google-rating-summary {
        padding: 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .google-rating-summary .rating-stars {
        font-size: 1.2rem;
    }
    
    .google-rating-summary p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .google-rating-summary .btn {
        font-size: 0.85rem;
        padding: 8px 15px;
        white-space: nowrap;
    }
    
    /* Carousel controls for mobile */
    .testimonial-carousel-wrapper {
        gap: 10px;
        max-width: 100%;
        overflow: visible;
        flex-direction: column;
    }
    
    .carousel-control-btn {
        display: none;
    }
    
    #google-reviews-container {
        max-width: 100%;
        width: 100%;
        overflow: visible;
    }
    
    #google-reviews-container .row {
        flex-wrap: wrap !important;
        margin: 0 !important;
    }
    
    #google-reviews-container [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 0 !important;
    }
    
    #google-reviews-container .mb-4 {
        margin-bottom: 20px !important;
    }
    
    .testimoni-card {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        padding: 25px;
        min-height: auto;
    }
    
    .testimoni-card:hover {
        transform: translateY(-3px);
    }
    
    .testimoni-content {
        margin-bottom: 20px;
    }
    
    .testimoni-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .testimoni-author {
        margin-top: 15px;
    }
    
    .testimoni-author .avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimoni-author .info h6 {
        font-size: 0.95rem;
    }
    
    .testimoni-author .info .program {
        font-size: 0.8rem;
    }
    
    .quote-icon {
        font-size: 2.5rem !important;
    }
    
    .carousel-control-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .page-indicator {
        font-size: 0.9rem;
        padding: 6px 15px;
        display: inline-block;
        margin-top: 10px;
    }
    
    .testimonial-carousel-wrapper + .text-center {
        margin-top: 20px !important;
    }
    
    /* Pricing cards for mobile */
    .pricing-card {
        min-height: auto;
        margin-bottom: 20px;
        max-width: 100%;
        overflow: visible;
    }
    
    .pricing-section {
        max-width: 100vw;
        overflow-x: hidden !important;
    }
    
    .pricing-section .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .pricing-card.featured {
        margin-bottom: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        min-height: auto;
    }
    
    .pricing-card .price {
        min-height: auto;
    }
    
    .price-info {
        min-height: auto;
    }
    
    .pricing-card .price .amount {
        font-size: 2.2rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
    }
    
    .pricing-note {
        margin-top: 30px;
        padding: 20px 15px;
    }
    
    .pricing-note p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Pricing toggle header for mobile */
    .pricing-toggle-header {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
    
    .pricing-toggle-icon {
        font-size: 1.3rem;
    }
    
    .pricing-toggle-header::after {
        font-size: 0.75rem;
        bottom: -25px;
    }
    
    .pricing-section .section-title .divider {
        margin-top: 30px;
    }
    
    /* Detail cards for mobile */
    .detail-card {
        padding: 20px;
    }
    
    .detail-card h4 {
        font-size: 1.1rem;
    }
    
    /* Guarantee, schedule and payment boxes for mobile */
    .guarantee-box,
    .schedule-box,
    .payment-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .guarantee-icon,
    .schedule-icon,
    .payment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .guarantee-box h4,
    .schedule-box h4,
    .payment-box h4 {
        font-size: 1.1rem;
    }
    
    .guarantee-box p,
    .schedule-box p,
    .payment-box p {
        font-size: 0.9rem;
    }
    
    .bank-account {
        font-size: 0.85rem;
        padding: 12px;
    }
    
    /* QnA section for mobile */
    .qna-section .accordion-button {
        font-size: 0.95rem;
        padding: 20px 15px;
    }
    
    .qna-section .accordion-button i {
        font-size: 1.2rem;
    }
    
    .qna-section .accordion-body {
        padding: 20px 15px;
        font-size: 0.95rem;
    }
    
    /* About Section Mobile */
    .about-section,
    .keunggulan-section,
    .gallery-section,
    .testimoni-section,
    .qna-section,
    #kontak,
    #program {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    /* Gallery Section Mobile */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-filter {
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        gap: 15px;
        padding: 15px 10px;
        cursor: default;
    }
    
    .gallery-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        width: 280px;
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 15px;
        opacity: 1;
        background: linear-gradient(to top, rgba(26, 41, 66, 0.98) 0%, rgba(26, 41, 66, 0.5) 60%, transparent 100%);
    }
    
    .gallery-info h5 {
        font-size: 1rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
    }
    
    .gallery-view-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        opacity: 1;
        transform: scale(1);
    }
    
    /* Gallery Modal Mobile */
    .gallery-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .gallery-modal-content img {
        max-height: 70vh;
    }
    
    .gallery-modal-caption {
        padding: 20px 15px;
    }
    
    .gallery-modal-caption h4 {
        font-size: 1.2rem;
    }
    
    .gallery-modal-caption p {
        font-size: 0.9rem;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
    
    .testimoni-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Ensure all cards don't overflow */
    .program-card,
    .keunggulan-item,
    .testimoni-card,
    .detail-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Trust Badge Mobile - Ensure it doesn't overflow */
    .trust-badge {
        max-width: calc(100% - 20px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .trust-badge span {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Footer Mobile */
    footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    /* Additional overflow prevention */
    .navbar-collapse {
        max-width: 100%;
    }
    
    .navbar-nav {
        max-width: 100%;
    }
    
    /* Ensure all text elements wrap properly */
    p, h1, h2, h3, h4, h5, h6, span, li, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent any absolute positioned elements from causing overflow */
    .hero-background-shapes {
        max-width: 100vw;
        overflow: hidden;
    }
    
    /* Price amount should not overflow */
    .pricing-card .price .amount {
        font-size: 2rem;
        word-break: break-word;
    }
    
    /* Bank account text should wrap */
    .bank-account {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Accordion items should not overflow */
    .qna-section .accordion-item {
        max-width: 100%;
        overflow: hidden;
    }
    
    .qna-section .accordion-button {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    /* Footer sections should not overflow */
    .footer-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-section ul li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Social links container */
    .social-links {
        max-width: 100%;
        overflow: hidden;
    }
}
