/* CSS 분산 관�?- 공통 ?��???(Global) */

:root {
    /* Colors */
    --primary: #FF7242;
    --primary-light: #FF8A65;
    --primary-dark: #E6C200;
    /* Bee theme legacy */
    --secondary: #1A1A1A;
    --accent: #FF6B6B;
    --text-main: #333333;
    --text-light: #777777;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --gradient-text: linear-gradient(135deg, #FFD700 0%, #FFAA00 100%);
    --font-family: 'NanumSquareRound', 'Noto Sans KR', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --header-height: 80px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    min-width: 1400px;
    overflow-x: auto;
}

html {
    scroll-behavior: smooth;
}


.snap-section {
    width: 100%;
    min-height: 100vh;
    /* Changed from fixed 100vh to min-height for flexibility */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Specific heights for the 3 main sections */
.program-section.snap-section {
    height: 100vh;
    overflow: hidden;
}

/* Footer Modern Layout */
.footer-snap {
    background: #333;
    color: #eee;
    padding: 60px 0 40px;
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Helpers */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

.section {
    padding: 140px 0;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

/* Typography Utility */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    display: block;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 45px;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-top: 45px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
}

/* Header Styles */
.header-semantic {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.85) !important;
    /* Slightly more transparent for better blur visibility */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content-inner {
    width: 100%;
    max-width: 1750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.header-top-bar {
    background: #FF7242;
    height: 35px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2001;
}

.header-top-bar .header-content-inner {
    justify-content: flex-end;
}

.top-nav {
    display: flex;
    gap: 5px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.top-nav a:hover {
    background: white;
    color: #FF7242;
}

.header-main-bar {
    height: 96px;
    background: #fff;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}

.header-main-bar .header-content-inner {
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #FF7F50;
    transform: scale(1.1);
}

.nav-link.active {
    color: #FF7242;
}

.header-right {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.auth-btn i {
    font-size: 1.6rem;
    color: #FF7242;
}

.auth-btn:hover {
    color: #FF7F50;
}

.auth-bubble {
    position: absolute;
    bottom: -43px;
    right: 0;
    background: #FF7242;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    animation: bounceBubble 2s infinite ease-in-out;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 2002;
}

.auth-bubble.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes bounceBubble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.auth-bubble::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    border-bottom: 6px solid #FF7242;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.nav-item-wrapper {
    position: relative;
    padding: 10px 0;
}

.mega-menu {
    position: fixed;
    top: 131px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
    z-index: 1001;
}

.nav-item-wrapper:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-menu-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.mega-menu-inner a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.mega-menu-inner a:hover {
    color: #FF7F50;
}

.mega-menu-inner .divider {
    color: #ddd;
}

/* Footer */
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-info {
    margin-left: -50px;
}

.footer-logo-img img {
    height: 55px;
    margin-bottom: 25px;
}

.contact-details p {
    margin: 3px 0;
    color: #999;
    line-height: 1.4;
    font-size: 0.85rem;
    display: flex;
}

.contact-details .label {
    min-width: 55px;
    font-weight: 700;
    color: #eee;
}

.contact-details .label::after {
    content: ": ";
}

.footer-divider {
    width: 320px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0 15px;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
}

.footer-nav-col,
.footer-legal-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col a,
.footer-legal-col a {
    color: #ccc;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-nav-col a:hover,
.footer-legal-col a:hover {
    color: #fff;
}

.footer-nav-header {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-combined-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-links a {
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-legal-links .divider {
    color: #444;
    font-size: 0.8rem;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform 0.30s;
    text-transform: lowercase;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.kakao {
    background-color: #FEE500;
    color: #3C1E1E;
}

.social-icon.blog {
    background-color: #03C75A;
    font-size: 0.65rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* @media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .social-icons-col {
        grid-column: span 3;
        margin-top: 20px;
    }
} */

/* @media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-nav-col,
    .footer-legal-col,
    .social-icons-col,
    .social-icons-row {
        justify-content: center;
        align-items: center;
    }

    .social-icons-col {
        grid-column: span 1;
    }
} */

/* Animations & Utils */
.scroll-reveal-up,
.scroll-reveal-left,
.scroll-reveal-right,
.fade-in-up {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-reveal-up {
    transform: translateY(50px);
}

.scroll-reveal-left {
    transform: translateX(-50px);
}

.scroll-reveal-right {
    transform: translateX(50px);
}

.active-reveal {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 5px 15px rgba(255, 114, 66, 0.3);
}

/* Fullpage Dots Navigation */
.fullpage-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3000;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dot:hover::after {
    opacity: 1;
    visibility: visible;
    right: 30px;
}

.dot:hover {
    background: var(--primary-light);
}

/* Sticky Talk Button Adjustment for Fullpage */
.sticky-talk-btn {
    position: fixed;
    bottom: 30px;
    right: 40px;
    /* Moved to right as requested */
    width: 160px;
    /* Increased size from 120px for better visibility */
    height: 160px;
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.sticky-talk-btn:hover {
    transform: scale(1.1);
}

.sticky-talk-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Login Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    /* Reduced for performance */
    -webkit-backdrop-filter: blur(5px);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    will-change: opacity, visibility;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-container {
    width: 95%;
    max-width: 1000px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    min-height: 600px;
    position: relative;
    transform: translateY(30px) scale(0.95) translateZ(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.modal-overlay.active .login-modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

/* Copied from login.html visuals */
.login-visual {
    flex: 0.75;
    background: linear-gradient(135deg, #FF7242 0%, #FF9F43 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.login-visual::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.visual-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 120px;
    /* Adjusted size for narrower column */
    z-index: 10;
}

.visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 60px;
}

.visual-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.visual-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.visual-mascot {
    width: 100%;
    max-width: 495px;
    /* Increased 10% from 450px */
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    margin-top: 20px;
    margin-left: -40px;
    /* Shifting 10px to the right as requested */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Login Form Styles */
.login-form-container {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #888;
    font-size: 1rem;
}

.auth-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: #FF7242;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.form-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-input:focus {
    outline: none;
    border-color: #FF7242;
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 114, 66, 0.1);
}

.form-input:focus+i {
    color: #FF7242;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #FF7242;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(255, 114, 66, 0.2);
}

.submit-btn:hover {
    background: #FF5E20;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 114, 66, 0.3);
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-text {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
}

.social-text::before,
.social-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.social-text::before {
    left: 0;
}

.social-text::after {
    right: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}

.kakao {
    background: #ffe812;
    color: #3c1e1e;
}

.naver {
    background: #03c75a;
    font-weight: 900;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.google {
    background: #fff;
    border: 1px solid #eee;
    color: #333;
}

.form-view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-view.active {
    display: block;
}

/* @media (max-width: 900px) {
    .login-modal-container {
        flex-direction: column;
        width: 90%;
        min-height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .login-visual {
        padding: 30px;
        min-height: 200px;
    }

    .visual-mascot {
        max-width: 200px;
        margin-top: 10px;
    }

    .login-form-container {
        padding: 30px;
    }

    .visual-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
} */

/* --- Mobile Navigation --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2005;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff !important;
    z-index: 2004;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    /* Darker background for "black blur" effect */
    z-index: 2003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    /* Stronger background blur when menu is open */
    -webkit-backdrop-filter: blur(20px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.m-nav-group {
    margin-bottom: 30px;
}

.m-nav-title {
    font-size: 0.9rem;
    color: #999;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-nav-link {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

/* Hide About link on mobile */
.m-nav-link[href*="about.html"] {
    display: none !important;
}

.m-nav-link:hover {
    color: var(--primary);
}

.m-sub-link {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
    text-decoration: none;
    font-weight: 600;
}

.m-sub-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
}

.m-sub-link:hover {
    color: var(--primary);
}

.m-sub-link:hover::before {
    background: var(--primary);
}

.m-auth-btn {
    margin-top: auto;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
}

@media (max-width: 1024px) {

    .header-nav,
    .header-top-bar,
    .header-right .auth-btn,
    .header-right .auth-bubble {
        display: none !important;
    }

    .header-main-bar {
        height: 70px;
    }

    .header-logo {
        height: 40px;
        /* Slightly larger than 35px for better visibility */
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-content-inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1024px) {

    /* Critical Fix: Remove the hardcoded minimum width that forces desktop size on mobile */
    body {
        min-width: 0 !important;
        overflow-x: hidden;
    }

    .container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 15px !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 1024px) {

    /* --- STICKY TALK BUTTON ADJUSTMENTS --- */
    .sticky-talk-btn {
        width: 110px;
        /* Increased by 10% from 100px */
        height: 110px;
        right: 5px;
        /* Moved closer to the right edge (was 15px) */
        bottom: 15px;
        /* Moved closer to the bottom edge */
    }

    /* --- UNIFIED MOBILE FOOTER --- */
    .footer-grid {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 50px !important;
    }

    .footer-info {
        margin-left: 0 !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-img img {
        margin: 0 auto 25px !important;
        height: 50px !important;
    }

    .contact-details p {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 25px !important;
    }

    .contact-details .label {
        color: var(--primary) !important;
        min-width: 0 !important;
        font-size: 1.15rem !important;
        margin-bottom: 2px;
    }

    .contact-details .label::after {
        content: "" !important;
    }

    .footer-divider {
        width: 100% !important;
        max-width: 300px !important;
        margin: 20px auto !important;
    }

    .footer-combined-col {
        align-items: center !important;
        width: 100% !important;
    }

    .footer-legal-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-bottom: 35px !important;
    }

    .footer-legal-links .divider {
        display: none !important;
    }

    .footer-nav-header.mobile-only {
        display: block !important;
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 15px !important;
        color: #fff !important;
    }

    .footer-legal-links a {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }

    .social-icons-row {
        justify-content: center !important;
        gap: 15px !important;
    }

    .social-icon {
        width: 44px !important;
        height: 44px !important;
    }
}

/* --- Premium Text-Based Banners --- */
.page-banner {
    width: 100%;
    height: 380px;
    margin-top: 131px; /* Header Height (35+96) */
    background: linear-gradient(135deg, #FFF8F5 0%, #FFF0EB 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-banner::after {
    content: 'Reading Bee';
    position: absolute;
    right: -50px;
    bottom: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 114, 66, 0.03);
    font-family: 'Outfit', sans-serif;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.banner-content {
    max-width: 800px;
}

.banner-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 114, 66, 0.1);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
    word-break: keep-all;
}

.banner-title span {
    color: var(--primary);
}

.banner-desc {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
}

/* Subtle Animated Blobs for Premium Feel */
.banner-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 114, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(40px);
}

.blob-1 { top: -100px; right: 10%; animation: floatBlob 10s infinite alternate; }
.blob-2 { bottom: -150px; left: 5%; animation: floatBlob 15s infinite alternate-reverse; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

@media (max-width: 1024px) {
    .page-banner {
        height: auto;
        padding: 80px 0;
        margin-top: 0;
        text-align: center;
    }
    .banner-title { font-size: 2.5rem; }
    .banner-desc { font-size: 1.1rem; }
}