/* ================================================================
   IT COURSES IN KERALA — page-specific additions
   Builds on top of courses.css (arc-hero glow, category-hub,
   comparison-section, roadmap, skill-cloud, course-grid-v3, faq)
   and enquiry-form.css (bbx-ef-* lead form). Only the bits that
   don't already exist there live here.
   ================================================================ */

/* ---- Simplified hero (no carousel): tuned spacing on the reused arc-hero glow ----
   The breadcrumb used to live in its own flat-black bar above the hero, which cut
   the ambient glow off partway down the page (a visible seam under the navbar).
   It now lives inside .itk-hero itself so the same glow runs underneath it,
   unbroken, all the way to the top of the section.
   The ::before/::after ambient blobs in courses.css were also positioned assuming
   the arc carousel pushed hero copy ~300px further down. Without the carousel,
   that left the orange blob sitting as a tight hotspot directly on the badge
   instead of a soft wash behind the whole hero. Re-centre and enlarge it here. */
.itk-hero {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 100px;
}

.itk-hero::before {
    width: 900px;
    height: 900px;
    top: -260px;
    opacity: 0.7;
}

.itk-hero::after {
    bottom: -40px;
}

.itk-breadcrumb-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 44px;
    position: relative;
    z-index: 10;
}

.itk-breadcrumb-row a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.itk-breadcrumb-row a:hover {
    color: var(--course-primary);
}

.itk-breadcrumb-row span[aria-current] {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.itk-hero .hero-badge {
    margin-top: 0;
}

.itk-hero .arc-hero-text p {
    max-width: 660px;
}

/* Rating row under the hero copy */
.itk-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.itk-rating-row .itk-stars {
    color: #ffb020;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.itk-rating-row strong {
    color: #fff;
}

/* Hero CTA buttons */
.itk-hero-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.itk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    border: none;
}

.itk-btn--primary {
    background: linear-gradient(135deg, var(--course-primary), #ff8c33);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.itk-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 107, 0, 0.42);
    color: #fff;
}

.itk-btn--outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.itk-btn--outline:hover {
    border-color: var(--course-primary);
    color: var(--course-primary);
    transform: translateY(-3px);
}

/* Generic centered section heading, used outside .explore-header */
.itk-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.itk-section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.itk-section-head p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Category-hub grid wrapper (component CSS already in courses.css, just needs a 3/4-col grid) */
.itk-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.itk-hub-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

/* Link back to the full catalog, sits under the Explore Courses header */
.itk-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--course-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.itk-catalog-link:hover {
    color: #ff8c33;
}

/* Mentors CTA strip (lightweight substitute for a full team grid) */
.itk-mentor-strip {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 30px;
}

.itk-mentor-strip p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    line-height: 1.7;
}

/* Location strip beside the enquiry form */
.itk-location-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 640px;
    margin: 26px auto 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.itk-location-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.itk-location-strip i {
    color: var(--course-primary);
}

/* ---- Premium 1-on-1 Personalised Training ---- */
.itk-1on1 {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.itk-1on1-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.itk-1on1-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
}

.itk-1on1-content h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin: 16px 0 18px;
    line-height: 1.25;
}

.itk-1on1-content p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.itk-1on1-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.itk-1on1-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.itk-1on1-features i {
    color: var(--course-primary);
}

.itk-1on1-panel {
    background: #141414;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 22px;
    padding: 34px 28px;
    text-align: center;
}

.itk-1on1-panel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--course-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.itk-1on1-panel h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.itk-1on1-panel-sub {
    display: block;
    color: var(--course-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.itk-1on1-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.itk-1on1-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

.itk-1on1-panel-list i {
    color: var(--course-primary);
    margin-top: 3px;
}

.itk-btn--full {
    width: 100%;
    justify-content: center;
}

.itk-1on1-panel-note {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .itk-1on1-inner {
        grid-template-columns: 1fr;
        padding: 36px 26px;
    }

    .itk-1on1-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .itk-1on1 {
        padding: 70px 0;
    }

    .itk-1on1-inner {
        padding: 28px 20px;
        border-radius: 22px;
    }
}

/* Small gaps left by the revived (previously unused) courses.css components */
.step-card p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.skill-cloud-section {
    padding: 90px 0;
}

.hub-card p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

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

@media (max-width: 576px) {
    .itk-hero {
        padding-top: 110px;
    }

    .itk-breadcrumb-row {
        margin-bottom: 28px;
    }

    .itk-hub-grid,
    .itk-hub-grid--3 {
        grid-template-columns: 1fr;
    }

    .itk-btn {
        padding: 13px 24px;
        font-size: 0.88rem;
    }

    .itk-mentor-strip {
        padding: 28px 20px;
    }
}
