/* ===================================================
   Flione Elevate Page — Dedicated Stylesheet
   =================================================== */

/* ---------- Elevate Hero ---------- */
.elevate-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: #fff;
}

/* Split background removed, replaced with dot pattern */
.elevate-hero::before {
    content: '';
    position: absolute;
    top: 40%; left: -20px;
    width: 80px; height: 200px;
    background-image: radial-gradient(#facc15 20%, transparent 20%);
    background-size: 20px 20px;
    z-index: 1;
}

.elevate-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Badge */
.elevate-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #c9dfff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    margin-bottom: 18px;
}

.elevate-hero-left {
    padding: 60px 20px 60px 0;
}

.elevate-title-intro {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #001a6e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.elevate-title-intro::before,
.elevate-title-intro::after {
    content: '';
    width: 45px;
    height: 2px;
    background: #001a6e;
}

.elevate-brand-name {
    font-size: clamp(3.5rem, 8.5vw, 6.5rem);
    font-weight: 900;
    line-height: 0.88;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.elevate-brand-name .flione-word {
    color: #001a6e;
    display: block;
}

.elevate-brand-name .elevate-word {
    display: inline-block;
    background: linear-gradient(90deg, #0056d2, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-right: 20px;
}

.elevate-swoosh {
    position: absolute;
    bottom: -15px;
    right: -60px;
    width: 250px;
    height: 120px;
    pointer-events: none;
}

.elevate-tagline {
    font-size: 1.55rem;
    font-weight: 700;
    color: #001a6e;
    margin-top: 25px;
    line-height: 1.4;
}

.elevate-tagline .highlight {
    color: #0056d2;
}

.elevate-hero-cta {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-elevate-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #001a6e;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
}

.btn-elevate-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
    color: #001a6e;
}

.btn-elevate-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #001a6e;
    border: 2px solid #001a6e;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-elevate-outline:hover {
    background: #001a6e;
    border-color: #001a6e;
    color: #fff;
    transform: translateY(-4px);
}

/* Right side: classroom image + pricing badge */
.elevate-hero-right {
    position: relative;
    padding: 40px 0;
}

.elevate-classroom-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 480px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.elevate-smart-classroom-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 320px;
    border: 1px solid rgba(0,56,184,0.1);
}

.elevate-smart-classroom-badge .sc-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0038b8;
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sc-app-icons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.sc-app-icon {
    text-align: center;
}

.sc-app-icon .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 8px;
    color: #fff;
}

.sc-app-icon .icon-circle.lessons  { background: #1a73e8; }
.sc-app-icon .icon-circle.activities { background: #34a853; }
.sc-app-icon .icon-circle.assess   { background: #fbbc05; }
.sc-app-icon .icon-circle.analytics { background: #a142f4; }

.sc-app-icon span {
    font-size: 0.65rem;
    color: #555;
    font-weight: 600;
    display: block;
}

/* Pricing bubble */
.elevate-price-bubble {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: linear-gradient(135deg, #0d47a1, #001a6e);
    color: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,56,184,0.5);
    border: 6px solid rgba(255,255,255,0.25);
    z-index: 3;
    animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0,56,184,0.5); }
    50% { box-shadow: 0 10px 60px rgba(0,56,184,0.8), 0 0 0 12px rgba(0,56,184,0.1); }
}

.elevate-price-bubble .all-at {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.elevate-price-bubble .price-val {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #facc15;
}

.elevate-price-bubble .price-rupee {
    font-size: 1.6rem;
    font-weight: 700;
    vertical-align: super;
    color: #facc15;
}

.elevate-price-bubble .per-student {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

/* ---------- Pillars section ---------- */
.elevate-pillars {
    padding: 80px 0;
    background: #f0f5ff;
}

.elevate-section-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,56,184,0.1), rgba(79,195,247,0.12));
    border: 1px solid rgba(0,56,184,0.2);
    color: #0038b8;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pillar-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgba(0,56,184,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,56,184,0.12);
    border-color: rgba(0,56,184,0.18);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card.card-blue::after   { background: linear-gradient(90deg, #0038b8, #4fc3f7); }
.pillar-card.card-green::after  { background: linear-gradient(90deg, #16a34a, #4ade80); }
.pillar-card.card-purple::after { background: linear-gradient(90deg, #7c3aed, #c084fc); }

.pillar-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pillar-icon-wrap.bg-blue   { background: linear-gradient(135deg, #0038b8, #4fc3f7); color: #fff; }
.pillar-icon-wrap.bg-green  { background: linear-gradient(135deg, #16a34a, #4ade80); color: #fff; }
.pillar-icon-wrap.bg-purple { background: linear-gradient(135deg, #7c3aed, #c084fc); color: #fff; }

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pillar-card.card-blue  h3 { color: #0038b8; }
.pillar-card.card-green h3 { color: #16a34a; }
.pillar-card.card-purple h3 { color: #7c3aed; }

.pillar-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Gallery strip ---------- */
.elevate-gallery {
    padding: 0;
}

.elevate-gallery-grid {
    display: grid;
    grid-template-rows: 200px 200px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 16px;
    background: linear-gradient(to top, rgba(0,26,110,0.85), transparent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Future skills banner ---------- */
.elevate-future-banner {
    background: linear-gradient(135deg, #001a6e 0%, #0038b8 50%, #0056d2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.elevate-future-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.future-banner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #facc15;
    flex-shrink: 0;
}

.future-banner-text strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.future-banner-text strong .accent {
    color: #facc15;
}

.future-banner-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
}

.future-banner-divider {
    width: 2px;
    align-self: stretch;
    background: rgba(255,255,255,0.2);
    border-radius: 1px;
}

/* ---------- Why choose section ---------- */
.elevate-why {
    padding: 90px 0;
    background: #fff;
}

.elevate-section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #001a6e;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.elevate-section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 70px; height: 4px;
    background: linear-gradient(90deg, #0038b8, #facc15);
    border-radius: 2px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 18px;
    background: #f0f5ff;
    border: 1px solid rgba(0,56,184,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.why-card:hover {
    background: linear-gradient(135deg, #0038b8, #0056d2);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,56,184,0.25);
}

.why-card:hover .why-icon,
.why-card:hover h5,
.why-card:hover p {
    color: #fff;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    background: rgba(0,56,184,0.1);
    color: #0038b8;
    transition: all 0.35s ease;
}

.why-card:hover .why-icon {
    background: rgba(255,255,255,0.2);
    color: #facc15;
}

.why-card h5 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #001a6e;
    margin-bottom: 8px;
    transition: color 0.35s ease;
}

.why-card p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    transition: color 0.35s ease;
}

/* ---------- Contact CTA strip ---------- */
.elevate-contact-strip {
    background: linear-gradient(135deg, #001a6e, #0038b8);
    padding: 50px 0;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 30px;
}

.contact-strip-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #facc15;
    flex-shrink: 0;
}

.contact-strip-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.contact-strip-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: block;
    text-decoration: none;
}

.contact-strip-value:hover { color: #facc15; }

.contact-strip-divider {
    width: 2px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    align-self: center;
    flex-shrink: 0;
}

.elevate-slogan {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    font-style: italic;
    line-height: 1.35;
    text-align: center;
}

.elevate-slogan strong {
    font-weight: 900;
    color: #facc15;
    font-style: normal;
}

/* ---------- Ticker bar ---------- */
.elevate-ticker {
    background: #001a6e;
    padding: 16px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-item .dot {
    width: 6px;
    height: 6px;
    background: #facc15;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .elevate-hero::before { width: 100%; clip-path: none; }
    .elevate-hero-left    { padding: 50px 0 30px; }
    .elevate-price-bubble { right: 10px; bottom: 20px; width: 120px; height: 120px; }
    .elevate-price-bubble .price-val { font-size: 1.8rem; }
    .elevate-smart-classroom-badge { right: 0; top: 20px; }
    .contact-strip-divider { display: none; }
    .contact-strip-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 10px; }
    .future-banner-divider { display: none; }
}

@media (max-width: 767.98px) {
    .elevate-brand-name { font-size: 3.5rem; }
    .elevate-gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 180px); }
    .elevate-price-bubble { position: static; margin: 20px auto 0; }
    .elevate-slogan { font-size: 1.2rem; }
}
