:root {
    --primary:        #6D1A36;                /* Burgundy */
    --primary-light:  #9B2A4E;                /* Lighter burgundy */
    --primary-pale:   rgba(109,26,54,0.08);   /* Soft burgundy tint */
    --primary-mid:    rgba(109,26,54,0.18);   /* Medium burgundy tint */
    --accent:         #1B4F8A;                /* Deep blue */
    --accent-light:   #2E6DB4;                /* Lighter blue */
    --accent-pale:    rgba(27,79,138,0.08);   /* Soft blue tint */
    --white:          #FFFFFF;
    --off-white:      #F7F2F4;                /* Warm off-white */
    --light-bg:       #FAF6F8;                /* Page background */
    --border:         #E4D0D7;                /* Burgundy-tinted border */
    --border-blue:    #C5D8EE;                /* Blue-tinted border */
    --text-dark:      #1E0D14;                /* Near-black body text */
    --text-mid:       #5C3545;                /* Mid-tone labels */
    --text-muted:     #9B7585;                /* Muted text */
}

body {
    font-family: "Inter", sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

/* ── NAVBAR ── */
.jwils-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: 0 1px 16px rgba(109,26,54,0.07);
}
.jwils-nav .navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    color: var(--primary) !important;
    letter-spacing: 0.05em;
}
.jwils-nav .nav-link {
    color: var(--text-mid) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.jwils-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* ── HERO ── */
.hero-section {
    min-height: 100vh;
    object-fit: contain;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109,26,54,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 85%, rgba(27,79,138,0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 60px,
            rgba(109,26,54,0.015) 60px,
            rgba(109,26,54,0.015) 61px
        ),
        var(--light-bg);
    padding: 7rem 0 5rem;
}

/* ── HERO IMAGE ── */
.hero-section .container .row {
    /* padding-top: 80px; */
}

.hero-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 420px;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px 12px 80px 12px;
    border: 3px solid var(--primary);
    box-shadow:
        0 0 0 8px var(--primary-pale),
        0 24px 60px rgba(109,26,54,0.15);
    display: block;
    position: relative;
    z-index: 1;
}

/* decorative blue corner accent */
.hero-img-wrap::before {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 80px 12px;
    border: 2px solid var(--accent);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* floating badge */
.hero-img-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(109,26,54,0.35);
    white-space: nowrap;
}

.eyebrow-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(109,26,54,0.35);
    background: var(--primary-pale);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
}
.hero-title em {
    font-style: italic;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}
.meta-item i {
    color: var(--accent-light);
}

/* ── BUTTONS ── */
.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(109,26,54,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(109,26,54,0.45);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* ── PROOF BAND ── */
.proof-band {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4.5rem 0;
}
.proof-quote {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}
.quote-open {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 0.6;
    vertical-align: top;
}
.proof-cite {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ── SHARED SECTION ATOMS ── */
.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-light);
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}
.section-title em {
    font-style: italic;
    color: var(--primary);
}

.gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent), transparent);
}

/* ── MODULES ── */
.modules-section {
    background: var(--off-white);
    padding: 6rem 0;
}
.module-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(109,26,54,0.1);
}
.module-num {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(109,26,54,0.07);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
}
.module-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-pale);
    border: 1px solid rgba(109,26,54,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.module-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.learn-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.55;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
}
.learn-list li:last-child {
    border-bottom: none;
}
.learn-list li i {
    color: var(--accent-light);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.35rem;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 6rem 0;
}
.price-card {
    background: var(--light-bg);
    border: 1.5px solid rgba(109,26,54,0.3);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(109,26,54,0.08);
}
.price-tag {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 0 0 8px 8px;
}
.price-amount {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child {
    border-bottom: none;
}
.price-features li i {
    color: var(--accent-light);
    width: 16px;
}
.seats-warning {
    font-size: 0.78rem;
    color: var(--primary);
    letter-spacing: 0.06em;
}

/* ── MODAL ── */
.modal-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-dark);
}
.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.8rem;
    background: var(--off-white);
    border-radius: 12px 12px 0 0;
}
.modal-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--text-dark);
}
.modal-header p {
    color: var(--text-muted);
}
.btn-close {
    filter: none;
    opacity: 0.5;
}
.btn-close:hover {
    opacity: 1;
}
.modal-body {
    padding: 1.8rem;
}
.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.form-control,
.form-select {
    background: var(--off-white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 6px !important;
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    transition: border-color 0.2s;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(109,26,54,0.12) !important;
    background: var(--white) !important;
}
.form-control::placeholder {
    color: #bba8b0 !important;
}

.plan-option {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 1rem 0.8rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: var(--off-white);
}
.plan-option:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
}
.plan-option.selected {
    border-color: var(--primary);
    background: var(--primary-pale);
    box-shadow: 0 0 0 3px rgba(109,26,54,0.08);
}
.plan-option .plan-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.plan-option .plan-price {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.plan-option .plan-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
    border-top: 1px solid rgba(109,26,54,0.3);
}
.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #e8b0c0;
    letter-spacing: 0.1em;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ── WHATSAPP STICKY ── */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: transform 0.2s;
}
.whatsapp-sticky-btn:hover {
    transform: scale(1.15);
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .hero-img { height: 380px; }
    .hero-img-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
    }
    .hero-section .col-lg-7 { text-align: center; }
    .hero-section .d-flex { justify-content: center; }
}

@media (max-width: 767.98px) {
    .price-amount { font-size: 2.5rem; }
}

@media (max-width: 575.98px) {
    /* .hero-img { height: 300px; } */
}

/* ── LIGHTBOX ── */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(30,13,20,0.95);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-modal.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(109,26,54,0.8);
    border: none;
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s;
    z-index: 10000;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary-light); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

#proofCarousel .carousel-item img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#proofCarousel .carousel-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(109,26,54,0.15);
}

@media (max-width: 575.98px) {
    .lightbox-prev,
    .lightbox-next { width: 40px; height: 40px; font-size: 16px; }
    .lightbox-close { top: 10px; right: 15px; font-size: 32px; }
}
