/* =============================
   GLOBAL RESET + THEME COLORS
============================= */

:root {
    --blue: #007bff;
    --blue-dark: #0056e0;
    --green: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}

body {
    margin: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* =============================
   TOP BAR
============================= */
.top-bar {
    width: 100%;
    overflow: hidden;
    background: #0a84ff;
    color: #fff;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 14s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* =============================
   TOP LOGO HEADER
============================= */

.top-logo-bar {
    width: 100%;
    background: #ffffff;
    padding: 15px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper img {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.3px;
}

/* CTA Button */
.header-cta {
    background: #007bff;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.header-cta:hover {
    background: #005fe0;
}

/* Responsive */
@media(max-width: 768px) {
    .top-logo-bar {
        flex-direction: column;
        padding: 12px 5%;
        gap: 12px;
    }

    .brand-text {
        font-size: 18px;
    }

    .header-cta {

        display: none;
    }
}

/* ============================
   HERO SECTION WITH VIDEO
============================ */

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
    gap: 40px;
    background: #ffffff;
}

.hero-left {
    flex: 1;
}

.hero-right-video {
    flex: 1;
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive video */
.hero-right-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title + text */
.hero-left h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight {
    color: #007bff;
}

.subtext {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 20px;
}

/* Masterclass Box */
.masterclass-details {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 14px;
    border-left: 5px solid #007bff;
    margin-top: 20px;
    width: fit-content;
}

/* CTA Button */
.cta-big {
    display: inline-block;
    margin-top: 30px;
    background: #007bff;
    padding: 16px 30px;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.25);
}

.cta-big:hover {
    background: #005fe0;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-right-video {
        width: 100%;
        height: 300px;
    }

    .masterclass-details {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =============================
   PERFECT FOR SECTION
============================= */

.perfect-section {
    text-align: center;
    padding: 60px 8%;
}

.perfect-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.pill {
    padding: 10px 20px;
    background: #e8f0fe;
    color: var(--blue-dark);
    border-radius: 999px;
    font-weight: 600;
}

/* =============================
   PROBLEMS SECTION
============================= */

.problems-section {
    padding: 60px 8%;
    background: #fff;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 25px;
}

.problem-grid div {
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 15px;
}

.cta-sm {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    background: var(--blue);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

/* =============================
   LEARN SECTION
============================= */

.learn-section {
    padding: 60px 8%;
    text-align: center;
}

.learn-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.learn-grid div {
    background: white;
    padding: 15px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: left;
}

/* =============================
   TRANSFORMATION SECTION
============================= */

.transform-section {
    padding: 60px 8%;
    background: #fff;
    text-align: center;
}

.transformation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.before,
.after {
    width: 360px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.before h3 {
    color: #dc2626;
}

.after h3 {
    color: #16a34a;
}

.before li,
.after li {
    text-align: left;
    margin-bottom: 6px;
}

/* =============================
   MENTOR SECTION
============================= */

.mentor-section {
    padding: 60px 8%;
    text-align: center;
}

.mentor-box {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.mentor-box img {
    width: 140px;
    border-radius: 12px;
}

/* =============================
   FAQ SECTION
============================= */

.faq-section {
    padding: 60px 8%;
    background: #fff;
}

.faq-list details {
    background: #f9fafb;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

/* =============================
   FINAL REGISTER SECTION
============================= */

.register-section {
    padding: 60px 8%;
    text-align: center;
}

.register-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

/* Form fields */
.form-row {
    text-align: left;
    margin-bottom: 16px;
}

label {
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ccc;
    padding: 0 12px;
    font-size: 16px;
}

/* intl-tel-input fixed */
.iti {
    width: 100%;
}

.iti__flag-container {
    height: 50px !important;
    border-right: 1px solid #ddd !important;
}

#phone {
    padding-left: 90px !important;
}

/* =============================
   RESPONSIVE
============================= */
@media(max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 80%;
    }
}


/* ============================
   FOOTER
============================ */

.footer {
    background: #f1f5f9;
    padding: 18px 8%;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #475569;
    font-size: 15px;
}

.footer-right a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    margin: 0 6px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-right span {
    color: #94a3b8;
}

/* Mobile */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* ===== WhatsApp Support Inline Card (Footer) ===== */
.whatsapp-support {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 122, 255, 0.06), rgba(6, 36, 93, 0.03));
    border: 1px solid rgba(11, 132, 255, 0.12);
    max-width: 720px;
    margin: 14px auto;
}

/* Left icon block */
.whatsapp-support .ws-left {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-icon {
    width: 44px;
    height: 44px;
    color: #06c167;
    /* whatsapp green for icon */
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(180deg, #e6fff2, #dffcf0);
    box-shadow: 0 6px 18px rgba(3, 60, 35, 0.06);
}

/* Body */
.whatsapp-support .ws-body {
    flex: 1;
    min-width: 0;
}

.ws-title {
    font-weight: 700;
    font-size: 16px;
    color: #073763;
    /* title color */
    margin-bottom: 4px;
}

.ws-sub {
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

/* Actions */
.ws-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ws-btn {
    display: inline-block;
    background: #06c167;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 26px rgba(6, 193, 103, 0.16);
}

.ws-btn:hover {
    transform: translateY(-2px);
}

.ws-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #0b4a78;
    background: transparent;
    border: 1px solid rgba(11, 75, 120, 0.08);
    font-weight: 600;
}

/* Responsive: shrink nicely */
@media (max-width: 720px) {
    .whatsapp-support {
        gap: 12px;
        padding: 12px;
        margin: 12px;
    }

    .whatsapp-support .ws-left {
        flex-basis: 48px;
    }

    .ws-icon {
        width: 38px;
        height: 38px;
        padding: 5px;
    }

    .ws-title {
        font-size: 15px;
    }

    .ws-sub {
        font-size: 13px;
    }

    .ws-btn,
    .ws-secondary {
        padding: 9px 12px;
        font-size: 14px;
    }
}