/* Cultioo Business - 3-Page Scroll Layout */
/* All Black Design - No Blue */

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

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
    max-width: 100%;
}

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;
    scroll-snap-type: y mandatory;
}

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;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    padding: 100px 40px 60px;
    overflow-x: hidden;
}

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

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

.mega-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(5rem, 18vw, 15rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    transition: opacity 0.3s ease, font-family 0s;
    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;
}

.scroll-arrow {
    position: absolute;
    bottom: 60px;
    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);
    }
}

/* ==================== PAGE 2 - FEATURES ==================== */
.page-2 {
    background: #000000;
    padding-bottom: 100px;
}

.split-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.split-left {
    padding-right: 40px;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-desc {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

.split-right {
    padding-left: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(60px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.feature-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.15);
    min-width: 80px;
    transition: none;
    pointer-events: none;
}

.feature-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 700;
    transition: none;
}

.feature-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: none;
}

/* ==================== PAGE 3 - FORM ==================== */
.page-3 {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding-top: 120px;
    padding-bottom: 120px;
}

.form-container {
    width: 100%;
    max-width: 600px;
    padding: clamp(28px, 6vw, 60px);
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.form-container:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.06);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    font-weight: 300;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#email-message {
    text-align: center;
    font-size: 1rem;
    min-height: 28px;
    margin-top: 12px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    resize: vertical;
}

.input-group input:hover,
.input-group select:hover,
.input-group textarea:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.input-group select option {
    background: #000000;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 12px;
}

/* Country Autocomplete */
.country-autocomplete {
    position: relative;
}

.country-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 4px 0 0 0;
    padding: 0;
    list-style: none;
    z-index: 100;
    border-radius: 25px;
    display: none;
    max-width: 100%;
    box-sizing: border-box;
}

.country-list li {
    padding: 16px 24px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.country-list li:hover {
    background: rgba(255, 255, 255, 0.08);
}

#location.invalid {
    border-color: #ff3b30;
}

/* Terms Checkbox */
.terms-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: none;
    margin-top: 8px;
    transition: background 0.3s ease;
}

.terms-checkbox-container:hover {
    background: rgba(255, 255, 255, 0.04);
}

.terms-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-checkbox:checked {
    background: #ffffff;
}

.terms-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.terms-checkbox:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.terms-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
    transition: color 0.3s ease;
}

.terms-checkbox-container:hover .terms-label {
    color: rgba(255, 255, 255, 0.7);
}

.terms-label a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.terms-label a:hover {
    border-bottom-color: #ffffff;
}

.terms-error {
    color: #ff3b30;
    font-size: 0.85rem;
    text-align: center;
    display: none;
}

/* Submit Button */
button[type="submit"],
button[type="button"] {
    width: 100%;
    box-sizing: border-box;
    padding: 20px clamp(20px, 5vw, 48px);
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

button[type="submit"]::before,
button[type="button"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover,
button[type="button"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.25);
}

button[type="submit"]:hover::before,
button[type="button"]:hover::before {
    width: 300px;
    height: 300px;
}

button[type="submit"]:active,
button[type="button"]:active {
    transform: translateY(-1px);
}

#business-message {
    text-align: center;
    font-size: 0.9rem;
    min-height: 24px;
    margin-top: 8px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #fff;
    color: #000;
    padding: 48px 0 24px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 48px;
    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(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    margin: 0;
}

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

.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: #000;
    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 #e0e0e0;
    border-radius: 25px;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg fill=\"black\" 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: #000;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

#lang-select:hover {
    background-color: #e0e0e0;
}

#lang-select:focus {
    border-color: #000;
    background-color: #fff;
}

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

#lang-select option {
    background: #fff;
    color: #000;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .split-left,
    .split-right {
        padding: 0;
        text-align: center;
    }

    .feature-item {
        transform: translateY(40px);
    }

    .feature-item.visible {
        transform: translateY(0);
    }

    .feature-item:hover {
        transform: translateY(-4px);
    }
}

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

    .header {
        padding: 20px 24px;
    }

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

    .mega-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .section-heading {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .form-container {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .input-row {
        flex-wrap: wrap;
    }

    .input-row .input-group {
        min-width: 0;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-number {
        font-size: 1.2rem;
        min-width: 40px;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .scroll-arrow {
        bottom: 40px;
    }

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

    .footer-links {
        gap: 20px;
    }

    .site-footer {
        padding: 40px 24px 30px;
    }
}

@media (max-width: 480px) {
    .mega-title {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

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

    .input-group input,
    .input-group select {
        padding: 14px 16px;
    }

    button[type="submit"] {
        padding: 16px 28px;
    }
}

/* Scrollbar Styling */
::-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);
}
