/* Index Page Styles */

html, body {
    overflow: hidden;
    height: 100%;
}

/* Full Page Container */
.fullpage-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.fullpage-wrapper {
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.fullpage-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 100px 60px 60px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 80px;
    left: 60px;
    right: 60px;
    bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
}

.hero-slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.1) 70%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 40px;
    margin-top: 10vh;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.4s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translate(3px, -3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Features Bar */
.features-bar {
    position: absolute;
    bottom: 80px;
    left: 100px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-divider {
    width: 100%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 100px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow-y: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.feature-card .feature-divider {
    width: 100%;
    height: auto;
    margin: 8px 0 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
    flex: 1;
}

/* Product Showcase Section */
.showcase-section {
    position: relative;
    height: calc(100vh);
    padding: 80px 60px 20px;
    display: flex;
    flex-direction: column;
}

.showcase-main {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    max-height: calc(100vh - 100px);
}

.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 60px;
}

.showcase-content {
    max-width: 600px;
    margin-top: 10vh;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.showcase-subtitle {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 32px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px 14px 0px;
    background: transparent;
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: transparent;
    transform: translateY(-2px);
}

.learn-more-btn svg {
    width: 16px;
    height: 16px;
}

/* Newsletter Section */
.newsletter-footer-section {
    background: var(--color-white);
    padding: 80px 60px 60px;
}

.newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.newsletter h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.newsletter p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.1);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

/* Page Indicators */
.page-indicators {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-indicator.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 500px;
    }

    .hero-title {
        font-size: 52px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .showcase-title {
        font-size: 44px;
    }

    .showcase-subtitle {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 24px 40px;
    }

    .hero-slider {
        top: 60px;
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .hero-content {
        padding-left: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .features-bar {
        left: 24px;
        gap: 20px;
    }

    .feature-item {
        font-size: 12px;
    }

    .section {
        padding: 60px 24px 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase-section {
        height: calc(100vh);
        padding: 60px 24px 16px;
    }

    .showcase-overlay {
        padding: 32px 24px;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .showcase-title {
        font-size: 32px;
    }

    .showcase-subtitle {
        font-size: 24px;
    }

    .showcase-description {
        font-size: 14px;
    }

    .newsletter-footer-section {
        padding: 60px 24px 40px;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .page-indicators {
        right: 20px;
    }
}
