/* Cultioo Help - Black Design with Splash Screen */

/* Hide all scrollbars globally */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header:hover h1 {
    letter-spacing: 0.02em;
}

.header .big {
    color: #ffffff;
}

.header .bite {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* ==================== PAGE SECTIONS ==================== */
.page {
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px 60px;
    overflow: hidden;
}

/* ==================== PAGE 1 - SPLASH SCREEN ==================== */
.page-1 {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    overflow: visible;
}

.big-text-container {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 60px;
}

.mega-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.mega-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 48px 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
    will-change: transform, opacity;
}

.choice-card:nth-child(1) { animation-delay: 0.2s; }
.choice-card:nth-child(2) { animation-delay: 0.4s; }
.choice-card:nth-child(3) { animation-delay: 0.6s; }

.choice-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.choice-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.choice-card:hover .choice-number {
    color: rgba(255, 255, 255, 0.3);
}

.choice-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.choice-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.scroll-arrow {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
    animation: none;
}

.scroll-arrow:hover svg {
    color: rgba(255, 255, 255, 1);
}

.scroll-arrow:hover span {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow svg {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CONTENT PAGES ==================== */
.page-content {
    background: #000000;
    padding: 120px 40px 60px;
    align-items: flex-start;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.back-to-home {
    position: fixed;
    top: 140px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #ffffff;
    border: none;
    border-radius: 30px;
    color: #000000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out 0.3s forwards;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-to-home:hover {
    background: #f0f0f0;
    color: #000000;
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.back-to-home:active {
    transform: translateX(-8px) scale(0.98);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.back-to-home svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    stroke: #000000;
}

.back-to-home:hover svg {
    transform: translateX(-4px);
}

.content-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.page-content::-webkit-scrollbar {
    width: 8px;
}

.page-content::-webkit-scrollbar-track {
    background: #000000;
}

.page-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

.page-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.content-section {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

.content-section h1 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 25px;
    margin-top: 40px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 25px;
}

.content-section > p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1.2em;
}

/* Category headers */
.category-header {
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header h3 {
    margin: 0;
    font-size: 1.6em;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* FAQ items */
.faq-item {
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: none;
}

.faq-question {
    background: transparent;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-answer.active {
    padding: 0 0 24px 0;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 1.05rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 48px 0 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    margin: 0;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-lang {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-lang label {
    font-family: 'Poppins', sans-serif;
    margin-right: 12px;
    font-weight: 500;
    color: #ffffff;
    font-size: 0.875rem;
}

#lang-select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05) url('data:image/svg+xml;utf8,<svg fill="white" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #ffffff;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

#lang-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

#lang-select:focus {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

#lang-select::-ms-expand {
    display: none;
}

#lang-select option {
    background: #000000;
    color: #ffffff;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .choice-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .page {
        padding: 70px 16px 30px;
    }

    .page-content {
        padding: 90px 16px 30px;
    }

    .header {
        padding: 12px 16px;
    }

    .header h1 {
        font-size: 1.2em;
    }

    .back-to-home {
        top: 90px;
        left: 16px;
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 25px;
        animation: slideInLeft 0.5s ease-out 0.2s forwards;
        box-shadow: 0 3px 15px rgba(255, 255, 255, 0.15);
    }

    .back-to-home:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    }

    .back-to-home span {
        display: inline;
    }

    .back-to-home svg {
        width: 18px;
        height: 18px;
    }

    .mega-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        margin-bottom: 20px;
    }

    .mega-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .big-text-container {
        margin-bottom: 40px;
    }

    .choice-cards {
        gap: 14px;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 28px 18px;
    }

    .choice-number {
        font-size: 2.5rem;
        margin-bottom: 14px;
    }

    .choice-card h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .choice-card p {
        font-size: 0.9rem;
    }

    .content-section h1 {
        font-size: 1.8em;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .content-section > p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .category-header {
        margin-top: 35px;
        margin-bottom: 16px;
    }

    .category-header h3 {
        font-size: 1.2em;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 0;
        padding-right: 36px;
    }

    .faq-question::after {
        font-size: 1.5em;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-answer.active {
        padding: 0 0 18px 0;
    }

    .scroll-arrow {
        bottom: 25px;
    }

    .scroll-arrow svg {
        width: 44px;
        height: 44px;
    }

    .scroll-arrow span {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .content-wrapper {
        padding: 0;
        padding-bottom: 40px;
    }

    .footer-links {
        gap: 24px;
        flex-direction: row;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .site-footer {
        padding: 32px 16px 16px 16px;
    }

    .footer-copy {
        font-size: 0.7rem;
        margin-top: 20px;
    }

    .footer-lang {
        margin: 20px 0;
    }

    .footer-lang label {
        font-size: 0.8rem;
    }

    #lang-select {
        font-size: 0.8rem;
        padding: 6px 30px 6px 12px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .page {
        padding: 60px 12px 20px;
    }

    .page-content {
        padding: 80px 12px 20px;
    }

    .header {
        padding: 10px 12px;
    }

    .header h1 {
        font-size: 1.1em;
    }

    .back-to-home {
        top: 75px;
        left: 12px;
        padding: 10px 16px;
        font-size: 0.8rem;
        animation: slideInLeft 0.5s ease-out 0.2s forwards;
    }

    .back-to-home svg {
        width: 16px;
        height: 16px;
    }

    .back-to-home span {
        display: inline;
    }

    .mega-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        margin-bottom: 16px;
    }

    .mega-subtitle {
        font-size: 0.75rem;
    }

    .big-text-container {
        margin-bottom: 30px;
    }

    .choice-card {
        padding: 24px 16px;
    }

    .choice-number {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .choice-card h2 {
        font-size: 1.2rem;
    }

    .choice-card p {
        font-size: 0.85rem;
    }

    .content-section h1 {
        font-size: 1.6em;
    }

    .category-header h3 {
        font-size: 1.1em;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 16px 0;
        padding-right: 32px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .scroll-arrow {
        bottom: 20px;
    }

    .scroll-arrow svg {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow span {
        font-size: 0.65rem;
    }

    .content-wrapper {
        padding: 0;
        padding-bottom: 30px;
    }
}

/* Scrollbar Styling for desktop browsers that show it */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
