/* HPSAT 2026 - 100 Plus Academy Scholarship Admission Test */
/* High-Performance Landing Page Styles */

/* ===== CSS Reset & Variables ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}

ul {
    list-style: none;
}

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --gold: #f5a623;
    --gold-dark: #d4920f;
    --gold-light: #ffc107;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --blue: #3B82F6;
    --green: #10B981;
    --white: #fff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media(min-width:1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== Typography ===== */
.text-gold {
    color: var(--gold);
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-green {
    color: var(--green);
}

.text-white {
    color: var(--white);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?w=1920') center/cover no-repeat;
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2rem;
    padding: 1rem 0 2rem;
    align-items: start;
}

@media(min-width:1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        padding: 1.5rem 0 2rem;
        min-height: calc(100vh - 100px);
        align-items: center;
    }
}

.hero-content {
    color: var(--white);
    margin: 1rem 1rem 1rem 2rem;
}

/* Logo and Badge Row */
.hero-header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media(min-width:1024px) {
    .hero-header-row {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.hero-logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border: 3px solid #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--gold);
    font-size: 3.5rem;
}

.title-year {
    color: #ffffff;
    font-size: 3rem;
}

@media(min-width:768px) {
    .hero-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 4.5rem;
    }

    .title-year {
        font-size: 4rem;
    }
}

@media(min-width:1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .title-highlight {
        font-size: 5rem;
    }

    .title-year {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-description .text-gold {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(245, 166, 35, 0.5);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-class {
    background: var(--gold);
    color: var(--primary-dark);
}

.tag-board {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Exam Date Cards */
.exam-dates {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.date-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.date-month span {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.75rem;
}

.date-mode {
    margin-top: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.625rem;
    font-weight: 600;
}

/* Scholarship Highlight */
.scholarship-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.scholarship-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.95), rgba(212, 146, 15, 0.9));
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    animation: badge-glow 2.5s ease-in-out infinite;
}

.scholarship-badge i {
    font-size: 2rem;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scholarship-text {
    display: block;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.scholarship-amount {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.scholarship-badge-alt {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.9));
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    animation: badge-glow-green 2.5s ease-in-out infinite;
}

.scholarship-badge-alt i {
    color: #059669;
}

.scholarship-badge-alt .scholarship-text {
    color: var(--white);
}

.scholarship-badge-alt .scholarship-amount {
    color: var(--white);
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(245, 166, 35, 0.6);
    }
}

@keyframes badge-glow-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
    }
}

.mobile-cta {
    display: block;
    margin-bottom: 1rem;
}

@media(min-width:1024px) {
    .mobile-cta {
        display: none;
    }
}

/* ===== Registration Form ===== */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media(min-width:768px) {
    .form-card {
        padding: 2rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.form-header p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media(min-width:480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.error-message {
    display: none;
    font-size: 0.75rem;
    color: var(--red);
    margin-top: 0.25rem;
}

.form-group.error input,
.form-group.error select {
    border-color: var(--red);
}

.form-group.error .error-message {
    display: block;
}

.registration-fee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-weight: 600;
}

.fee-old {
    text-decoration: line-through;
    color: var(--gray-500);
}

.fee-new {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 700;
}

.form-disclaimer {
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* High-converting form submit button */
.btn-form-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    letter-spacing: 0.3px;
    border: none;
    animation: pulse-form-btn 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.btn-form-submit i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

@keyframes pulse-form-btn {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.7);
    }
}

/* ===== Hero Stats Bar ===== */
.hero-stats-bar {
    background: #1a1a1a;
    border-top: 2px solid var(--gold);
    padding: 1.25rem 0;
    position: relative;
    z-index: 20;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media(min-width:768px) {
    .stats-container {
        gap: 2rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.stat-text span {
    color: var(--gold);
    font-weight: 700;
}

.stat-divider {
    width: 2px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    display: none;
}

@media(min-width:768px) {
    .stat-divider {
        display: block;
    }
}

.stat-highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.stat-highlight .stat-icon {
    background: rgba(0, 0, 0, 0.2);
}

.stat-highlight .stat-icon i {
    color: #ffffff;
}

.stat-highlight .stat-text {
    color: #1a1a1a;
    font-weight: 600;
}

.stat-highlight .stat-text span {
    color: #1a1a1a;
    font-weight: 800;
}

/* ===== Sections ===== */
.section {
    padding: 3rem 0;
}

@media(min-width:768px) {
    .section {
        padding: 4rem 0;
    }
}

@media(min-width:1024px) {
    .section {
        padding: 5rem 0;
    }
}

.section-white {
    background: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-navy {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.section-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header-light {
    color: var(--white);
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

@media(min-width:768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title-light {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

@media(min-width:768px) {
    .section-title-light {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media(min-width:640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
    transform: translateY(-5px);
}

.benefit-card-gold {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(245, 166, 35, 0.05));
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== Scholarship Table ===== */
.scholarship-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.scholarship-table th,
.scholarship-table td {
    padding: 1rem 1.5rem;
    text-align: center;
}

.scholarship-table th {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
}

.scholarship-table td {
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.scholarship-table tr:last-child td {
    border-bottom: none;
}

.row-gold {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.1));
}

.row-gold td {
    font-weight: 600;
}

.scholarship-badge-inline {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
}

.scholarship-75 {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: var(--white);
}

.scholarship-50 {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: var(--white);
}

.scholarship-25 {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: var(--white);
}

.scholarship-10 {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: var(--white);
}

.scholarship-cta {
    text-align: center;
}

/* ===== Pattern Cards ===== */
.pattern-cards {
    display: grid;
    gap: 1rem;
}

@media(min-width:480px) {
    .pattern-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:768px) {
    .pattern-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1024px) {
    .pattern-cards {
        grid-template-columns: repeat(6, 1fr);
    }
}

.pattern-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.pattern-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pattern-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.pattern-icon i {
    font-size: 1.25rem;
    color: var(--gold);
}

.pattern-card h4 {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.pattern-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media(min-width:640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.15);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon-circle i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Feature Video */
.feature-video-section {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media(min-width:768px) {
    .feature-video-section {
        grid-template-columns: 2fr 1fr;
    }
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-800);
    cursor: pointer;
    overflow: hidden;
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button i {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-facade:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--red-dark);
}

.video-cta {
    text-align: center;
}

@media(min-width:768px) {
    .video-cta {
        text-align: left;
    }
}

.video-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ===== Faculty Grid ===== */
.faculty-grid {
    display: grid;
    gap: 1.5rem;
}

@media(min-width:480px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .faculty-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.faculty-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
    transition: var(--transition);
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
}

.faculty-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--gold);
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-card h4 {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.faculty-card p {
    font-size: 0.875rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* ===== Results Grid ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media(min-width:640px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(min-width:1024px) {
    .results-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.result-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.result-card img {
    width: 100%;
    height: auto;
}

.results-cta {
    text-align: center;
}

.results-cta p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ===== FAQ Section ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-600);
}

/* ===== Final CTA Section ===== */
.final-cta-content {
    text-align: center;
    color: var(--white);
    padding: 2rem 0;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

@media(min-width:768px) {
    .final-cta-content h2 {
        font-size: 2.5rem;
    }
}

.final-cta-content>p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 70px;
}

@media(min-width:768px) {
    .countdown-item {
        padding: 1.25rem 2rem;
        min-width: 90px;
    }
}

.countdown-number {
    font-size: 1.75rem;
    font-weight: 800;
    display: block;
}

@media(min-width:768px) {
    .countdown-number {
        font-size: 2.5rem;
    }
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.countdown-text {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: var(--transition);
}

@media(min-width:1024px) {
    .whatsapp-float {
        bottom: 1.5rem;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== Floating CTA Mobile ===== */
.floating-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    padding: 0.875rem 1rem;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: block;
    border-top: 3px solid var(--gold);
}

@media(min-width:1024px) {
    .floating-cta-mobile {
        display: none;
    }
}

.floating-cta-mobile .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    animation: pulse-cta 2s ease-in-out infinite;
}

.floating-cta-mobile .btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* High-contrast mobile CTA button - Emerald Green for max conversions */
.btn-cta-mobile {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    letter-spacing: 0.3px;
    border: none;
}

.btn-cta-mobile:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-cta {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.7);
    }
}