@import "elevate.css";

/* ==========================================
   ELEVATE 2.0 CUSTOM BRAND COLOR OVERRIDES
   ========================================== */
:root {
    --brand-green: #0b7b0b;
    --accent-red: #dc3545;
    --highlight-orange: #ff9d01;
    --dark-green: #012c06;
    --secondary-green: #278533;
}

/* Base Body background custom styling for Elevate 2.0 */
body {
    background: #fafbfd;
    color: #333333;
}

/* Glassmorphism utility cards */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(11, 123, 11, 0.05);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 123, 11, 0.1);
    border-color: rgba(11, 123, 11, 0.2);
}

/* ==========================================
   HERO SECTION OVERRIDES
   ========================================== */
.hero-section {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(39, 133, 51, 0.12) 0%,
            rgba(255, 255, 255, 0) 50%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(255, 157, 1, 0.08) 0%,
            rgba(255, 255, 255, 0) 50%
        );
    height: auto;
    min-height: 600px;
    padding: 80px 0 120px 0;
}

.hero-section-container-main-content {
    background: none;
    padding: 40px 0;
}

.hero-section-container-main-content h1 {
    font-size: 55px;
    line-height: 1.15;
    font-family: "Panamera-Bold", sans-serif;
    color: #111;
}

.hero-section-container-main-content h1 span.accent-green-text {
    color: var(--brand-green);
}

.hero-countdown {
    margin-top: 20px;
    text-align: center;
}

.hero-countdown > span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-countdown-grid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc3545;
    padding: 12px 20px;
    border-radius: 10px;
}

.hero-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.hero-cd-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    font-family: "Share Tech Mono", monospace;
}

.hero-cd-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cd-colon {
    font-size: 1.2rem;
    font-weight: 700;
    /* color: #999; */
    color: white;
    margin-top: -8px;
}

.hero-section-container-main-content p.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   PROGRAM OVERVIEW & SPEC GRID
   ========================================== */
.overview-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.spec-item {
    padding: 24px;
    text-align: center;
    border-bottom: 4px solid var(--secondary-green);
}

.spec-icon {
    font-size: 32px;
    color: var(--secondary-green);
    margin-bottom: 12px;
}

.spec-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.spec-value {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

/* ==========================================
   AVAILABLE TRACKS SECTION
   ========================================== */
.tracks-section {
    padding: 90px 0;
    background: #fff;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.track-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fafbfd;
}

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

.track-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--brand-green);
    opacity: 0.8;
}

.track-icon {
    font-size: 40px;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.track-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.track-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   PROGRAM STRUCTURE (PHASES TIMELINE)
   ========================================== */
.testimonials-section {
    padding: 90px 0;
    background: #fafbfd;
}

.testimonial-carousel-inner {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.testimonial-carousel-wrap {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: none;
    width: 100%;
}

.testimonial-carousel-wrap:active {
    cursor: grabbing;
}

.testimonial-carousel-wrap img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.testimonial-carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.testimonial-carousel-track .testimonial-card {
    flex: 0 0 300px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 123, 11, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 123, 11, 0.1);
    border-color: rgba(11, 123, 11, 0.2);
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.testimonial-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-body {
    padding: 16px 18px 20px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.testimonial-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ab1313;
    text-decoration: none;
    transition: color 0.2s;
}

.testimonial-youtube-link:hover {
    color: #8a0f0f;
    text-decoration: underline;
}

.testimonial-youtube-link i {
    font-size: 1rem;
}

.testimonial-carousel-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin: 10px 0 4px;
}

.testimonial-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}

.testimonial-carousel-arrow {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition:
        background 0.2s,
        color 0.2s;
}

.testimonial-carousel-arrow:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

@media (min-width: 768px) {
    .testimonial-carousel-track .testimonial-card {
        flex: 0 0 340px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel-track .testimonial-card {
        flex: 0 0 360px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel-track .testimonial-card {
        flex: 0 0 260px;
    }
}

/* ==========================================
   PROGRAM BENEFITS
   ========================================== */
.benefits-section {
    padding: 90px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fafbfd;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.benefit-card-item:hover {
    border-color: rgba(11, 123, 11, 0.3);
    background: #fff;
    box-shadow: 0 6px 15px rgba(11, 123, 11, 0.05);
}

.benefit-check-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(11, 123, 11, 0.1);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* ==========================================
   SCHOLARSHIP & SUBSIDIZED PLAN
   ========================================== */
.pricing-section {
    padding: 90px 0;
    background: #fafbfd;
}

.pricing-container {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-col {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pricing-col.scholarship-card {
    background: #fff;
    border: 2px solid #eee;
}

.pricing-col.paid-card {
    background: var(--dark-green);
    color: #fff;
    border: 2px solid var(--brand-green);
    box-shadow: 0 15px 35px rgba(1, 44, 6, 0.25);
}

.pricing-col.paid-card .pricing-header h3,
.pricing-col.paid-card .pricing-header p {
    color: #fff;
}

.pricing-col.paid-card .pricing-price {
    color: #bfe866;
}

.pricing-col.paid-card .pricing-bullet-list li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-col.paid-card .pricing-bullet-list li::before {
    color: #bfe866;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: #666;
}

.pricing-price {
    font-size: 44px;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

.pricing-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-bullet-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.pricing-bullet-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--brand-green);
}

/* ==========================================
   ORGANIZATIONAL STRUCTURE
   ========================================== */
.org-section {
    padding: 90px 0;
    background: #fff;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.org-card {
    padding: 30px;
    border-radius: 16px;
    background: #fafbfd;
    border: 1px solid #f0f0f0;
}

.org-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-green);
    border-bottom: 2px solid rgba(11, 123, 11, 0.1);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.org-card-role-item {
    margin-bottom: 15px;
}

.org-card-role-item:last-child {
    margin-bottom: 0;
}

.role-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.role-desc {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    line-height: 1.5;
}

/* ==========================================
   PARTNERSHIP, SPONSORSHIP & MARKETING
   ========================================== */
.strategy-section {
    padding: 90px 0;
    background: #fafbfd;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-card {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
}

.strategy-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-card-title i {
    color: var(--brand-green);
}

.strategy-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.strategy-card li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.strategy-card li strong {
    color: #111;
}

/* ==========================================
   VISION & CONCLUSION BANNER
   ========================================== */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, #06400e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-title {
    font-size: 16px;
    font-weight: 700;
    color: #bfe866;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.vision-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: "Space Grotesk", sans-serif;
}

.vision-motto {
    font-size: 20px;
    font-weight: 700;
    color: #bfe866;
    letter-spacing: 1px;
}

.vision-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(191, 232, 102, 0.12) 0%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
}

/* COUNTDOWN SECTION */

.application-countdown-section {
    background: #e9e9e9;
    padding: 40px 20px;
    width: 100%;
}

.application-countdown-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.application-countdown-title {
    margin: 0 0 30px;
    color: #ff0000;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
}

.application-countdown-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.application-countdown-box {
    width: 150px;
    height: 105px;
    background: #ff0d00;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.application-countdown-number {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.application-countdown-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .application-countdown-grid {
        gap: 12px;
    }

    .application-countdown-box {
        width: 130px;
        height: 95px;
    }

    .application-countdown-number {
        font-size: 30px;
    }
}
/* COUNTDOWN SECTION ENDS */

/* ==========================================
   FORM SECTION OVERRIDES (FOR ELEVATE 2.0)
   ========================================== */
.form-section {
    background: radial-gradient(
        circle at 10% 20%,
        rgba(39, 133, 51, 0.05) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    padding: 20px 0;
}

.form-first-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.form-second-container {
    background: #ffffff;
}

.form-left-section {
    background-size: cover;
    background-color: #02630f;
    width: 40%;
    border-radius: 10px 0 0 10px;
}
.form-left-section-top {
    height: 600px;
    background-image: url("/media/new/elevate_img.jpeg");
    background-position: center;
    background-size: cover;
}

.form-left-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.form-left-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* Step indicator checkmarks */
.custom-step.active .circle {
    background: var(--brand-green);
}

.custom-step.active .label {
    color: var(--brand-green);
}

.line.active {
    background: var(--brand-green);
}

/* Input fields alignment */
.form-group {
    border-color: #e2e8f0;
}

.form-group > label {
    color: #4a5568;
}

/* ==========================================
   RESPONSIVENESS AND SMALL SCREEN REFINEMENTS
   ========================================== */
@media screen and (max-width: 768px) {
    .hero-section-container-main-content h1 {
        font-size: 36px;
    }

    .pricing-container {
        padding: 0 15px;
    }

    .pricing-col {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section-container-main-content h1 {
        font-size: 28px;
    }

    .spec-value {
        font-size: 18px;
    }
}
