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

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Lexend, sans-serif';
    font-style: normal;
    line-height: 2;
    color: #333;
    letter-spacing: 2px;
}

.section {
    /* min-height: 70vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.75em 1.25em;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

h1 {
    font-size: 1.7rem;
    /* margin-bottom: 1.25em; */
    font-weight: 700;
    letter-spacing: 0.125em;
    color: #333;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25em;
    font-weight: 700;
    letter-spacing: 0.0625em;
    color: #333;
}

p {
    font-size: 1rem;
    margin-bottom: 1.875em;
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #555;
}

code {
    font-size: .9rem;
}

.btn {
    display: inline-block;
    padding: 0.9375em 2.5em;
    background: #39767E;
    border: 2px solid rgba(0, 0, 0, 0.9);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: 2px;
}

    .btn:hover {
        background: rgba(190, 189, 189, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* Section 1 - Hero with image background */
.section-1 {
    background: url('/images/bg-section-1.avif') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .section-1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
        pointer-events: none;
    }

/* Section 2 - White glossy */
.section-2 {
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
}

    .section-2::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
        animation: float 20s infinite ease-in-out;
    }

/* Section 3 - White glossy */
.section-3 {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

    .section-3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
        animation: shimmer 3s infinite;
    }

/* Section 4 - White glossy */
.section-4 {
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
}

    .section-4::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
        animation: pulse 4s infinite ease-in-out;
    }

/* Section 5 - White glossy */
.section-5 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

    .section-5::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: conic-gradient(from 180deg at 50% 50%, rgba(255, 255, 255, 0.4) 0deg, transparent 60deg, rgba(255, 255, 255, 0.4) 120deg, transparent 180deg, rgba(255, 255, 255, 0.4) 240deg, transparent 300deg, rgba(255, 255, 255, 0.4) 360deg);
        animation: rotate 10s linear infinite;
    }

/* Section 6 - White glossy */
.section-6 {
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
}

    .section-6::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
        animation: float 15s infinite ease-in-out alternate;
    }

/* Section 7 - White glossy */
.section-7 {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

    .section-7::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 50%, rgba(255, 255, 255, 0.4) 100%);
        animation: shimmer 5s infinite;
    }

/* Animations */
@keyframes float {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {

    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section Layout */
.hero-content {
    margin-top: 5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.75em;
    width: 70em;
    font-family: Lexend, sans-serif;
    /* line-height: 30px; */
}

.hero-left {
    flex: 1;
    max-width: 31.25em;
}

    .hero-left h4 {
        margin-bottom: 1.25em;
    }

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 1.25em;
    margin-top: 1.875em;
    font-family: Monospace;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 20em;
    background-image: url('/images/sec-1-5.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    overflow: hidden;
    margin-top: 5em;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    padding: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    animation: pulse 3s infinite ease-in-out;
    max-width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .image-overlay-text ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .image-overlay-text li {
        margin-bottom: 10px;
    }

.mobile-language-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 15px;
        min-height: 80vh;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image {
        height: 250px;
        width: 23em;
        background-image: url('/images/sec-1-5.png') !important;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        backdrop-filter: blur(10px);
        overflow: hidden;
        margin-top: 5em;
        z-index: 10;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .image-overlay-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .section {
        padding: 30px 10px;
        min-height: 70vh;
    }

    .hero-image {
        height: 200px;
        width: 23em;
        background-image: url('/images/sec-1-5.png') !important;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        backdrop-filter: blur(10px);
        overflow: hidden;
        margin-top: 3em;
        z-index: 10;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .image-overlay-text {
        font-size: 1rem;
    }
}

/* Navigation dots */
.nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

    .nav-dot:hover,
    .nav-dot.active {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.2);
    }

/* Feature cards for sections 2-8 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-5 .features-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-6 .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    width: 30em;
}



    .newsletter-section h4 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
        text-align: center;
        position: relative;
        z-index: 2;
    }

.email-input-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 3;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.email-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #E8DCF9;
    font-size: 1.2rem;
    z-index: 1;
}

.email-input {
    width: 100%;
    padding: 10px 20px 10px 45px;
    border: 2px solid #E8DCF9;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 280px;
    box-shadow: inset 0 2px 4px rgba(232, 220, 249, 0.1);
}

    .email-input:focus {
        border-color: #a4a3a5;
        box-shadow: 0 0 0 3px rgba(232, 220, 249, 0.2);
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
    }

    .email-input::placeholder {
        color: #999;
        font-style: italic;
    }

.subscribe-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, #E8DCF9 0%, #D1C5E0 100%);
    border: none;
    border-radius: 30px;
    color: #45305b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

    .subscribe-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        border-radius: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        text-align: center;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3) 100%);
    transition: all 0.6s ease;
}

.send-btn:hover::before {
    left: 100%;
}

.newsletter-content {
    text-align: left;
    margin-top: 5em;
    max-width: 600px;
}

.section-3 .feature-card-square {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #E8DCF9;
    transition: all 0.3s ease;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-5 .feature-card-square {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #E8DCF9;
    transition: all 0.3s ease;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-card:hover,
.feature-card-square:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232, 220, 249, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E8DCF9;
    margin: 0 auto 15px;
}

.feature-card-square .feature-icon {
    width: 120px;
    height: 120px;
    font-size: 4rem;
    margin-bottom: 10px;
}

.section-4 .feature-icon {
    width: 120px;
    height: 120px;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
}

.section-4 .feature-title {
    text-align: center;
}

.section-5 .feature-title {
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
    color: #333;
}

.feature-card-square .feature-title {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

.feature-card ul {
    color: #555;
    line-height: 1.6;
    text-align: left;
    padding-left: 20px;
}

.join-section {
    margin-top: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .join-section h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 0;
        font-weight: 600;
        vertical-align: middle;
    }

.join-buttons {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    vertical-align: middle;
}

    .join-buttons .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

.feature-description {
    color: #555;
    line-height: 1.6;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-right: 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    color: #a4a3a5;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-right: 20px;
}

    .nav-menu a {
        color: #585555;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0 15px;
        border-right: 1px solid rgba(233, 200, 200, 0.7);
        margin-right: 20px;
    }



    .nav-menu a {
        color: #585555;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0 15px;
        border-right: 1px solid rgba(233, 200, 200, 0.7);
        margin-right: 20px;
    }

    .nav-menu li:last-child a {
        border-right: none;
    }

    .nav-menu a:hover {
        color: rgba(233, 200, 200, 0.8);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #E9DCF9;
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

.register-btn {
    background: #E8DCF9;
    border: 2px solid #E8DCF9;
    color: #45305b;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .register-btn:hover {
        background: #D1C5E0;
        border-color: #D1C5E0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(232, 220, 249, 0.3);
    }

.login-btn {
    background: #b076d0;
    border: 2px solid #E8DCF9;
    color: #45305b;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .login-btn:hover {
        background: #c4c2c5;
        border-color: #c4c2c5;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(187, 71, 187, 0.4);
    }

/* Language Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 200, 200, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #585555;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .lang-btn.active {
        background: #E9DCF9;
        color: #333;
    }

    .lang-btn:hover:not(.active) {
        background: rgba(233, 200, 200, 0.2);
        color: rgba(233, 200, 200, 0.9);
    }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(233, 200, 200, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    color: #a4a3a5;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-right: 20px;
}

    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 10px;
        margin-right: 20px;
    }

    .nav-menu a {
        color: #585555;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0 15px;
        border-right: 1px solid rgba(233, 200, 200, 0.7);
        margin-right: 20px;
    }

    .nav-menu li:last-child a {
        border-right: none;
    }

    .nav-menu a:hover {
        color: rgba(233, 200, 200, 0.8);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #E9DCF9;
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

.register-btn {
    background: #E8DCF9;
    border: 2px solid #E8DCF9;
    color: #45305b;
    padding: 10px 25px !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .register-btn:hover {
        background: #D1C5E0;
        border-color: #D1C5E0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(232, 220, 249, 0.3);
    }

.login-btn {
    background: #b076d0;
    border: 2px solid #E8DCF9;
    color: #45305b;
    padding: 10px 25px !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .login-btn:hover {
        background: #c4c2c5;
        border-color: #c4c2c5;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(187, 71, 187, 0.4);
    }

/* Language Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 200, 200, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #585555;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .lang-btn.active {
        background: #E9DCF9;
        color: #333;
    }

    .lang-btn:hover:not(.active) {
        background: rgba(233, 200, 200, 0.2);
        color: rgba(233, 200, 200, 0.9);
    }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #a5a0a0;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

/* Navigation dots */
.nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

    .nav-dot:hover,
    .nav-dot.active {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.2);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 0;
            margin-right: 0;
        }

        .nav-menu a {
            color: #333;
            font-size: 1.1rem;
            padding: 10px 0;
            display: block;
        }

            .nav-menu a:hover {
                color: #667eea;
            }

            .nav-menu a::after {
                background: #667eea;
            }

        .nav-menu .login-btn,
        .nav-menu .register-btn {
            display: inline-block;
            margin: 10px 0;
            padding: 12px 24px;
            font-size: 1rem;
            text-align: center;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .nav-menu .login-btn {
            background: #b076d0;
            border: 2px solid #E8DCF9;
            color: #45305b;
        }

        .nav-menu .register-btn {
            background: #E8DCF9;
            border: 2px solid #E8DCF9;
            color: #45305b;
        }

        .nav-menu .login-btn:hover {
            background: #c4c2c5;
            border-color: #c4c2c5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(187, 71, 187, 0.4);
        }

        .nav-menu .register-btn:hover {
            background: #D1C5E0;
            border-color: #D1C5E0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(232, 220, 249, 0.3);
        }

    .nav-actions {
        display: none;
    }

    .register-btn {
        display: none;
    }

    .login-btn {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        top: 60px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .register-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.section-7-footer {
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(232, 220, 249, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid #E8DCF9;
    border-radius: 0 0 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-section h4 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .footer-section h5 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }

.footer-logo h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-logo p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 200px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        padding: 4px 0;
        text-align: left;
    }

        .footer-links a:hover {
            color: #E8DCF9;
            transform: translateX(5px);
        }

.legal-link:hover {
    color: #E8DCF9;
    transform: translateX(5px);
}

.data-link:hover {
    color: #E8DCF9;
    transform: translateX(5px);
}

.partner-link:hover {
    color: #E8DCF9;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: flex-start;
}

.social-link {
    font-size: 1.3rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        color: #E8DCF9;
        transform: translateY(-3px);
    }

.footer-contact {
    margin-top: 15px;
    text-align: left;
}

.contact-email {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-phone {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-copyright {
    color: #999;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-content {
        width: 100%;
        max-width: 100%;
        gap: 2em;
    }

    .container {
        padding: 2em 1em;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2em;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-right {
        margin-top: 2em;
    }

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

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

    .section-5 .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .section-6 .newsletter-section {
        width: 90%;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 0;
            margin-right: 0;
        }

        .nav-menu a {
            font-size: 1.1rem;
            padding: 10px 0;
            display: block;
        }

            .nav-menu a:hover {
                background: #667eea;
            }

    .register-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.5rem;
    }

    .section {
        padding: 2em 1em;
    }

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

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

    .feature-card,
    .feature-card-square {
        padding: 1.5em;
    }

    .hero-content {
        margin-top: 3em;
    }

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

    .language-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 5px;
        gap: 5px;
    }

        .language-toggle .lang-btn {
            background: transparent;
            color: white;
            border-radius: 15px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

            .language-toggle .lang-btn.active {
                background: rgba(232, 220, 249, 0.3);
            }

    .nav-menu .language-toggle {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 1.5em 0.75em;
    }

    .section {
        padding: 1.5em 0.75em;
    }

    .hero-content {
        margin-top: 2em;
        gap: 1.5em;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1em;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .section p {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .feature-card-square .feature-icon {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .register-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .container {
        padding: 1em 0.5em;
    }

    .section {
        padding: 1em 0.5em;
    }

    .hero-content {
        margin-top: 1.5em;
    }

    .hero-left h1 {
        font-size: 1.5rem;
        margin-top: 2em;
    }

    .hero-left p {
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .section p {
        font-size: 0.9rem;
        /* padding: 0 1.7em; */
    }

    .feature-card,
    .feature-card-square {
        padding: 1em;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .join-buttons .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .mobile-language-toggle {
        display: block;
        margin-left: 10px;
    }
}
 

/* Auth-aware header: logout button and greeting, next to the login/register links. */
.logout-form {
    display: inline-flex;
    margin: 0;
}

.logout-btn {
    font: inherit;
    cursor: pointer;
}

.nav-user-name {
    display: flex;
    align-items: center;
    color: #585555;
    font-weight: 500;
    padding: 0 15px;
}
