* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #001D5F;
    --text-dark: #1c1917;
    --text-medium: #44403c;
    --text-light: #78716c;
    --border: #e7e5e4;
    --bg-main: #fafaf9;
    --bg-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    /* padding-top: 80px; REMOVED for consistency with page-hero */
}

/* ===== HERO SECTION - MATCH ABOUT STYLE ===== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 95, 0.70);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    animation: fadeIn 0.8s ease 0.2s backwards;
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-custom a:hover { 
    opacity: 0.8; 
}

.breadcrumb-custom span {
    color: rgba(255,255,255,0.8);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero h1 .word {
    display: inline-block;
    animation: fadeInUp 0.8s ease backwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.5s; }



.hero p {
    font-size: 1.25rem;
    color: white;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease 0.9s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.95; }
}

/* ===== MAIN CONTAINER ===== */
.container-zen {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Section Header */
.section-header-zen {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.section-badge {
    display: inline-block;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 2px solid #D4AF37;
}

.section-header-zen h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-header-zen p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Video Grid */
.video-grid-zen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-card-zen {
    background: var(--bg-white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card-zen:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.video-wrapper-zen {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--bg-main);
    overflow: hidden;
}

.youtube-lite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.youtube-lite:hover img {
    opacity: 0.9;
}

.youtube-lite .play-btn {
    position: absolute;
    width: 68px;
    height: 48px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.youtube-lite .play-btn::before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.youtube-lite:hover .play-btn {
    background-color: #ff0000;
    transform: scale(1.1);
}

.video-wrapper-zen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption-zen {
    padding: 1.5rem;
    text-align: center;
}

.video-caption-zen h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-caption-zen p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Section Divider */
.section-divider-zen {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 4rem 0;
}

/* Testimonial Grid */
.testimonial-grid-zen {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Testimonial Card - Zen Style */
.testimonial-card-zen {
    background: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-card-zen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.testimonial-card-zen:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card-zen:hover::before {
    height: 100%;
}

/* Rating */
.rating-zen {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-zen {
    color: #D4AF37;
    letter-spacing: 2px;
}

.rating-number {
    color: var(--text-medium);
    font-weight: 500;
}

/* Quote Text */
.quote-zen {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    font-family: Georgia, 'Times New Roman', serif;
    position: relative;
}

/* Divider in Card */
.card-divider {
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 1.75rem 0;
}

/* Author Info */
.author-zen {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.author-avatar-zen {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar-zen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-zen h4 {
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.author-meta-zen {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
}

.author-meta-zen i {
    font-size: 0.75rem;
    margin-right: 4px;
}

/* Package Badge */
.package-zen {
    display: inline-block;
    font-size: 0.6875rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* CTA Section */
.cta-zen {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 3.5rem 2.5rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
}

.cta-zen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.cta-zen h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-zen p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-zen {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    border-radius: 50px;
}

.btn-zen:hover {
    background: transparent;
    color: var(--primary);
}

/* Empty State */
.empty-state-zen {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state-zen i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
}

.empty-state-zen h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.empty-state-zen p {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .video-grid-zen {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card-zen {
        max-width: 100%;
    }

    .video-caption-zen {
        padding: 1.25rem;
    }

    .testimonial-grid-zen {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header-zen {
        margin-top: 3rem;
    }

    .section-header-zen h2 {
        font-size: 1.5rem;
    }

    .cta-zen {
        padding: 2.5rem 1.5rem;
    }

    .cta-zen h3 {
        font-size: 1.5rem;
    }

    .container-zen {
        padding: 0 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .video-grid-zen {
        gap: 1.25rem;
    }

    .video-caption-zen h4 {
        font-size: 0.9rem;
    }

    .video-caption-zen p {
        font-size: 0.8rem;
    }

    .testimonial-grid-zen {
        grid-template-columns: 1fr;
    }

    .testimonial-card-zen {
        padding: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: white;
}