/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8a70d6;
    --primary-light: #b4a6e8;
    --primary-dark: #6a56b1;
    --accent-color: #ffffff;
    --text-color: #ffffff;
    --text-light: #b3b3b3;
    --background-dark: #121212;
    --background-card: #1e1e1e;
    --background-light: #2a2a2a;
    --white: #ffffff;
    --border-color: #333333;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 16px;
    --card-radius: 12px;
    --button-radius: 50px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.section-subtitle {
    text-align: left;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--button-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--background-dark);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--background-dark);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background-image: url('./assets/logo.png');
    background-size: cover;
    border-radius: 8px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--white);
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-light);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 10rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 70%;
    height: 140%;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    max-height: 600px;
    border-radius: 24px;
    /* box-shadow: var(--shadow); */
}

.stats-container {
    margin-top: 4rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
}

.user-avatars {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    background-color: var(--primary-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    overflow: hidden;
    margin-right: -15px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 1px;
}

.scrolling-text {
    width: 100%;
    overflow: hidden;
}

.scrolling-text-content {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

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

/* About App Section */
.about-app {
    padding: 8rem 0;
    background-color: var(--background-dark);
    position: relative;
}

.about-app .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    padding-left: 4rem;
}

.about-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    max-width: 100%;
    border-radius: 24px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.play-button i {
    color: var(--background-dark);
    font-size: 2rem;
    margin-left: 5px;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--white);
    color: var(--background-dark);
    border-radius: 32px;
}

.features .container {
    position: relative;
}

.features-header {
    margin-bottom: 4rem;
}

.features-header h2 {
    color: var(--background-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-header p {
    color: var(--background-light);
}

.features-nav {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 1rem;
}

.nav-arrow i {
    color: var(--white);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-content h3 {
    color: var(--background-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--background-light);
    max-width: 500px;
}

.feature-image {
    flex: 1;
    text-align: right;
}

.feature-image img {
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    background-color: var(--background-dark);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 112, 214, 0.1) 0%, rgba(138, 112, 214, 0) 100%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.cta-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.cta-carousel-side {
    flex: 1;
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-content-side {
    flex: 1;
    order: 2;
    text-align: left;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: var(--button-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 4rem auto 0;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    height: 500px;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.app-screenshot {
    max-width: 280px;
    width: 100%;
    max-height: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-slides {
        height: 500px;
    }
    
    .app-screenshot {
        max-width: 90%;
        width: 320px;
    }
    
    .carousel-container {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .carousel-slides {
        height: 450px;
    }
    
    .app-screenshot {
        max-width: 90%;
        width: 320px;
    }
    
    .cta-carousel-side {
        width: 100%;
    }
}

/* Download Section */
.download {
    padding: 6rem 0;
    background-color: var(--background-dark);
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-button {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--background-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
}

.app-button:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
}

.app-button i {
    font-size: 2rem;
    margin-right: 0.8rem;
}

.app-button div {
    display: flex;
    flex-direction: column;
}

.app-button span {
    font-size: 0.7rem;
}

.app-button strong {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    background-image: url('./assets/logo.png');
    background-size: cover;
    border-radius: 6px;
    margin-right: 8px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.link-group {
    margin-bottom: 2rem;
    min-width: 150px;
}

.link-group h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: var(--white);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
}

.talk-to-us-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--button-radius);
    padding: 0.8rem 1.5rem;
}

.talk-to-us-pill i {
    margin-right: 0.5rem;
}

.social-circle {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

/* Waitlist Section */
.waitlist {
    padding: 8rem 0;
    background-color: var(--white);
    color: var(--background-dark);
    border-radius: 32px;
    text-align: center;
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 112, 214, 0.1) 0%, rgba(138, 112, 214, 0) 100%);
    z-index: 0;
}

.waitlist .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.waitlist h2 {
    color: var(--background-dark);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.waitlist p {
    color: var(--background-dark);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    color: var(--background-dark);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    color: var(--background-dark);
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--button-radius);
    background-color: var(--background-dark);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder,
.form-group select {
    color: var(--text-light);
}

.form-group button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group select,
    .form-group button {
        width: 100%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-content h1,
    .about-content h2,
    .cta h2 {
        font-size: 3rem;
    }
    
    .hero .container,
    .about-app .container,
    .cta-flex-container {
        flex-direction: column;
    }
    
    .cta-carousel-side {
        order: 1;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .cta-content-side {
        order: 2;
        text-align: center;
    }
    
    .cta-content-side p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content,
    .about-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .cta-buttons,
    .app-buttons {
        justify-content: center;
    }
    
    .stats-container {
        text-align: center;
    }
    
    .user-avatars {
        margin: 2rem auto 0;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .feature-content p {
        max-width: 100%;
    }
    
    .feature-image {
        text-align: center;
    }
    
    .feature-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .app-screenshots {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .app-screenshot {
        width: 200px;
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .about-content h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons,
    .app-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .app-screenshot {
        width: 100%;
        max-width: 320px;
    }
}

/* Additional Styles for Mobile Nav */
nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    box-shadow: var(--shadow);
    padding: 1rem;
}

nav.active ul {
    flex-direction: column;
    align-items: center;
}

nav.active ul li {
    margin: 1rem 0;
}

.success-message {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--card-radius);
    text-align: center;
}

.success-message p {
    color: var(--white);
    margin-bottom: 0;
}

/* Image Gallery Styles */
.image-gallery {
    padding: 2rem 0;
    background-color: var(--background-light);
}

.image-gallery .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-gallery img {
    max-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.1);
}

/* Terms and Privacy Styles */
.terms-content,
.privacy-content {
    padding: 80px 0;
    background-color: #111;
    color: #ccc;
}

.terms-content .container,
.privacy-content .container {
    width: 80%;
    margin: auto;
}

.terms-content h1,
.privacy-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
}

.terms-content h2,
.privacy-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.terms-content p,
.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-content ul,
.privacy-content ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.terms-content li,
.privacy-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-content a,
.privacy-content a {
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover,
.privacy-content a:hover {
    color: #fff;
}
