:root {
    --navy: #0a1628;
    --navy-light: #1a2b4a;
    --gold: #c9a961;
    --gold-light: #d4af37;
    --gold-lighter: #f4e5b8;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --text-gray: #4a5568;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-gray);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ========== NAVBAR ========== */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--gold);
}

.main-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--navy) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    margin: 0 8px;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 32px);
}

.btn-login {
    background: transparent;
    color: var(--navy);
    padding: 10px 25px;
    border: 2px solid var(--navy);
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-left: 10px;
}

.btn-login:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-enroll {
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.btn-enroll:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.nav-section {
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.hero-video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(26, 43, 74, 0.75) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
    z-index: 2;
}

.hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920")
        center/cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    border: 2px solid var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
}

.hero-stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--white);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-primary span {
    position: relative;
    z-index: 1;
}

.btn-hero-primary:hover {
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(201, 169, 97, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    border: 3px solid var(--white);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator a:hover {
    opacity: 1;
}

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

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
}

/* ========== COURSES SECTION ========== */
.courses-section {
    background: var(--light-gray);
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

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

.course-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-content {
    padding: 30px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.course-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.course-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    font-family: "Playfair Display", serif;
}

.btn-course {
    background: var(--navy);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-course:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-badge-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.about-badge-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    font-family: "Playfair Display", serif;
}

.about-badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* .about-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
} */

/* .about-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
} */

/* .about-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
} */

/* ========== ALUMNI SECTION ========== */
.alumni-section {
    background: var(--navy);
    color: var(--white);
}

.alumni-section .section-title {
    color: var(--white);
}

.alumni-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.alumni-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.alumni-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin: 0 auto 20px;
}

.alumni-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.alumni-position {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.alumni-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

.alumni-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.alumni-stat-box {
    text-align: center;
}

.alumni-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.alumni-stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--light-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 25px 30px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gold);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ========== VIDEO SECTION ========== */
.video-section {
    background: var(--white);
}

.video-main-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.video-main-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--navy);
}

.video-main-wrapper iframe,
.video-main-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.video-thumbnail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.08);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.5) 0%,
        rgba(10, 22, 40, 0.9) 100%
    );
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--gold);
    animation: pulse 2s infinite;
}

.play-button i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.15);
    background: var(--white);
}

.video-thumbnail:hover .play-button i {
    color: var(--navy);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-info {
    padding: 20px 0;
}

.video-info h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.video-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 60px 50px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 60px 50px;
}

.form-control {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    background: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.btn-submit {
    background: var(--gold);
    color: var(--white);
    padding: 16px 50px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--navy);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-main-image {
        height: 400px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 40px 30px;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .btn-enroll,
    .btn-login {
        margin: 10px 0;
        width: 100%;
    }
}

.login-left {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(201, 169, 97, 0.15) 0%,
        transparent 70%
    );
}

.login-left-content {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.login-left h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.login-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
}

/* .feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
} */

.login-right {
    flex: 1;
    min-width: 300px;
    padding: 60px 50px;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--gold);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.remember-me label {
    font-size: 0.95rem;
    color: var(--text-gray);
    cursor: pointer;
    margin: 0;
}

.forgot-password {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--navy);
}

.btn-login {
    background: var(--gold);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-social:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-social i {
    font-size: 1.2rem;
}

.signup-link {
    text-align: center;
    margin-top: 30px;
    color: var(--text-gray);
}

.signup-link a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}

.signup-link a:hover {
    color: var(--navy);
}

.back-home {
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .login-left,
    .login-right {
        padding: 40px 30px;
    }

    .login-left h2 {
        font-size: 2rem;
    }

    .login-header h3 {
        font-size: 1.8rem;
    }

    .back-home {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .social-login {
        flex-direction: column;
    }
}
