/*
Theme Name: ACFI Theme
Theme URI: https://arriesgado-college-foundation-inc.local
Author: ACFI Development Team
Author URI: https://arriesgado-college-foundation-inc.local
Description: A custom minimal WordPress theme for Arriesgado College Foundation Inc.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acfi-theme
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Tags: custom-menu, custom-logo, block-styles, wide-blocks
*/

/* ============================================
   BASE STYLES
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR STYLES
   ============================================ */

.top-bar {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-left a:hover {
    opacity: 1;
}

.top-bar-left a svg {
    vertical-align: middle;
    margin-right: 6px;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-right a:hover {
    opacity: 1;
}

.top-bar-right a svg {
    vertical-align: middle;
    margin-right: 6px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header-left {
    flex: 0 0 auto;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none;
}

.drawer-header,
.drawer-footer,
.drawer-menu-wrapper {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: #333;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu .dropdown-arrow {
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    width: max-content;
    display: none;
    padding: 15px 0;
    border-radius: 12px;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.sub-menu li {
    position: relative;
}

.sub-menu a {
    padding: 10px 25px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.sub-menu a:hover {
    background-color: rgba(198, 38, 110, 0.08);
    color: var(--brand-primary);
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--brand-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 99px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 38, 110, 0.25);
}

.cta-button:active {
    transform: translateY(0);
}

.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    color: var(--brand-primary);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-search.active .search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(12px);
}

.search-box form {
    display: flex;
    gap: 0;
}

.search-box input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: var(--brand-primary);
}

.search-box button {
    padding: 14px 20px;
    background: var(--brand-primary);
    border: none;
    border-radius: 0 10px 10px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: #a01e5a;
}

@media (max-width: 768px) {
    .header-search .search-box {
        width: 280px;
        right: -20px;
    }
    
    .header-search .search-box input {
        padding: 12px 14px;
    }
    
    .header-search .search-box button {
        padding: 12px 16px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    min-height: calc(100vh - 400px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-column.footer-brand-column {
    flex: 1.5;
    min-width: 250px;
}

.footer-column.footer-brand-column .footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-column.footer-brand-column .footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column.footer-brand-column .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column.footer-brand-column .footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column.footer-brand-column .footer-contact-info a:hover {
    color: #fff;
}

.footer-column:not(.footer-brand-column):not(.footer-newsletter) {
    margin-left: 60px;
}

.footer-column.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-column.footer-newsletter .newsletter-success {
    color: #4caf50;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 15px;
    background: var(--brand-primary);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #a01e5a;
}

.newsletter-form .spam-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(198, 38, 110, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background: var(--brand-primary);
    box-shadow: 0 6px 20px rgba(198, 38, 110, 0.6);
    transform: scale(1.1);
}

.back-to-top:hover .arrow-icon {
    color: #fff;
}

.back-to-top .progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.back-to-top .progress-ring-progress {
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.1s ease;
    stroke-linecap: round;
}

.back-to-top .arrow-icon {
    color: var(--brand-primary);
    z-index: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ============================================
   BRAND COLORS & VARIABLES
   ============================================ */

:root {
    --brand-primary: #C6266E;
    --brand-primary-rgb: 198, 38, 110;
    --brand-secondary: #1a1a2e;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --white: #fff;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #a01e5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 38, 110, 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #a01e5a;
    text-decoration: underline;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0 0 50px;
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--brand-primary);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ============================================
   BANNER SLIDER SECTION
   ============================================ */

.banner-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    line-height: 1.6;
}

.banner-content .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 90px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.banner-content .btn-primary:hover {
    background-color: #fff;
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    background: var(--brand-primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--brand-primary);
}

/* ============================================
    PROMO BANNER SECTION
    ============================================ */

.promo-banner-section {
    padding: 40px 0 0;
    background: linear-gradient(135deg, #c6266e 0%, #8b1f4a 100%);
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-content {
    flex: 1;
    color: #fff;
}

.promo-content .btn-primary {
    background-color: #F8BC24;
    color: #000;
}

.promo-content .btn-primary:hover {
    background-color: #e5a61f;
}

.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.promo-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.promo-image {
    flex: 0 0 550px;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image img {
    width: 90%;
    height: auto;
    border-radius: 16px;
    box-shadow: none;
}

@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .promo-content h2 {
        font-size: 28px;
    }
}

/* ============================================
    HERO SECTION
    ============================================ */

.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: center;
}

.hero-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.hero-thumbnails img {
    width: 25%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.hero-thumbnails img:hover {
    transform: translateY(-4px);
}

.hero-right {
    padding-left: 20px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-rating .stars {
    color: #ffc107;
    font-size: 18px;
}

.hero-rating .rating {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.hero-rating .reviews {
    color: var(--text-light);
    font-size: 14px;
}

.hero-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 20px;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 15px;
}

.hero-offer {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-primary);
    margin: 0 0 25px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.trust-badges .badge {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

.hero-supporting {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STUDENT JOURNEY SECTION
   ============================================ */

.journey-section {
    padding: 100px 0;
    background-color: var(--white);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-row-reverse {
    direction: rtl;
}

.benefit-row-reverse > * {
    direction: ltr;
}

.benefit-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.benefit-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.feature-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.features-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.features-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.features-rating .stars {
    color: #ffc107;
    font-size: 20px;
}

.features-rating .rating {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.features-rating .reviews {
    color: var(--text-light);
    font-size: 16px;
}

.features-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--brand-primary);
    transform: translateY(-3px);
}

/* ============================================
   WHAT'S INCLUDED SECTION
   ============================================ */

.included-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.included-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.included-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 30px;
}

.checklist li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-left: 10px;
}

.checklist li::marker {
    color: var(--brand-primary);
}

.included-right {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.included-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.video-testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(198, 38, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background-color: var(--brand-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonials-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.comparison-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-table {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-header {
    background-color: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
}

.comp-header .comp-col {
    color: var(--white);
}

.comp-col {
    text-align: center;
    font-size: 14px;
}

.comp-col:first-child {
    text-align: left;
}

.comp-row .comp-col:first-child {
    font-weight: 500;
}

.comp-col.highlight {
    color: var(--brand-primary);
    font-weight: 700;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
    text-align: left;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-question span {
    font-size: 24px;
    color: var(--brand-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image img {
    width: 100%;
    max-width: 550px;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.faq-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FINAL CTA / ENROLLMENT FORM
   ============================================ */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #a01e5a 100%);
    color: var(--white);
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: var(--white);
}

.cta-content {
    text-align: center;
    margin-bottom: 50px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 25px;
}

.cta-content .features-rating {
    justify-content: center;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto 40px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.form-step {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-step h4 {
    font-size: 16px;
    color: var(--brand-primary);
    margin: 0 0 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.cta-social {
    text-align: center;
}

.cta-social > span {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.cta-social .features-social {
    justify-content: center;
}

.cta-social .social-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-social .social-icon:hover {
    background-color: var(--white);
    color: var(--brand-primary);
}

/* ============================================
   FEATURES GRID SECTION
   ============================================ */

.features-grid-section {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
}

.feature-grid-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-grid-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.feature-grid-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 30px;
}

.about-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 32px;
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 38, 110, 0.3);
}

.about-learn-more:hover {
    background: #a01e5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 38, 110, 0.4);
}

.about-learn-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.about-learn-more:hover svg {
    transform: translateX(5px);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.about-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-primary), #a01e5a);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(198, 38, 110, 0.15);
}

.about-card .card-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: inline-block;
    padding: 12px;
    background: linear-gradient(135deg, rgba(198, 38, 110, 0.1), rgba(198, 38, 110, 0.05));
    border-radius: 12px;
}

.about-block {
    margin-bottom: 30px;
}

.about-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
}

.about-block h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.about-block p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.about-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-history {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-accordion {
    margin-top: 25px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: #f9f9f9;
    color: var(--brand-primary);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--brand-primary);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.accordion-content ul {
    padding: 0 20px 20px 40px;
    margin: 0;
}

.accordion-content li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: decimal;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--brand-primary);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
    padding: 100px 0;
    background-color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.program-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 20px;
}

.program-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
}

.program-link:hover {
    text-decoration: underline;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.gallery-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.gallery-swiper {
    width: 100%;
    overflow: hidden;
}

.gallery-swiper .swiper-slide {
    height: auto;
}

.gallery-swiper .gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-swiper .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-swiper .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-next, .gallery-prev {
    color: var(--brand-primary) !important;
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.gallery-next::after, .gallery-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.gallery-next:hover, .gallery-prev:hover {
    background: var(--brand-primary) !important;
    color: #fff !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(198, 38, 110, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 30px;
    color: #fff;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--brand-primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    transition: color 0.3s ease;
    user-select: none;
    z-index: 1001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--brand-primary);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    max-width: 80%;
}

/* ============================================
   NEWS & EVENTS SECTION
   ============================================ */

.news-events-section {
    padding: 100px 0;
    background-color: #fff;
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #a51e5d;
}

@media (max-width: 992px) {
    .news-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-events-grid {
        grid-template-columns: 1fr;
    }
}

.news-events-cta {
    text-align: center;
    margin-top: 50px;
}

.news-events-cta .btn-primary {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.news-events-cta .btn-primary:hover {
    background-color: #a51e5d;
    transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
    background-color: var(--brand-primary);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-links h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--white);
}

.contact-info p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 0 25px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-icon {
    font-size: 18px;
}

.contact-links ul {
    list-style: none;
}

.contact-links li {
    margin-bottom: 12px;
}

.contact-links a {
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-right {
        padding-left: 0;
    }

    .hero-headline {
        font-size: 32px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .benefit-row,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-row-reverse,
    .feature-row-reverse {
        direction: ltr;
    }

    .included-container {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
    }

    .video-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-images {
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .feature-grid-item {
        margin-bottom: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 400px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-content .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .top-bar-left {
        gap: 15px;
    }

    .top-bar-text {
        display: none;
    }

    .top-bar-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
    }

    .mobile-nav.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .drawer-header,
    .drawer-footer,
    .drawer-menu-wrapper {
        display: block;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid #eee;
    }

    .drawer-logo img {
        max-height: 50px;
    }

    .menu-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background-color: var(--brand-primary);
        border: none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .menu-close-btn:hover {
        background-color: #a01e5a;
        transform: rotate(90deg);
    }

    .drawer-menu-wrapper {
        flex: 1;
        overflow-y: auto;
        padding: 20px 25px;
    }

    .header-center .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .header-center .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .header-center .nav-menu a {
        padding: 18px 0;
        font-size: 17px;
        font-weight: 500;
        display: block;
    }

    .header-center .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
        padding-left: 15px;
    }

    .header-center .nav-menu li:hover > .sub-menu {
        display: block;
    }

    .header-center .nav-menu .menu-item-has-children.active > .sub-menu,
    .header-center .nav-menu .menu-item-has-children.active .sub-menu,
    .mobile-nav .nav-menu .menu-item-has-children.active > .sub-menu,
    .mobile-nav .nav-menu .menu-item-has-children.active .sub-menu {
        display: block !important;
    }

    .drawer-footer {
        padding: 20px 25px;
        border-top: 1px solid #eee;
        background-color: #f9f9f9;
    }

    .drawer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .drawer-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #666;
    }

.drawer-contact a svg {
        color: var(--brand-primary);
    }
}

@media (max-width: 480px) {

    .header-center::before {
        content: '';
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        z-index: -1;
    }

    body.menu-open::before {
        left: 0;
    }

    .header-center .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .header-center .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .header-center .nav-menu a {
        padding: 15px 0;
        font-size: 16px;
    }

    .header-center .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
        padding-left: 15px;
    }

    .header-center .nav-menu li:hover > .sub-menu {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .sub-menu a {
        padding-left: 20px;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        text-align: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .trust-badges .badge {
        text-align: center;
    }

    .journey-section,
    .benefits-section,
    .features-section,
    .included-section,
    .testimonials-section,
    .comparison-section,
    .faq-section {
        padding: 60px 0;
    }

    .step-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .feature-text h3,
    .benefit-text h3 {
        font-size: 22px;
    }

    .video-testimonials {
        grid-template-columns: 1fr 1fr;
    }

    .comp-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comp-header {
        display: none;
    }

    .comp-col:first-child {
        font-weight: 700;
        color: var(--text-dark);
    }

    .comp-col::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        color: var(--text-light);
        margin-bottom: 3px;
    }

    .enrollment-form {
        padding: 25px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 80px;
    }

    .logo img {
        max-height: 55px;
    }

    .cta-button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .drawer-logo img {
        max-height: 45px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.breadcrumb-section {
    position: relative;
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.breadcrumb li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '»';
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.breadcrumb a {
    color: #F8BC24;
    text-decoration: none;
}

.breadcrumb li:last-child {
    color: #fff;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    background: var(--brand-primary);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.contact-map {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #F8BC24;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.contact-form button {
    background: var(--brand-primary);
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-form button:hover {
    background: #a51e5d;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 150px 0 60px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 28px;
    }
}

/* ============================================
   NEWS EVENTS PAGE
   ============================================ */

.news-events-listing-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-events-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-events-main .news-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-events-main .news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-events-main .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.news-events-main .news-image {
    position: relative;
    overflow: hidden;
}

.news-events-main .news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.news-events-main .news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-events-main .news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-events-main .news-content {
    padding: 25px;
}

.news-events-main .news-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.news-events-main .news-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-events-main .news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-events-main .news-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.news-events-main .news-link:hover {
    color: #a51e5d;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination a:hover,
.pagination a.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.pagination a:hover,
.pagination .current {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

/* Sidebar */
.news-events-sidebar {
    padding-top: 10px;
}

.sidebar-widget {
    margin-bottom: 40px;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 25px;
}

.sidebar-widget .widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brand-primary);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-info {
    flex: 1;
}

.recent-post-info span {
    font-size: 12px;
    color: #888;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.4;
}

.recent-post-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: var(--brand-primary);
}

.archives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archives-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.archives-list li:last-child {
    border-bottom: none;
}

.archives-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archives-list a:hover {
    color: var(--brand-primary);
}

@media (max-width: 992px) {
    .news-events-layout {
        grid-template-columns: 1fr;
    }
    
    .news-events-sidebar {
        order: -1;
    }
    
    .news-events-main .news-events-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SINGLE NEWS PAGE
   ============================================ */

.single-news-section {
    padding: 80px 0;
    background-color: #fff;
}

.single-news-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.single-news-content {
    background: #fff;
}

.single-news-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.single-news-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.single-news-image .news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-news-meta {
    margin-bottom: 15px;
}

.single-news-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.single-news-meta .news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.single-news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.single-news-body p {
    margin-bottom: 20px;
}

.single-news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.single-news-body h1,
.single-news-body h2,
.single-news-body h3,
.single-news-body h4,
.single-news-body h5,
.single-news-body h6 {
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.single-news-body ul,
.single-news-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-news-body li {
    margin-bottom: 10px;
}

.single-news-body a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.single-news-body blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--brand-primary);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
}

.single-news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.single-news-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.single-news-sidebar {
    padding-top: 10px;
}

@media (max-width: 992px) {
    .single-news-layout {
        grid-template-columns: 1fr;
    }
    
    .single-news-image img {
        height: 250px;
    }
}

/* ============================================
   LIBRARY PAGE
   ============================================ */

.library-section {
    padding: 80px 0;
    background-color: #fff;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.library-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.library-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.library-image {
    overflow: hidden;
}

.library-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.library-card:hover .library-image img {
    transform: scale(1.1);
}

.library-content {
    padding: 25px;
}

.library-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.library-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.library-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.library-link:hover {
    color: #a51e5d;
}

.no-library {
    text-align: center;
    padding: 50px;
    color: #666;
}

@media (max-width: 992px) {
    .library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .library-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SINGLE LIBRARY PAGE
   ============================================ */

.single-library-section {
    padding: 80px 0;
    background-color: #fff;
}

.single-library-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-library-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.single-library-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.single-library-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-library-body p {
    margin-bottom: 20px;
}

.single-library-body h1,
.single-library-body h2,
.single-library-body h3,
.single-library-body h4,
.single-library-body h5,
.single-library-body h6 {
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.single-library-body ul,
.single-library-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-library-body li {
    margin-bottom: 10px;
}

.single-library-body a {
    color: var(--brand-primary);
}

.single-library-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

@media (max-width: 576px) {
    .single-library-image img {
        height: 250px;
    }
}

/* ============================================
   ADMISSION PAGE
   ============================================ */

.admission-section {
    padding: 100px 0;
    background-color: #fff;
}

.admission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.admission-form-section .section-subtitle {
    color: var(--brand-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.admission-form-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.admission-form-section > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.admission-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.admission-cta .btn-primary {
    background: var(--brand-primary);
    color: #fff;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.admission-cta .btn-primary:hover {
    background: #a51e5d;
    transform: translateY(-2px);
}

.admission-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admission-contact .contact-icon {
    width: 50px;
    height: 50px;
    background: #F8BC24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-contact .contact-icon svg {
    width: 22px;
    height: 22px;
    color: #000;
}

.admission-contact .contact-info span {
    display: block;
    font-size: 14px;
    color: #666;
}

.admission-contact .contact-info h4 a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.admission-contact .contact-info h4 a:hover {
    color: var(--brand-primary);
}

.admission-requirements .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    position: relative;
    padding-left: 45px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: var(--text-dark);
}

.requirements-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6266e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.enrollment-procedure-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.enrollment-procedure-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.enrollment-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.enrollment-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.enrollment-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.enrollment-question:hover {
    background: #f8f9fa;
    color: var(--brand-primary);
}

.enrollment-question.active {
    background: var(--brand-primary);
    color: #fff;
}

.enrollment-question.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.enrollment-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.enrollment-answer.open {
    max-height: 500px;
}

.enrollment-answer ol {
    padding: 25px 25px 25px 45px;
    margin: 0;
}

.enrollment-answer li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.enrollment-answer li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .admission-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .admission-form-section .section-title {
        font-size: 28px;
    }
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-main-section {
    padding: 80px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-main-content {
    padding-right: 30px;
}

.about-block {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.about-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
}

.about-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-gallery-section {
    margin-top: 40px;
    padding-top: 30px;
}

.about-gallery-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about-gallery-grid .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.about-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-gallery-grid .gallery-item:hover img {
    transform: scale(1.15);
}

.about-gallery-grid .gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(198, 38, 110, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-gallery-grid .gallery-item:hover::before {
    opacity: 1;
}

.about-gallery-grid .gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.about-gallery-grid .gallery-item:hover .gallery-overlay {
    transform: translate(-50%, -50%) scale(1);
}

.about-gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.mission-list {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
}

.mission-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--brand-primary);
    border-radius: 50%;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.facilities-card {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #a51e5d 100%);
    border-radius: 16px;
    padding: 35px;
    color: #fff;
}

.facilities-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.facilities-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facilities-check li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 32px;
    position: relative;
}

.facilities-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.about-sidebar .benefits-card {
    background: #faf9f6;
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
    border: 1px solid #eee;
}

.about-sidebar .benefits-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.about-sidebar .benefits-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: #F8BC24;
}

.about-sidebar .newsletter-card {
    background: #faf9f6;
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
    border: 1px solid #eee;
}

.about-sidebar .newsletter-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.about-sidebar .newsletter-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.about-sidebar .newsletter-card .newsletter-success {
    color: #4caf50;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
}

.about-sidebar .newsletter-card .newsletter-form {
    display: flex;
    gap: 0;
}

.about-sidebar .newsletter-card .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.about-sidebar .newsletter-card .newsletter-form button {
    padding: 12px 15px;
    background: var(--brand-primary);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.about-sidebar .newsletter-card .newsletter-form button:hover {
    background: #a01e5a;
}

.benefits-check {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.benefits-check li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.benefits-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6266e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-enroll {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-enroll:hover {
    background: var(--brand-primary);
    color: #fff;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-main-content {
        padding-right: 0;
    }
    
    .about-sidebar {
        position: relative;
        top: 0;
    }
    
    .about-block h2 {
        font-size: 24px;
    }
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */

.search-page {
    background: #f4f6f8;
    min-height: 70vh;
}

.search-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.search-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.search-info {
    font-size: 18px;
    opacity: 0.9;
}

.search-info span {
    font-weight: 600;
    color: #F8BC24;
}

.search-content {
    padding: 50px 0;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.search-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.search-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.search-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-item-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.search-item:hover .search-item-thumb img {
    transform: scale(1.08);
}

.search-item-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-item-placeholder svg {
    width: 60px;
    height: 60px;
    color: #bbb;
}

.search-item-body {
    padding: 25px;
}

.search-item-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-primary);
    background: rgba(198, 38, 110, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.search-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.search-item:hover .search-item-title {
    color: var(--brand-primary);
}

.search-item-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
}

.search-item-cta svg {
    transition: transform 0.3s ease;
}

.search-item:hover .search-item-cta svg {
    transform: translateX(5px);
}

.search-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    margin: 0 3px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.search-pagination .page-numbers.current {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.search-pagination svg {
    width: 18px;
    height: 18px;
}

.search-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.search-empty-icon {
    margin-bottom: 25px;
}

.search-empty-icon svg {
    color: #ccc;
}

.search-empty h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.search-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #a51e5d;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-hero h1 {
        font-size: 32px;
    }
    
    .search-info {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .search-hero {
        padding: 40px 0;
    }
    
    .search-hero h1 {
        font-size: 28px;
    }
    
    .search-item-thumb {
        height: 160px;
    }
    
    .search-item-body {
        padding: 20px;
    }
    
    .search-item-title {
        font-size: 18px;
    }
}