/* ================================================
   LUXURY PREMIUM ENHANCEMENTS - ROLEX INSPIRED
   ================================================ */

/* Import Google Fonts for Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== Enhanced Typography ===== */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

h1, h2, h3, .hero-title, .section-title {
    font-family: 'Playfair Display', serif;
}

/* ===== Section Titles with Premium Styling ===== */
.section-title {
    position: relative;
    font-size: 2.8em !important;
    font-weight: 700;
    color: var(--rolex-green);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--rolex-gold), transparent);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ===== SPLIT-SCREEN HERO LUXURY ===== */
.hero {
    margin-top: 64px;
    height: 650px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rolex-green-dark) 0%, var(--rolex-green) 100%);
}

/* Hide old hero elements from original CSS */
.hero .hero-overlay {
    display: none !important;
}

.hero .hero-content h1:not(.hero-title),
.hero .hero-content p:not(.hero-subtitle) {
    display: none !important;
}

.hero .cta-button:not(.cta-primary):not(.cta-secondary) {
    display: none !important;
}

.hero-split-container {
    display: flex;
    height: 100%;
    max-width: 100%;
}

.hero-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 111, 77, 0.3) 100%);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--rolex-green) 0%, var(--accent-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid var(--rolex-gold);
    color: var(--rolex-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Hero Stats - HIDDEN ===== */
.hero-stats {
    display: none !important;
}

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

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rolex-gold);
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== Hero CTA Buttons ===== */
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
    color: var(--rolex-green-dark);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--rolex-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

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

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rolex-green);
    border: 2px solid var(--rolex-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 111, 77, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--rolex-gold);
    color: var(--rolex-green);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.5);
}

body.dark-mode .back-to-top {
    background: var(--rolex-gold);
    color: var(--bg-dark);
    border-color: var(--rolex-green);
}

body.dark-mode .back-to-top:hover {
    background: var(--rolex-green);
    color: white;
}

/* ===== Sticky CTA Bar ===== */
.sticky-cta {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rolex-green) 0%, var(--accent-green) 100%);
    box-shadow: 0 4px 20px rgba(0, 111, 77, 0.3);
    z-index: 998;
    transform: translateY(-100%);
    transition: transform 0.3s ease, top 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.sticky-cta-button {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
    color: var(--rolex-green-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

/* ===== Scroll Reveal Animations ===== */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Step Numbers for Training Steps ===== */
.step {
    position: relative;
    padding-top: 45px;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 160, 23, 0.15);
    line-height: 1;
    user-select: none;
}

.step:hover .step-number {
    color: rgba(212, 160, 23, 0.25);
}

/* ===== Exam Icons ===== */
.exam-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    filter: grayscale(20%);
}

/* ===== Enhanced Pluspunten (Why Jawiss) ===== */
.pluspunten h3 {
    font-family: 'Playfair Display', serif;
}

.pluspunten li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    color: var(--rolex-gold);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== RECOMMENDED PACKAGE HIGHLIGHT ===== */
.package-card.recommended {
    position: relative;
    transform: scale(1.05);
    border: 2px solid var(--rolex-gold);
    box-shadow: 0 12px 48px rgba(212, 160, 23, 0.25);
    z-index: 10;
}

.package-card.recommended::before {
    opacity: 1;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
    color: var(--rolex-green-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
    z-index: 11;
}

.package-card.recommended .card-header {
    background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
}

.package-card.recommended .card-title {
    color: var(--rolex-green-dark);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* ===== Premium Button Ripple Effect ===== */
.cta-button,
.submit-button,
.sticky-cta-button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== Enhanced Form Styling ===== */
.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rolex-green), var(--rolex-gold), var(--rolex-green));
    border-radius: 16px 16px 0 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rolex-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

/* ===== Package Notes Banner ===== */
.package-notes {
    margin: 40px auto 30px !important;
    max-width: 1200px;
    padding: 18px 28px !important;
    background: linear-gradient(135deg, rgba(0, 111, 77, 0.05) 0%, rgba(212, 160, 23, 0.05) 100%) !important;
    border-radius: 10px !important;
    border-left: 4px solid var(--rolex-gold) !important;
    box-shadow: 0 3px 12px rgba(0, 111, 77, 0.06) !important;
}

.package-notes p {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-align: center;
}

/* ===== Individual Prices Full Width ===== */
.individual-prices-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 32px !important;
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 111, 77, 0.08) !important;
    box-shadow: 0 6px 24px rgba(0, 111, 77, 0.08) !important;
    border-left: 4px solid var(--rolex-green) !important;
    transition: all 0.3s ease;
}

.individual-prices-full:hover {
    box-shadow: 0 8px 32px rgba(0, 111, 77, 0.12) !important;
}

.individual-prices-full h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem !important;
    color: var(--rolex-green) !important;
    margin-bottom: 28px !important;
    font-weight: 700 !important;
    text-align: center;
}

.individual-list {
    list-style: none !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
}

.individual-list li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0, 111, 77, 0.1) !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.individual-list li:hover {
    padding-left: 8px;
    background: rgba(0, 111, 77, 0.02);
}

.individual-list li:nth-last-child(-n+3) {
    border-bottom: none !important;
}

.individual-list li span:first-child {
    color: var(--text-dark);
}

.individual-list .value {
    color: var(--rolex-gold) !important;
    font-weight: 700 !important;
    font-size: 1rem;
    white-space: nowrap;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .hero-split-container {
        flex-direction: column;
    }

    .hero {
        height: auto;
    }

    .hero-left {
        height: 400px;
    }

    .hero-right {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .package-card.recommended {
        transform: scale(1);
    }

    .pricing-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .pricing-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2em !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-cta-button {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    .step-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .individual-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 20px;
    }

    .individual-list li {
        font-size: 0.9rem;
    }

    .individual-list .value {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.9em !important;
    }

    .hero {
        height: auto;
        min-height: 450px;
    }

    .hero-left {
        height: 250px;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.05em;
    }

    .individual-prices-full {
        padding: 28px 20px !important;
    }

    .individual-prices-full h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 400px;
    }

    .hero-left {
        height: 220px;
    }

    .hero-right {
        padding: 28px 16px;
    }

    .hero-title {
        font-size: 1.65em;
    }

    .hero-subtitle {
        font-size: 0.95em;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .individual-list {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .section-title {
        font-size: 1.6em !important;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .individual-list li {
        font-size: 0.85rem;
        padding: 14px 0 !important;
    }

    .individual-list .value {
        font-size: 0.9rem;
    }

    .individual-prices-full h3 {
        font-size: 1.2rem !important;
    }
}

/* ===== Loading Animation for Stats Counter ===== */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 0.8s ease-out;
}

/* ===== DARK MODE STYLES ===== */
body.dark-mode {
    --white: #1a1a1a;
    --warm-cream: #2a2a2a;
    --text-dark: #e0e0e0;
    --rolex-green: #00a86b;
    --rolex-green-dark: #008b5a;
    --accent-green: #00c97a;
}

body.dark-mode .navbar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 200, 122, 0.15);
}

body.dark-mode .section {
    background-color: #1a1a1a;
}

body.dark-mode .step,
body.dark-mode .exam-requirements,
body.dark-mode .exam-process,
body.dark-mode .exam-location,
body.dark-mode .package-card,
body.dark-mode .contact-form,
body.dark-mode .pluspunten {
    background: linear-gradient(135deg, #2a2a2a 0%, #252525 100%);
    border-color: rgba(0, 200, 122, 0.2);
}

body.dark-mode .package-card:hover {
    box-shadow: 0 12px 40px rgba(0, 200, 122, 0.2);
}

body.dark-mode .individual-prices-full {
    background: linear-gradient(135deg, #2a2a2a 0%, #252525 100%) !important;
    border-color: rgba(0, 200, 122, 0.2) !important;
}

body.dark-mode .package-notes {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1) 0%, rgba(212, 160, 23, 0.1) 100%) !important;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

body.dark-mode .nav-link,
body.dark-mode .navbar-logo,
body.dark-mode .footer h3,
body.dark-mode .footer p,
body.dark-mode .footer a {
    color: #e0e0e0;
}

body.dark-mode .nav-link:hover {
    color: var(--rolex-gold);
}

body.dark-mode input,
body.dark-mode textarea {
    background-color: #2a2a2a;
    border-color: rgba(0, 200, 122, 0.3);
    color: #e0e0e0;
}

body.dark-mode input:focus,
body.dark-mode textarea:focus {
    border-color: var(--rolex-gold);
    background-color: #333;
}

body.dark-mode .individual-list li {
    border-bottom-color: rgba(0, 200, 122, 0.2) !important;
    color: #e0e0e0 !important;
}

body.dark-mode .individual-list li:hover {
    background: rgba(0, 200, 122, 0.05);
}

body.dark-mode .section-divider {
    background: linear-gradient(to right, transparent, var(--rolex-gold), transparent);
}

body.dark-mode .nav-menu {
    background-color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 200, 122, 0.3);
}

body.dark-mode .nav-item-toggle {
    border-top-color: rgba(212, 160, 23, 0.3);
}

/* ===== Subtle Background Pattern ===== */
.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px
        );
    pointer-events: none;
}
