.section-title h2 {
    color: var(--fourth-text-color);
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
}

.section-title p {
    color: var(--fourth-text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
}

.section-title h5.bottom-line {
    display: inline-block;
    background: var(--primary-bg-color);
    color: var(--secondary-text-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(124, 85, 197, 0.3);
    position: relative;
    border: none;
    animation: badge-soft-pulse 3s infinite;
}

.section-title h5.bottom-line::before,
.section-title h5.bottom-line::after {
    display: none;
}

@keyframes badge-soft-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Image Wrapper */
.chose-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(124, 85, 197, 0.15);
    transition: all 0.4s ease;
    background: var(--primary-bg-color);
    max-width: 420px;
    margin: 0 auto 25px auto;
}

.chose-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(124, 85, 197, 0.15);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.chose-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(124, 85, 197, 0.2);
}

.chose-img-wrapper:hover img {
    transform: scale(1.05);
}

.accordion-two {
    border: none;
    background: transparent;
}

.accordion-two .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.20) !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(30px);
}

.accordion-two .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 85, 197, 0.12);
}

.accordion-two .accordion-button {
    font-family: var(--font-family-2);
    font-weight: 700;
    font-size: 1.1rem !important;
    padding: 22px 25px;
    color: var(--fourth-text-color) !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.accordion-two .accordion-button:not(.collapsed) {
    font-weight: 800;
}

.accordion-two .accordion-button::after {
    content: '+';
    background-image: none !important;
    width: 32px;
    height: 32px;
    background: var(--secondary-bg-color);
    color: var(--primary-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.4s ease;
    margin-left: auto;
    margin-top: -9px;
    box-shadow: 0 2px 8px rgba(124, 85, 197, 0.15);
}

.accordion-two .accordion-button:not(.collapsed)::after {
    content: '−';
    background: #FF723A;
    color: var(--secondary-text-color);
    transform: rotate(180deg);
    box-shadow: 0 4px 12px rgba(255, 114, 58, 0.3);
}

.accordion-two .accordion-body {
    font-family: var(--font-family-2);
    padding: 20px 25px;
    line-height: 1.8;
    background: linear-gradient(135deg, rgba(124, 85, 197, 0.9) 0%, rgba(124, 85, 197, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.accordion-two .accordion-body p {
    color: var(--secondary-text-color);
    padding: 0;
}

/* Pricing Row  */
.simple-pricing-row {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    border: 2px solid rgba(124, 85, 197, 0.2);
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(124, 85, 197, 0.15);
    transition: all 0.3s ease;
}

.simple-pricing-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(124, 85, 197, 0.2);
}

.price-content {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-text-color);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-bg-color);
    letter-spacing: -1px;
}

.price-value span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.6;
}

/* Contact Button */
.contact-simple-link {
    background: #FF723A;
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(255, 114, 58, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-simple-link:hover {
    transform: scale(1.05);
    background: #e6652e;
    box-shadow: 0 12px 30px rgba(255, 114, 58, 0.4);
}

/* =========================================
   1. HIGH SCHOOL SECTION
   ========================================= */
#high-school-package {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
    background: #fff5f1;
}

#high-school-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 85, 197, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#high-school-package>.why-chose-us-bg {
    position: relative;
    z-index: 1;
}

/* =========================================
   2. VCE PACKAGE SECTION (Premium Dark Theme)
   ========================================= */
#vce-package {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
    background: var(--primary-bg-color);
    background-image: radial-gradient(circle at top right, var(--primary-bg-light-color) 0%, var(--primary-bg-color) 80%);
}

#vce-package .section-title h2,
#vce-package .section-title p {
    color: var(--secondary-text-color);
}

#vce-package .section-title p {
    opacity: 0.9;
}

#vce-package .section-title h5.bottom-line {
    background: var(--secondary-bg-color);
    color: var(--primary-text-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#vce-package .accordion-two .accordion-item {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
}

#vce-package .accordion-two .accordion-button {
    color: var(--secondary-text-color) !important;
}

#vce-package .accordion-two .accordion-button::after {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-text-color);
}

#vce-package .accordion-two .accordion-button:not(.collapsed)::after {
    background: #FF723A;
    color: var(--secondary-text-color);
    box-shadow: 0 4px 12px rgba(255, 114, 58, 0.4);
}

#vce-package .accordion-two .accordion-body {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#vce-package .accordion-two .accordion-body p {
    color: rgba(255, 255, 255, 0.95);
}

#vce-package .chose-img-wrapper {
    background: var(--secondary-bg-color);
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

#vce-package .chose-img-wrapper img {
    border-radius: 18px;
}

#vce-package .simple-pricing-row {
    background: var(--secondary-bg-color);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#vce-package .price-label {
    color: var(--fourth-text-color);
}

#vce-package .price-value {
    color: var(--primary-text-color);
}

#vce-package .contact-simple-link {
    background: #FF723A;
    color: var(--secondary-text-color) !important;
}

#vce-package .contact-simple-link:hover {
    background: #e6652e;
    box-shadow: 0 8px 25px rgba(255, 114, 58, 0.5);
}

/* =========================================
   3. VCE BROCHURE SECTION (Light & Clean Theme)
   ========================================= */
#vce-brochure-section {
    background: #fff5f1;
    padding: 80px 0;
    position: relative;
    font-family: var(--font-family-2);
}

#vce-brochure-section h5 {
    animation: badge-soft-pulse 3s infinite;
}

/* Brochure Preview Card */
.brochure-card {
    background: #e5daef;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(124, 85, 197, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
}

/* Icon Box */
.brochure-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-bg-color);
    flex-shrink: 0;
}

/* Text Content */
.brochure-info .bottom-line {
    display: inline-block;
    background: var(--primary-bg-color);
    color: var(--secondary-text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.brochure-info .bottom-line::before {
    background: none;
}

.brochure-info h3 {
    font-family: var(--font-family-2-banner);
    /* Using your display font */
    font-size: 2.2rem;
    color: var(--fourth-text-color);
    margin-bottom: 10px;
}

.brochure-info p {
    color: var(--fourth-text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

.brochure-action {
    width: 50%;
}

/* Download Button */
.btn-contact {
    background: var(--primary-bg-color);
    color: var(--secondary-text-color) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 85, 197, 0.2);
    border: 2px solid var(--primary-bg-color);
}

.btn-contact:hover {
    background: transparent;
    color: var(--primary-bg-color) !important;
}

.btn-contact i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* =========================================
   GET TO KNOW ME SECTION
   ========================================= */

/* =========================================
   4. GET TO KNOW ME SECTION (Warm Editorial Theme)
   ========================================= */
#get-to-know-me {
    position: relative;
    overflow: hidden;
    background: var(--primary-bg-color);
    z-index: 1;
}

#get-to-know-me .floating-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-bg-color);
    filter: blur(120px);
    opacity: 0.08;
    top: -150px;
    right: -100px;
    z-index: -1;
    border-radius: 50%;
}

#get-to-know-me .editorial-quote {
    position: relative;
    padding-right: 30px;
}

#get-to-know-me .section-title h5.bottom-line {
    display: inline-block;
    background: #fff5f1;
    color: var(--primary-bg-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(124, 85, 197, 0.2);
    border: none;
}

#get-to-know-me .editorial-quote h3 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    margin-top: 20px;
}

#get-to-know-me .editorial-quote h3 span {
    display: block;
    color: #fff5f1;
    font-size: 2rem;
    margin-top: 15px;
    letter-spacing: 0;
    font-weight: 800;
}

#get-to-know-me .narrative-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(124, 85, 197, 0.08);
}

#get-to-know-me .narrative-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: white;
    opacity: 0.85;
    margin-bottom: 25px;
}

#get-to-know-me .narrative-body p:last-child {
    margin-bottom: 0;
}

#get-to-know-me .narrative-body p:first-of-type::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    font-weight: 900;
    color: var(--secondary-bg-color);
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 5px;
}

/* =========================================
   5. STUDENT FEEDBACK SECTION
   ========================================= */

#student-feedback {
    background: var(--secondary-bg-color);
    padding: 60px 0;
    position: relative;
}

.feedback-header h2 {
    display: inline-block;
    background: var(--primary-bg-color);
    color: var(--secondary-text-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(124, 85, 197, 0.3);
    position: relative;
    border: none;
    animation: badge-soft-pulse 3s infinite;
}

.feedback-header h5.bottom-line::before,
.feedback-header h5.bottom-line::after {
    display: none;
}

.feedback-header {
    text-align: center;
    margin-bottom: 20px;
}

.feedback-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(124, 85, 197, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 1);
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(124, 85, 197, 0.15);
}

.rating-stars {
    color: #ffb800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.feedback-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--fourth-text-color);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feedback-text::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-bg-color);
    opacity: 0.05;
    z-index: -1;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-bg-color);
}

.student-name h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: var(--primary-bg-color);
}

.student-name span {
    font-size: 0.85rem;
    color: var(--fourth-text-color);
    opacity: 0.7;
}


/* =========================================
   RESPONSIVE MEDIA QUERIES (All Sections)
   ========================================= */

@media (max-width: 1199px) {

    /* Get To Know Me tweaks */
    #get-to-know-me .editorial-quote h3 {
        font-size: 3rem;
    }

    #get-to-know-me .narrative-container {
        padding: 40px;
    }
}

@media (max-width: 991px) {

    /* Global Base */
    .section-title h2 {
        font-size: 2.2rem;
    }

    .chose-img-wrapper {
        margin-bottom: 40px;
    }

    /* VCE Package tweaks */
    #vce-package .chose-img-wrapper {
        margin-bottom: 40px;
    }

    /* Brochure tweaks */
    .brochure-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 30px;
    }

    .brochure-info {
        margin-left: 0 !important;
    }

    .brochure-info p {
        margin: 0 auto;
    }

    .brochure-action {
        margin-left: 0 !important;
        width: 100%;
        margin-top: 10px !important;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }

    /* Get To Know Me tweaks */
    #get-to-know-me {
        padding: 80px 0;
    }

    #get-to-know-me .editorial-quote {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    #get-to-know-me .editorial-quote h3 span {
        font-size: 1.8rem;
    }

    #get-to-know-me .editorial-quote div[style*="background: var(--primary-bg-color)"] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    /* Global Base */
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        margin: 0 auto 25px auto;
    }

    .simple-pricing-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
        border-radius: 25px;
        width: 100%;
        text-align: center;
        padding: 25px 20px;
    }

    .accordion-two .accordion-button {
        padding: 18px 20px;
        font-size: 1rem !important;
    }

    /* VCE Package tweaks */
    #vce-package .accordion-two .accordion-button {
        padding: 16px 20px;
        font-size: 1rem !important;
    }

    #vce-package .accordion-two .accordion-body {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    #vce-package .chose-img-wrapper {
        padding: 6px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    #vce-package .chose-img-wrapper img {
        border-radius: 14px;
    }

    #vce-package .simple-pricing-row {
        padding: 25px 20px;
        width: 100%;
    }

    #vce-package .contact-simple-link {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Brochure tweaks */
    #vce-brochure-section {
        padding: 50px 0;
    }

    .brochure-info h3 {
        font-size: 1.8rem;
    }

    .brochure-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 18px;
    }

    /* Get To Know Me tweaks */
    #get-to-know-me {
        padding: 60px 0;
    }

    #get-to-know-me .editorial-quote h3 {
        font-size: 2.4rem;
    }

    #get-to-know-me .editorial-quote h3 span {
        font-size: 1.4rem;
    }

    #get-to-know-me .narrative-container {
        padding: 35px 25px;
        border-radius: 30px;
    }

    #get-to-know-me .narrative-body p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    #get-to-know-me .narrative-body p:first-of-type::first-letter {
        font-size: 3.8rem;
        margin-right: 12px;
        margin-top: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}