/* 
 * Kidza Homepage Stylesheet - Material Pink Theme Extension
 * High-Fidelity Child/School theme with Premium Aesthetics
 */

:root {
    --k-violet: #5F50F1;
    --k-violet-light: #ECE9FF;
    --k-orange: #FF5B35;
    --k-orange-hover: #E04B24;
    --k-beige: #F7F7E9;
    --k-yellow: #FFDE4D;
    --k-dark: #222222;
    --k-grey: #666666;
    
    /* Program Colors */
    --k-p-green: #E8F5E9;
    --k-p-pink: #FCE4EC;
    --k-p-blue: #E3F2FD;
    --k-p-cyan: #E0F7FA;
    
    /* Typography */
    --k-font-title: 'Fredoka', 'Quicksand', sans-serif;
    --k-font-body: 'Nunito', sans-serif;
}

/* --- Global Overrides & Helper Classes --- */
.kidza-homepage {
    font-family: var(--k-font-body);
    color: var(--k-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.kidza-homepage h1, 
.kidza-homepage h2, 
.kidza-homepage h3, 
.kidza-homepage h4, 
.kidza-homepage h5, 
.kidza-homepage h6 {
    font-family: var(--k-font-title);
    font-weight: 700;
    color: var(--k-dark);
}

.kidza-homepage .section-badge {
    display: inline-block;
    background-color: var(--k-violet-light);
    color: var(--k-violet);
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kidza-homepage .section-badge.white {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.kidza-homepage .section-title {
    font-size: 40px;
    margin-bottom: 24px;
    position: relative;
    line-height: 1.2;
}

/* Squiggly/Crayon underlines */
.kidza-homepage .underline-doodle {
    position: relative;
    display: inline-block;
}

.kidza-homepage .underline-doodle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,7 C30,2 70,8 100,5' stroke='%23FF5B35' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.kidza-homepage .underline-doodle.purple::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,7 C30,2 70,8 100,5' stroke='%235F50F1' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
}

.kidza-homepage .underline-doodle.yellow::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,5 C25,2 75,8 100,5' stroke='%23FFDE4D' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
}

/* Pill Buttons */
.k-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--k-orange);
    color: #ffffff !important;
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 91, 53, 0.2);
    text-decoration: none !important;
}

.k-btn:hover {
    background-color: var(--k-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 91, 53, 0.3);
}

.k-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.k-btn:hover i {
    transform: translateX(4px);
}

.k-btn.btn-violet {
    background-color: var(--k-violet);
    box-shadow: 0 4px 15px rgba(95, 80, 241, 0.2);
}

.k-btn.btn-violet:hover {
    background-color: #4a3be0;
    box-shadow: 0 6px 20px rgba(95, 80, 241, 0.3);
}

/* Wavy Section Dividers */
.wavy-divider {
    position: relative;
    width: 100%;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.wavy-divider.bottom-cream {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,32L80,48C160,64,320,96,480,96C640,96,800,64,960,53.3C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z' fill='%23F7F7E9'/></svg>");
    margin-top: -59px;
    z-index: 10;
}

.wavy-divider.top-white {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,32L80,48C160,64,320,96,480,96C640,96,800,64,960,53.3C1120,43,1280,53,1360,58.7L1440,64L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z' fill='%23F7F7E9'/></svg>");
    margin-bottom: -1px;
}

.wavy-divider.bottom-violet {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,64L120,58.7C240,53,480,43,720,53.3C960,64,1200,96,1320,112L1440,128L1440,120L1320,120C1200,120,960,120,720,120C480,120,240,120,120,120L0,120Z' fill='%235F50F1'/></svg>");
    margin-top: -59px;
    z-index: 10;
}

.wavy-divider.top-violet-flat {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,64L120,58.7C240,53,480,43,720,53.3C960,64,1200,96,1320,112L1440,128L1440,0L1320,0C1200,0,960,0,720,0C480,0,240,0,120,0L0,0Z' fill='%235F50F1'/></svg>");
    margin-bottom: -1px;
}

/* Floating SVG / Micro-animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-rev {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.float-item {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.float-item.reverse {
    animation: float-rev 7s ease-in-out infinite;
}

.float-item.delay-1 { animation-delay: 1s; }
.float-item.delay-2 { animation-delay: 2.5s; }

/* --- 1. Hero Section --- */
.k-hero-section {
    background-color: var(--k-beige);
    padding: 120px 0 160px;
    position: relative;
    z-index: 2;
}

.k-hero-content {
    padding-right: 30px;
}

.k-hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--k-dark);
}

.k-hero-content p {
    font-size: 18px;
    color: var(--k-grey);
    margin-bottom: 40px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.k-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--k-dark);
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    transition: color 0.3s;
}

.k-video-btn:hover {
    color: var(--k-orange);
}

.k-video-btn .play-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--k-orange);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.k-video-btn:hover .play-icon {
    background-color: var(--k-orange);
    color: #ffffff;
    transform: scale(1.08);
}

/* Hero Artworks / Collage */
.hero-image-collage {
    position: relative;
    height: 480px;
}

.hero-img-box {
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main {
    position: absolute;
    width: 280px;
    height: 380px;
    left: 40px;
    top: 20px;
    z-index: 3;
    border-radius: 120px 40px 120px 40px;
}

.hero-img-sub {
    position: absolute;
    width: 220px;
    height: 280px;
    right: 40px;
    bottom: 20px;
    z-index: 2;
    border-radius: 40px 100px 40px 100px;
}

.hero-shape-badge {
    position: absolute;
    background-color: var(--k-violet);
    color: #ffffff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    right: 180px;
    top: 0px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--k-font-title);
    font-size: 13px;
    line-height: 1.2;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: rotate(12deg);
}

.hero-shape-badge span {
    font-size: 20px;
    font-weight: 700;
}

/* --- 2. Program Categories Section --- */
.k-program-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.k-program-card {
    border-radius: 40px 15px 40px 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.k-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.04);
}

.k-program-card.green { background-color: var(--k-p-green); }
.k-program-card.pink { background-color: var(--k-p-pink); }
.k-program-card.blue { background-color: var(--k-p-blue); }
.k-program-card.cyan { background-color: var(--k-p-cyan); }

.k-program-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.k-program-card.green .k-program-icon { color: #4CAF50; }
.k-program-card.pink .k-program-icon { color: #E91E63; }
.k-program-card.blue .k-program-icon { color: #2196F3; }
.k-program-card.cyan .k-program-icon { color: #00BCD4; }

.k-program-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.k-program-card .age {
    font-size: 14px;
    font-weight: 600;
    color: var(--k-grey);
    margin-bottom: 16px;
}

.k-program-card p {
    font-size: 15px;
    color: var(--k-grey);
    margin-bottom: 24px;
    flex-grow: 1;
}

.k-program-link {
    font-family: var(--k-font-title);
    font-weight: 600;
    color: var(--k-orange);
    text-decoration: none !important;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.k-program-link:hover {
    color: var(--k-orange-hover);
}

.k-program-link i {
    transition: transform 0.2s;
}

.k-program-link:hover i {
    transform: translateX(3px);
}

/* --- 3. About Us Section --- */
.k-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.about-image-collage {
    position: relative;
    height: 480px;
}

.about-img-main {
    position: absolute;
    width: 330px;
    height: 430px;
    left: 30px;
    top: 20px;
    border-radius: 150px 150px 40px 40px;
    z-index: 2;
}

.about-badge-exp {
    position: absolute;
    background-color: #00BCD4;
    color: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 0;
    bottom: 40px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--k-font-title);
    font-size: 14px;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: rotate(-10deg);
}

.about-badge-exp span {
    font-size: 24px;
    font-weight: 700;
}

.k-about-content {
    padding-left: 40px;
}

.k-about-content p {
    font-size: 16px;
    color: var(--k-grey);
    margin-bottom: 30px;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--k-dark);
}

.about-feature-item .check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--k-violet-light);
    color: var(--k-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- 4. Why Choose Us Section --- */
.k-why-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-image-grid {
    position: relative;
    height: 480px;
}

.why-img-1 {
    position: absolute;
    width: 250px;
    height: 320px;
    left: 40px;
    top: 20px;
    border-radius: 50% 50% 30px 30px;
    z-index: 2;
}

.why-img-2 {
    position: absolute;
    width: 220px;
    height: 260px;
    right: 40px;
    bottom: 40px;
    border-radius: 30px 30px 50% 50%;
    z-index: 3;
}

.k-why-content {
    padding-right: 40px;
}

.k-why-content p {
    font-size: 16px;
    color: var(--k-grey);
    margin-bottom: 30px;
}

/* Progress Skill Bars */
.k-skill-bar {
    margin-bottom: 24px;
}

.k-skill-bar .skill-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.progress-track {
    width: 100%;
    height: 14px;
    background-color: #eeeeee;
    border-radius: 50px;
    padding: 2px;
    border: 1px dashed var(--k-grey);
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease-in-out;
}

.progress-fill.orange { background-color: var(--k-orange); }
.progress-fill.purple { background-color: var(--k-violet); }

/* --- 5. Our Classes Section (Violet BG) --- */
.k-classes-section {
    background-color: var(--k-violet);
    padding: 120px 0 160px;
    position: relative;
    z-index: 1;
}

.k-classes-section .section-title {
    color: #ffffff;
}

.class-card {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-8px);
}

.class-card.featured {
    background-color: var(--k-yellow);
    border: 1px solid var(--k-yellow);
}

.class-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.class-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .class-img-wrapper img {
    transform: scale(1.06);
}

.class-date-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: var(--k-violet);
    color: #ffffff;
    font-family: var(--k-font-title);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.class-card.featured .class-date-badge {
    background-color: var(--k-orange);
}

.class-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.class-location {
    font-size: 14px;
    color: var(--k-grey);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.class-card.featured .class-location {
    color: var(--k-dark);
}

.class-body h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.class-card.featured .class-body h3 {
    color: var(--k-dark);
}

.class-divider {
    border-top: 1px dotted var(--k-orange);
    margin: 20px 0;
}

.class-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.class-ticket-btn {
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 14px;
    color: var(--k-orange);
    background: none;
    border: 2px solid var(--k-orange);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.class-ticket-btn:hover {
    background-color: var(--k-orange);
    color: #ffffff;
}

.class-card.featured .class-ticket-btn {
    background-color: var(--k-orange);
    color: #ffffff;
    border-color: var(--k-orange);
    box-shadow: 0 4px 10px rgba(255, 91, 53, 0.2);
}

.class-card.featured .class-ticket-btn:hover {
    background-color: var(--k-orange-hover);
    border-color: var(--k-orange-hover);
}

.class-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFC107;
    font-size: 12px;
}

.class-rating span {
    color: var(--k-grey);
    margin-left: 4px;
    font-size: 13px;
}

.class-card.featured .class-rating span {
    color: var(--k-dark);
}

/* --- 6. Our Teachers Section --- */
.k-teachers-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.teacher-card {
    text-align: center;
    margin-bottom: 40px;
}

.teacher-img-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 24px;
    border-radius: 50%;
    z-index: 1;
}

/* Circular backdrops & loops */
.teacher-img-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    border: 3px dashed var(--k-orange);
    transform: rotate(0deg);
    transition: transform 10s linear infinite;
    z-index: -1;
}

.teacher-card:hover .teacher-img-wrapper::before {
    transform: rotate(360deg);
}

.teacher-img-wrapper .teacher-circle {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    border-radius: 50%;
    background-color: var(--k-violet-light);
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.teacher-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.teacher-card:hover .teacher-circle img {
    transform: scale(1.08);
}

.teacher-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.teacher-card p {
    font-size: 14px;
    color: var(--k-grey);
    font-weight: 500;
}

/* --- 7. Counter Banner Section --- */
.k-counter-section {
    background-color: var(--k-violet);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: #ffffff;
    position: relative;
    padding: 10px 0;
}

.counter-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    border-right: 1px dotted rgba(255,255,255,0.4);
}

.col-md-3:last-child .counter-item::after {
    display: none;
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--k-yellow);
}

.counter-num {
    font-family: var(--k-font-title);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.counter-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* --- 8. Session Times Banner --- */
.k-session-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.session-container {
    background-color: var(--k-yellow);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.session-left {
    padding-right: 30px;
}

.session-right {
    padding-left: 30px;
    border-left: 2px dotted rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.time-row {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.time-row:hover {
    transform: translateX(6px);
}

.time-row .session-name {
    font-family: var(--k-font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--k-violet);
}

.time-row .session-time {
    font-family: var(--k-font-title);
    font-weight: 500;
    font-size: 15px;
    color: var(--k-grey);
}

/* --- 9. Parent Testimonials Section --- */
.k-testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.testimonial-card {
    background-color: #ffffff;
    border: 3px solid var(--k-dark);
    border-radius: 30px;
    padding: 40px 30px 30px;
    margin-top: 30px;
    position: relative;
    box-shadow: 6px 6px 0px var(--k-dark);
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.testimonial-avatar {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 30px;
    top: -35px;
    border: 3px solid var(--k-dark);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    background-color: #ffffff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    display: flex;
    color: #FFC107;
    margin-bottom: 20px;
    align-self: flex-end;
    font-size: 12px;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--k-grey);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-divider {
    border-top: 1px dotted var(--k-grey);
    margin: 16px 0;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--k-grey);
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 50px;
    color: var(--k-violet-light);
    opacity: 0.7;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .k-hero-content h1 { font-size: 46px; }
    .k-about-content { padding-left: 0; }
    .k-why-content { padding-right: 0; }
}

@media (max-width: 991px) {
    .k-hero-section { padding: 80px 0 100px; }
    .k-hero-content { margin-bottom: 60px; padding-right: 0; text-align: center; }
    .hero-btn-group { justify-content: center; }
    .hero-image-collage { max-width: 500px; margin: 0 auto; }
    
    .about-image-collage { max-width: 400px; margin: 0 auto 50px; }
    .why-image-grid { max-width: 400px; margin: 0 auto 50px; }
    
    .session-container { padding: 40px 30px; }
    .session-left { padding-right: 0; margin-bottom: 40px; text-align: center; }
    .session-right { padding-left: 0; border-left: none; border-top: 2px dotted rgba(0,0,0,0.15); padding-top: 40px; }
    
    .counter-item::after { display: none; }
    .counter-item { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .k-hero-content h1 { font-size: 38px; }
    .section-title { font-size: 32px; }
    .about-features-list { grid-template-columns: 1fr; }
    .testimonial-card { margin-bottom: 40px; }
}

@media (max-width: 576px) {
    .k-hero-content h1 { font-size: 32px; }
    .hero-img-main { width: 200px; height: 280px; left: 10px; }
    .hero-img-sub { width: 160px; height: 220px; right: 10px; }
    .hero-shape-badge { width: 90px; height: 90px; right: 120px; font-size: 11px; }
    .hero-shape-badge span { font-size: 16px; }
}
