/* ==========================================================================
   LKG PREMIUM V8 DESIGN - Clean Institutional High-Impact
   ========================================================================== */

:root {
    --lkg-primary: #3498db; /* Focus Blue */
    --lkg-secondary: #e67e22; /* Vibrant Orange */
    --lkg-accent: #2ecc71; /* Success Green */
    --lkg-soft: rgba(52, 152, 219, 0.08); /* Soft blue tint */
    --lkg-glass: rgba(255, 255, 255, 0.95);
    --lkg-dark: #1f2235;
    --lkg-border: #f0f0f0;
}

/* --- SECTION WRAPPERS --- */
.lkg-v8-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.lkg-v8-section--alt {
    background: #fbfbfc;
    padding: 60px 0 60px;
}

/* --- V8 HERO COLLAGE --- */
.v8-collage-box {
    position: relative;
    z-index: 1;
}

.v8-image-main {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border: 15px solid #fff;
    transition: all 0.5s ease;
}

.v8-image-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.18);
}

.v8-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.v8-badge-float {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--lkg-primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
    z-index: 3;
    animation: bounceSlow 4s infinite ease-in-out;
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- V8 TEXT CONTENT --- */
.v8-content-box {
    padding-left: 60px;
}

.v8-pre-title {
    display: inline-block;
    padding: 10px 25px;
    background: var(--lkg-soft);
    color: var(--lkg-primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.v8-main-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--lkg-dark);
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 35px;
}

.v8-main-title span {
    color: var(--lkg-secondary);
}

.v8-lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-weight: 600;
    margin-bottom: 30px;
}

.v8-main-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* --- V8 FOCUS CARDS GRID --- */
.v8-focus-header {
    text-align: center;
    margin-bottom: 70px;
}

.v8-focus-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid var(--lkg-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.v8-focus-card:hover {
    transform: translateY(-15px);
    border-color: var(--lkg-primary);
    box-shadow: 0 30px 70px rgba(52, 152, 219, 0.12);
}

.v8-fc-icon {
    width: 70px;
    height: 70px;
    background: var(--lkg-soft);
    color: var(--lkg-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.v8-focus-card:hover .v8-fc-icon {
    background: var(--lkg-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.v8-fc-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    color: var(--lkg-dark);
    margin-bottom: 20px;
}

.v8-fc-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Focus Card Variations */
.v8-fc--orange .v8-fc-icon {
    background: rgba(230, 126, 34, 0.08);
    color: var(--lkg-secondary);
}

.v8-fc--orange:hover {
    border-color: var(--lkg-secondary);
    box-shadow: 0 30px 70px rgba(230, 126, 34, 0.12);
}

.v8-fc--orange:hover .v8-fc-icon {
    background: var(--lkg-secondary);
}

.v8-fc--green .v8-fc-icon {
    background: rgba(46, 204, 113, 0.08);
    color: var(--lkg-accent);
}

.v8-fc--green:hover {
    border-color: var(--lkg-accent);
    box-shadow: 0 30px 70px rgba(46, 204, 113, 0.12);
}

.v8-fc--green:hover .v8-fc-icon {
    background: var(--lkg-accent);
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 1400px) {
    .v8-main-title { font-size: 48px; }
    .v8-content-box { padding-left: 30px; }
}

@media (max-width: 1199px) {
    .v8-image-main img { height: 500px; }
    .v8-content-box { padding-left: 0; margin-top: 80px; }
    .v8-main-title { font-size: 42px; }
}

@media (max-width: 767px) {
    .lkg-v8-section { padding: 80px 0; }
    .v8-main-title { font-size: 34px; }
    .v8-lead-text { font-size: 18px; }
    .v8-image-main { border-radius: 40px; border-width: 8px; }
    .v8-focus-card { padding: 40px 30px; }
}

/* --- V8 LEARNING TIMELINE --- */
.v8-timeline-wrap {
    position: relative;
    padding: 40px 0;
}

.v8-timeline-wrap::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--lkg-border);
}

.v8-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.v8-timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid var(--lkg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lkg-primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.v8-timeline-item:hover .v8-timeline-dot {
    background: var(--lkg-primary);
    color: #fff;
    transform: scale(1.1);
}

.v8-timeline-content h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--lkg-dark);
    margin-bottom: 10px;
    font-family: 'Fredoka', sans-serif;
}

.v8-timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* --- V8 GLASS QUOTE --- */
.v8-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lkg-primary), var(--lkg-secondary));
    position: relative;
}

.v8-quote-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.v8-quote-card i {
    font-size: 40px;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 30px;
}

.v8-quote-card blockquote {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    font-family: 'Fredoka', sans-serif;
    margin: 0 0 30px;
}

.v8-quote-author {
    color: rgba(255, 255, 255, 0.9);
}

.v8-quote-author h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.v8-quote-author span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

