/* =========================================================
   GLOBAL
========================================================= */

.pte-page {
    font-family: "DM Sans", sans-serif;
    color: var(--text3);
    background: var(--white);
    overflow: hidden;
}

.pte-page * {
    box-sizing: border-box;
}

.pte-page a {
    text-decoration: none;
}

.section-padding {
    padding: 85px 0;
}


/* =========================================================
   HERO
========================================================= */

.pte-hero {
    padding: 0;
    background: var(--primary);
    overflow: hidden;
    background-image: url(../uploads/pte-bg.png);
    background-size: cover;
    background-position: top right;
}

.pte-hero-wrapper {
    min-height: 620px;
    overflow: hidden;
}

.pte-hero-content {
    height: 100%;
    min-height: 520px;
    padding: 80px 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pte-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 7px 13px;
    border: 1px solid rgba(255, 169, 0, 0.9);
    color: var(--secondary-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.pte-hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    letter-spacing: -2px;
}

.pte-hero-content h1 span {
    color: var(--secondary);
}

.pte-hero-content h2 {
    margin: 20px 0 15px;
    font-size: 23px;
    color: var(--secondary-dark);
    font-weight: 700;
}

.pte-hero-content h2 strong {
    color: var(--primary-light);
}

.hero-description {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-gold {
    background: var(--secondary);
    color: var(--primary-dark);
    border: 2px solid var(--secondary);
    font-size: 13px;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 7px;
    transition: var(--transition);
    width: max-content;
}

.btn-gold:hover {
    background: var(--secondary-dark);
    color: var(--primary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 169, 0, 0.25);
}

.btn-gold i {
    margin-left: 7px;
}

.btn-outline-light {
    display: flex;
    align-items: center;
    border: 2px solid rgba(138, 42, 60, 0.9);
    color: var(--primary);
    font-weight: 600;
    border-radius: 7px;
    width: max-content;
    height: 100%;
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 7px;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light-custom i {
    margin-right: 7px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   ACCEPTED CARD
========================================================= */

.pte-accepted-card {
    position: absolute;
    z-index: 4;
    top: 45px;
    right: 45px;
    width: 230px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.accepted-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 15px;
}

.accepted-title div {
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.pte-accepted-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pte-accepted-card li {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 11px 0;
    font-size: 11px;
    color: var(--text3);
}

.pte-accepted-card li i {
    color: var(--primary);
    font-size: 13px;
}

.pte-logo {
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.pte-logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1598a0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 800;
}

.pte-logo strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #1598a0;
}

.pte-logo small {
    display: block;
    font-size: 6px;
    color: var(--muted);
}


/* =========================================================
   SECTION LABELS
========================================================= */

.section-label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-heading {
    color: var(--primary);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.section-heading span {
    color: var(--secondary);
}


/* =========================================================
   WHY LIST
========================================================= */

.why-list {
    border-right: 1px solid var(--border3);
    padding-right: 35px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 11px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.why-item i {
    font-size: 13px;
    color: var(--secondary);
}


/* =========================================================
   SCORE CARDS
========================================================= */

.score-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    top: 20px;
}

.score-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: var(--secondary);
}

.score-card {
    position: relative;
    min-height: 122px;
    padding: 18px 10px;
    border: 1px solid var(--border3);
    border-radius: 10px;
    text-align: center;
    background: var(--white);
    transition: var(--transition);
    top: 40px;
}

.score-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.score-card strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
}

.score-card>span {
    display: block;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    margin-top: 5px;
}

.score-card hr {
    margin: 10px 0;
    border-color: var(--border);
}

.score-card small {
    color: var(--text3);
    font-size: 9px;
    line-height: 1.5;
}

.score-red strong {
    color: #c62828;
}

.score-orange strong {
    color: #ef8c00;
}

.score-green strong {
    color: #2d9b5f;
}

.score-blue strong {
    color: #1265bd;
}

.score-purple strong {
    color: #6543a2;
}


/* =========================================================
   QUOTE
========================================================= */

.score-quote {
    min-height: 100px;
    padding: 20px 25px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    top: 80px;
}

.quote-icon {
    font-family: Georgia, serif;
    color: var(--primary);
    font-size: 60px;
    font-weight: 900;
    line-height: 0.5;
}

.score-quote p {
    margin: 0;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
    z-index: 2;
}

.quote-bg {
    position: absolute;
    right: 30px;
    bottom: -10px;
    font-size: 90px;
    color: rgba(0, 53, 55, 0.06);
}


/* =========================================================
   MODULES
========================================================= */

.modules-section {
    background: var(--light-bg);
}

.section-title-center {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-center span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    position: relative;
}

.section-title-center span::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin: 8px auto 0;
    background: var(--secondary);
}

.modules-box {
    background: var(--white);
    border: 1px solid var(--border3);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.module-card {
    display: flex;
    gap: 18px;
    padding: 30px 22px;
    border-right: 1px solid var(--border3);
    transition: var(--transition);
}

.module-card:last-child {
    border-right: none;
}

.module-card:hover {
    background: #fbfdfd;
    transform: translateY(-3px);
}

.module-icon {
    flex: 0 0 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.module-icon.speaking {
    color: #7042a0;
    background: rgba(112, 66, 160, 0.08);
}

.module-icon.writing {
    color: #1768bf;
    background: rgba(23, 104, 191, 0.08);
}

.module-icon.reading {
    color: #27945b;
    background: rgba(39, 148, 91, 0.08);
}

.module-icon.listening {
    color: #ec8500;
    background: rgba(236, 133, 0, 0.08);
}

.module-card h4 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.module-card a {
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
}

.module-card a i {
    margin-left: 4px;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
    background: var(--white);
}

.dark-feature-box,
.white-feature-box {
    height: 100%;
    padding: 28px;
    border-radius: 14px;
}

.dark-feature-box {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.white-feature-box {
    background: #fbfcfc;
    border: 1px solid var(--border3);
}

.box-title {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.box-title.light {
    color: white;
}

.box-title span {
    width: 35px;
    height: 2px;
    background: var(--secondary);
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 13px 0;
    color: #e5eeee;
    font-size: 11px;
}

.feature-list li i {
    color: var(--secondary);
    font-size: 14px;
}


/* =========================================================
   BATCH TIMINGS
========================================================= */

.batch-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 11px;
    margin-bottom: 10px;
    gap: 12px;
    transition: var(--transition);
}

.batch-card:hover {
    border-color: var(--secondary);
    transform: translateX(4px);
}

.batch-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 169, 0, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.batch-icon.moon {
    background: rgba(0, 53, 55, 0.08);
    color: var(--primary);
}

.batch-icon.rocket {
    background: rgba(255, 169, 0, 0.12);
    color: var(--secondary);
}

.batch-info {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    gap: 3px 10px;
}

.batch-info strong {
    font-size: 11px;
    color: var(--primary);
}

.batch-info span {
    font-size: 10px;
    color: var(--primary);
    text-align: right;
}

.batch-info small {
    font-size: 8px;
    color: var(--muted);
}

.batch-info small {
    grid-column: 1 / -1;
}

.batch-image {
    position: relative;
    text-align: center;
    height: 130px;
    margin-top: 40px;
}

.batch-image img {
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   STUDY MATERIAL
========================================================= */

.material-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    flex-direction: row;
}

.material-list li {
    font-size: 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.material-list li i {
    color: #2e9b5c;
}

.material-image {
    text-align: right;
    height: 120px;
    /* margin-top: 10px; */
}

.material-image img {
    height: 100%;
    max-width: 180px;
    object-fit: contain;
}


/* =========================================================
   RESULTS
========================================================= */

.results-section {
    background: var(--light-bg);
    
}

.results-heading {
    margin-bottom: 18px;
}

.results-heading span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.results-heading span::after {
    content: "";
    width: 35px;
    height: 2px;
    display: inline-block;
    background: var(--secondary);
    vertical-align: middle;
    margin-left: 8px;
}

.student-result {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.student-result img {
    height: 90px;
    width: auto;
    display: flex;
    place-self: center;
    position: relative;
    border-radius: 7px;
    object-fit: contain;
    border: 1px solid var(--secondary);
}

.student-result strong {
    display: block;
    font-size: 14px;
}

.student-result small {
    display: block;
    font-size: 10px;
    color: #777;
    line-height: 0.9;
}

.student-result b {
    display: block;
    color: #d92834;
    font-size: 24px;
    line-height: 1.4;
}

.stars {
    color: var(--secondary);
    font-size: 8px;
    letter-spacing: -1px;
}



/* =========================================================
   SUCCESS CARD
========================================================= */

.success-card {
    height: 100%;
    background: var(--primary);
    border-radius: 12px;
    padding: 28px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.success-trophy {
    color: var(--secondary);
    font-size: 35px;
    margin-bottom: 15px;
}

.success-card h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.success-card h3 span {
    display: block;
    color: var(--secondary);
}

.success-card p {
    color: #d3dede;
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 30px 0;
    background: var(--white);
}

.cta-wrapper {
    padding: 28px 35px;
    border-radius: 13px;
    background: radial-gradient( circle at 90% 50%, rgba(255, 169, 0, 0.12), transparent 35%), var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
}

.cta-content h2 span {
    color: var(--secondary);
}

.cta-content p {
    color: #d4dfdf;
    margin: 0;
    font-size: 11px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {
    .pte-hero-wrapper {
        min-height: auto;
    }
    .pte-hero-content {
        min-height: auto;
        padding: 60px 35px;
    }
    .pte-hero-content::after {
        display: none;
    }
    .pte-hero-image {
        min-height: 500px;
    }
    .pte-accepted-card {
        right: 25px;
        top: 25px;
    }
    .why-list {
        border-right: none;
        border-bottom: 1px solid var(--border3);
        padding-right: 0;
        padding-bottom: 25px;
        margin-bottom: 30px;
    }
    .modules-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .module-card:nth-child(2) {
        border-right: none;
    }
    .module-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border3);
    }
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .section-padding {
        padding: 55px 0;
    }
    .pte-hero-content {
        padding: 45px 22px;
    }
    .pte-hero-content h1 {
        font-size: 45px;
    }
    .pte-hero-content h2 {
        font-size: 19px;
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-mini-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 0;
    }
    .hero-mini-item:nth-child(2) {
        border-right: none;
    }
    .hero-mini-item:nth-child(3),
    .hero-mini-item:nth-child(4) {
        padding-top: 10px;
    }
    .pte-hero-image {
        min-height: 450px;
    }
    .pte-accepted-card {
        width: 205px;
        right: 15px;
        top: 15px;
        padding: 18px;
    }
    .pte-accepted-card li {
        font-size: 9px;
        margin: 8px 0;
    }
    .modules-box {
        grid-template-columns: 1fr;
    }
    .module-card {
        border-right: none;
        border-bottom: 1px solid var(--border3);
    }
    .module-card:last-child {
        border-bottom: none;
    }
    .score-card {
        min-height: 115px;
    }
    .score-card strong {
        font-size: 24px;
    }
    .score-quote {
        padding: 18px;
    }
    .score-quote p {
        font-size: 11px;
    }
    .dark-feature-box,
    .white-feature-box {
        padding: 22px;
    }
    .cta-wrapper {
        padding: 25px 22px;
    }
    .cta-content h2 {
        font-size: 20px;
    }
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .pte-hero-content h1 {
        font-size: 38px;
    }
    .pte-hero-image {
        min-height: 390px;
    }
    .pte-accepted-card {
        transform: scale(0.88);
        transform-origin: top right;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .section-heading {
        font-size: 24px;
    }
    .batch-info {
        grid-template-columns: 1fr;
    }
    .batch-info span {
        text-align: left;
    }
}