﻿/* RESET & VARIABLES */
:root {
    --primary-purple: #5D307E;
    --gold: #D1971A;
    --gold-light: #EBC03F;
    --gray: #d6d6d6;
    --bg-light: #f5f5f5;
    --text-dark: #333333;
    --text-gray: #666666;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* UTILITIES */
.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-purple);
}

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #ffffff !important;
}

.text-primary-purple {
    color: var(--primary-purple);
}

.text-gold {
    color: var(--primary-purple);
}

.mt-2 {
    margin-top: 10px;
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--primary-purple);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: var(--primary-purple);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

    .btn-primary i {
        margin-left: 10px;
    }

/* HERO SECTION */
.hero-section {
    position: relative;
    background-color: var(--bg-light);
    /* Gợi ý: Thêm background-image của tòa nhà Harvard vào đây */
    background-image: linear-gradient(to right, rgba(249, 249, 247, 1) 40%, rgba(249, 249, 247, 0.4)), url('');
    background-size: cover;
    background-position: center;
    padding-bottom: 0px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-left {
    min-width: 400px !important;
    height: auto;
}

.logo-right {
    text-align: right;
    font-size: 12px;
    color: var(--primary-purple);
}

.font-gddt {
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-purple);
}


.hero-content {
    display: flex;
    align-items: center;
    /* Trả lại space-between để chữ nằm sát lề trái, khung ảnh nằm sát lề phải */
    justify-content: space-between;
    margin-top: 0px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 0 0 30%; /* Cố định phần chữ chiếm 30% không gian */
    min-width: 300px;
}

.webinar-tag {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 65px;
    color: var(--primary-purple);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-image-box {
    flex: 0 0 65%; /* Khung ảnh chiếm 50% không gian */
    position: relative;
    display: flex;
    /* QUAN TRỌNG: Lệnh này đẩy bức ảnh dính chặt vào mép phải của khung */
    justify-content: flex-end;
}

.speaker-img {
    /* ĐỔI MỚI: Tăng max-height lên để ảnh hiển thị to hơn (có thể chỉnh lên 800px tùy ý) */
    max-height: 750px;
    min-height: 550px;
    object-fit: cover;
    object-position: center bottom; /* Đảm bảo gốc ảnh luôn neo ở góc dưới cùng bên phải */
    }

.speaker-badge {
    position: absolute;
    bottom: 20px;
    right: 30px;
    text-align: right; /* Căn chữ sang phải */
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.signature-font {
    font-family: 'Licorice', cursive;
    font-style: italic;
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.speaker-badge p {
    font-size: 16px;
    letter-spacing: 1px;
}

/* SPEAKER INTRO */
.speaker-intro {
    padding: 60px 0;
    border-top: 1px solid #E5E5E5;
}

.intro-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-profile {
    flex: 1;
    display: flex;
    gap: 20px;
    min-width: 350px;
}

.harvard-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.profile-text h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.profile-text ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

    .profile-text ul li {
        margin-bottom: 2px;
        font-size: 14px;
        font-weight: 500;
    }

.intro-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
}

.sat-score {
    font-weight: 700;
    font-size: 16px;
}

.stat-item p {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-purple);
}

/* BENEFITS */
.benefits {
    padding: 60px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.benefit-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 12px;
    color: var(--primary-purple);
    margin-bottom: 10px;
    height: 40px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* RESULTS */
.results {
    padding: 60px 0;
}

.subtitle-gold {
    text-align: center;
    color: var(--gold);
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 40px;
}

.subtitle-dark {
    text-align: center;
    color: var( --text-dark);
    font-size: 18px;
    font-weight: 500;
    margin-top: -30px;
    margin-bottom: 40px;
}

.unis-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: none;
    border-bottom: none;
    padding: 30px 0;
}

.uni-item {
    text-align: center;
    color: var(--text-dark);
    padding: 0 15px;
    border-right: 1px solid var(--gray);
    flex: 1;
    min-width: 120px;
}

    .uni-item:last-child {
        border: none;

    }

.uni-logo {
    height: 50px;
    font-family: var(--font-serif);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

    .uni-logo span {
        font-size: 10px;
        font-style: italic;
        text-transform: none;
    }

.uni-number {
    font-size: 40px;
    color: var(--gold);
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 5px;
}

.uni-label {
    font-size: 12px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.bottom-note {
    text-align: center;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 60px;
    color: rgba(207, 167, 117, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testi-text {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #EEE;
    padding-top: 15px;
}

    .testi-author img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testi-author p {
        font-size: 12px;
    }

.dots {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #CCC;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

    .dot.active {
        background: var(--primary-purple);
    }

/* FOOTER CTA */
.footer-cta {
    padding: 40px 0;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.calendar-icon {
    font-size: 40px;
    color: var(--gold);
}

.cta-sub {
    font-size: 12px;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-desc {
    font-size: 13px;
    color: #AAA;
}

/* BOTTOM BAR */
.bottom-bar {
    background: #fff;
    padding: 15px 0;
    border-top: 1px solid #EEE;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-purple);
    flex-wrap: wrap;
    gap: 15px;
}

    .bottom-flex i {
        color: var(--primary-purple);
        margin-right: 5px;
    }
    .footer-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

/* RESPONSIVE DESIGN (Media Queries) */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 45px;
    }

    .intro-grid {
        flex-direction: column;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .unis-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .uni-item {
        border-right: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 20px;
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-box {
        justify-content: center;
        margin-top: 30px;
    }

    .speaker-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
    }

    .intro-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Khoảng cách giữa các cột, có thể tăng giảm tùy ý */
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Khoảng cách giữa các cột, có thể tăng giảm tùy ý */
    }

        /* Căn giữa cho icon thứ 5 (bị lẻ) để giao diện cân đối hơn */
        .benefits-grid > div:last-child {
            grid-column: 1 / -1;
            /* Hoặc bỏ dòng này nếu bạn muốn icon thứ 5 nằm lệch sang trái */
        }

    .unis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .logo-left {
        min-width: 300px !important;
        height: auto;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Khoảng cách giữa các cột, có thể tăng giảm tùy ý */
    }
        /* Căn giữa cho icon thứ 5 (bị lẻ) để giao diện cân đối hơn */
        .benefits-grid > div:last-child {
            grid-column: 1 / -1;
            /* Hoặc bỏ dòng này nếu bạn muốn icon thứ 5 nằm lệch sang trái */
        }

    .intro-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Khoảng cách giữa các cột, có thể tăng giảm tùy ý */
    }

    .logo-left {
        min-width: 250px !important;
        height: auto;
    }

    .logo-right {
        display: none;
    }



