:root {
    --primary-color: #0099ff;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --primary-gradient: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
    --card-bg: rgba(32, 33, 36, 0.9);
    --input-bg: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(32, 33, 36, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}


.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.app-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.download-btn {
    background: var(--primary-gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 600;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1200') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out;
}

.hero .left-content {
    flex: 1;
    color: white;
}

.badge {
    display: inline-block;
    background: var(--input-bg);
    color: #FF6B6B;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
    background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.get-it-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.store-badge img {
    height: 60px;
    transition: transform 0.3s ease;
}

.store-badge:hover img {
    transform: translateY(-2px);
}

.hero .right-content {
    flex: 1;
    max-width: 400px;
    animation: slideInRight 1s ease-out;
}

.early-access-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 24px;
    color: var(--text-primary);
    max-width: 400px;
    margin: 0 auto;
    animation: scaleIn 0.8s ease-out;
}

.early-access-card h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.early-access-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.access-form .form-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.access-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.access-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.access-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.gradient-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.gradient-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    opacity: 0;
    padding: 15px 25px;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #4CAF50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-message {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.popup,
.overlay {
    display: none;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.features-subtitle {
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-icon.orange {
    background: #ff9f43;
}

.feature-icon.red {
    background: #ff6b6b;
}

.feature-icon.purple {
    background: #8c7ae6;
}

.feature-icon.blue {
    background: #2e86de;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* App Showcase Section */
.app-showcase {
    padding: 6rem 5%;
    background: white;
}

.showcase-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.phone-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #8c7ae6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.phone-screen {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    /* transform: rotate(-10deg); */
}

.showcase-text {
    flex: 1;
    padding: 2rem;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.showcase-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.get-app-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

.get-app-btn:hover {
    transform: translateY(-2px);
}

/* Key Features Section */
.key-features {
    padding: 6rem 5%;
    background: white;
    overflow: hidden;
}

.key-features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.key-features h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.features-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.features-list {
    flex: 1;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-bg);
    transform: translateX(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-icon.blue {
    background: #2e86de;
}

.feature-icon.purple {
    background: #8c7ae6;
}

.feature-icon.orange {
    background: #ff9f43;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.phone-showcase {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-bg.orange {
    width: 200px;
    height: 200px;
    background: #ff9f43;
    opacity: 0.2;
    top: 20%;
    right: 10%;
}

.circle-bg.blue {
    width: 300px;
    height: 300px;
    background: #2e86de;
    opacity: 0.1;
    bottom: 10%;
    right: 20%;
}

.phone-image {
    position: relative;
    z-index: 1;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* App Screenshots Section */
.app-screenshots {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.app-screenshots .section-header {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.app-screenshots .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.app-screenshots .section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 0 1 300px;
    position: relative;
    max-width: 300px;
    width: 100%;
}

.screenshot-item:nth-child(2) {
    margin-top: -30px;
}

.phone-frame {
    background: #000;
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    object-fit: cover;
    display: block;
}

.screenshot-info {
    margin-top: 25px;
    text-align: center;
    padding: 0 15px;
}

.screenshot-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.screenshot-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .screenshots-container {
        gap: 30px;
    }
    
    .screenshot-item {
        flex: 0 1 280px;
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .screenshots-container {
        gap: 40px;
        justify-content: center;
    }
    
    .screenshot-item {
        flex: 0 1 300px;
        max-width: 300px;
    }

    .screenshot-item:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .app-screenshots {
        padding: 60px 0;
    }

    .app-screenshots .section-header {
        padding: 0 15px;
    }

    .app-screenshots .section-header h2 {
        font-size: 2rem;
    }

    .screenshots-container {
        padding: 0 15px;
        gap: 30px;
    }

    .screenshot-item {
        flex: 0 1 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        max-width: 260px;
    }

    .app-screenshots .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Download Section */
.download-section {
    padding: 6rem 5%;
    background: #f8faff;
    overflow: hidden;
    position: relative;
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.download-section .left-content {
    flex: 1;
    position: relative;
}

.phone-mockup {
    flex: 1;
    max-width: 300px;
    position: relative;
    padding: 1rem;
    margin: 0 auto;
    animation: floatAnimation 6s ease-in-out infinite;
}

.phone-frame {
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
    display: block;
}

.app-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.app-header {
    padding: 20px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    font-size: 1.5rem;
    color: #333;
}

.notification-icon {
    color: #FFB800;
    font-size: 1.2rem;
}

.app-content {
    flex: 1;
    padding: 0 20px;
    overflow-y: auto;
}

.app-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.food-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.food-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.food-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.food-info p {
    font-size: 0.9rem;
    color: #666;
}

.categories {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category .icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.category span:last-child {
    font-size: 0.85rem;
    color: #666;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.food-card {
    text-align: center;
}

.food-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
}

.food-card h5 {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-item {
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
}

.nav-item.active {
    color: #FF6B6B;
}

.circle-bg.yellow {
    width: 200px;
    height: 200px;
    background: #ffd700;
    opacity: 0.2;
    position: absolute;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: 0;
}

.circle-bg.blue {
    width: 300px;
    height: 300px;
    background: #e8f4ff;
    position: absolute;
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.mockup-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transform: rotate(-5deg);
}

.download-section .right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.text-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #2d3748;
    border-radius: 15px;
}

.store-btn {
    display: block;
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn img {
    height: 40px;
    width: auto;
}

.early-access {
    flex: 1;
    padding: 1.5rem;
    background: #2d3748;
    border-radius: 15px;
    color: white;
}

.early-access h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.subscribe-form .form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.subscribe-form input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.subscribe-btn.loading {
    color: transparent;
}

.subscribe-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Additional Responsive Styles */
@media (max-width: 968px) {
    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content p {
        margin: 0 auto 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .store-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .text-content h2 {
        font-size: 2.5rem;
    }

    .store-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 2rem;
    }

    .early-access {
        padding: 1.5rem;
    }

    .subscribe-form input {
        padding: 0.8rem 3.5rem 0.8rem 1rem;
    }

    .subscribe-btn {
        width: 100%;
    }

    .store-btn img {
        height: 35px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content, .showcase-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .left-content p {
        margin: 0 auto 2rem auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .showcase-text {
        text-align: center;
        padding: 1rem;
    }

    .phone-container {
        max-width: 300px;
    }

    .circle-bg {
        width: 250px;
        height: 250px;
    }

    .features-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-item:hover {
        transform: translateX(0) translateY(-5px);
    }

    .phone-showcase {
        min-height: 400px;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .right-content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 5%;
    }

    .features h2, .showcase-text h2 {
        font-size: 2rem;
    }

    .features-subtitle {
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .key-features h2 {
        font-size: 2rem;
    }

    .feature-item {
        padding: 0.5rem;
    }

    .circle-bg.orange {
        width: 150px;
        height: 150px;
    }

    .circle-bg.blue {
        width: 200px;
        height: 200px;
    }

    .download-section h2 {
        font-size: 2rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .store-btn {
        justify-content: center;
    }
}

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

    .features h2, .showcase-text h2 {
        font-size: 1.75rem;
    }

    .features-subtitle br {
        display: none;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .showcase-text p {
        font-size: 1rem;
    }

    .key-features h2 {
        font-size: 1.75rem;
    }

    .section-subtitle br {
        display: none;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .phone-showcase {
        min-height: 300px;
    }

    .phone-image {
        max-width: 250px;
    }

    .download-section h2 {
        font-size: 1.75rem;
    }

    .newsletter-form {
        padding: 1.5rem;
    }

    .subscribe-form input {
        padding: 0.8rem 3.5rem 0.8rem 1rem;
    }

    .submit-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .screenshot-item {
        flex: 0 0 250px;
    }
    
    .screenshot-item.center {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .screenshots-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .screenshot-item,
    .screenshot-item.center {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
        transform: scale(1);
    }

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

    .screenshots-wrapper::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .screenshot-item,
    .screenshot-item.center {
        width: 100%;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .early-access-card {
        padding: 2rem;
    }

    .early-access-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .early-access-card {
        padding: 1.5rem;
    }

    .early-access-card h2 {
        font-size: 1.8rem;
    }

    .gradient-btn {
        padding: 0.875rem;
    }
}

/* Destinations Section */
.destinations {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-content.reveal {
    opacity: 1;
    transform: translateY(0);
}

.section-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.destination-info p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: white;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.features-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-icon.orange {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #4ECDC4, #45B7AF);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #A78BFA, #8B5CF6);
}

.feature-icon.red {
    background: linear-gradient(135deg, #F87171, #EF4444);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .destination-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-content h2,
    .features-content h2 {
        font-size: 2rem;
    }

    .destination-card img {
        height: 200px;
    }
}

/* App Features Section */
.app-features {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.app-features .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.app-features .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.feature-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-icon.red {
    background: #FF6B6B;
}

.feature-icon.purple {
    background: #6C63FF;
}

.feature-icon.blue {
    background: #4ECDC4;
}

.feature-icon.green {
    background: #2ECC71;
}

.feature-icon.orange {
    background: #FF9F43;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.phone-mockup {
    flex: 1;
    max-width: 300px;
    margin: 0 2rem;
}

.phone-frame {
    background: white;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 25px;
    overflow: hidden;
}

@media (max-width: 968px) {
    .features-showcase {
        flex-direction: column;
    }
    
    .feature-items {
        width: 100%;
    }
    
    .phone-mockup {
        max-width: 250px;
        margin: 2rem 0;
    }
}

.footer {
    background: linear-gradient(135deg, #2d3748, #2d3748);
    color: #fff;
    padding: 80px 0 30px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}


.newsletter-section {
    max-width: 600px;
    margin: 0 auto 50px;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

#newsletter-email {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

#newsletter-email:focus {
    outline: none;
    background: #fff;
}

#newsletter-email::placeholder {
    color: rgb(37, 37, 37);
}

.subscribe-btn {
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.subscribe-btn.loading {
    color: transparent;
    pointer-events: none;
}

.subscribe-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
        margin-top: -40px;
        padding-top: 60px;
    }

    .newsletter-section h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* Loading state for button */
.gradient-btn.loading {
    position: relative;
    color: transparent;
}

.gradient-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Popup Notification Styles */
.popup-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    padding: 16px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    min-width: 300px;
}

.popup-notification.show {
    right: 20px;
}

.popup-notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.popup-notification.error {
    background: linear-gradient(135deg, #f44336, #e53935);
    color: white;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.popup-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.popup-message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.popup-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
}

.popup-notification.show .popup-progress {
    animation: progress 4s linear forwards;
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Newsletter Form Button */
.subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subscribe-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.subscribe-btn:hover svg {
    transform: translateX(4px);
}

.subscribe-btn.loading {
    color: transparent;
    pointer-events: none;
}

.subscribe-btn.loading svg {
    opacity: 0;
}

.subscribe-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

/* Additional Website Animations */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-badges a {
    transition: transform 0.3s ease;
}

.app-badges a:hover {
    transform: scale(1.05);
}

.gradient-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Add smooth transitions to all interactive elements */
a, button, input {
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply animations to elements */
.hero .left-content {
    animation: fadeInUp 1s ease-out;
}

.hero .right-content {
    animation: slideInRight 1s ease-out;
}

.early-access-card {
    animation: scaleIn 0.8s ease-out;
}

.phone-mockup {
    animation: floatAnimation 6s ease-in-out infinite;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-items.left .feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-items.left .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-items.right .feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-items.right .feature-item:nth-child(2) {
    animation-delay: 0.8s;
}

.gradient-text {
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}

.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

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

.download-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.badge {
    animation: scaleIn 0.5s ease-out;
    background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add reveal on scroll animation */
.section-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-content.reveal {
    opacity: 1;
    transform: translateY(0);
}



/* Video Section Styles */
.video-section {
    margin: 4rem auto;
    padding: 0 1rem;
    max-width: 1200px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 16px;
    padding: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50.25%; /* Slightly reduced aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .video-section {
        margin: 2rem auto;
        padding: 1rem;
    }
    
    .video-container {
        max-width: 100%;
        padding-bottom: 56.25%;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
}

.video-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-showcase .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 2rem 0;
    }
    
    .video-showcase h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .video-showcase .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.user-reviews {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.reviews-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1rem;
    overflow: hidden;
}

.reviews-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.review-card {
    flex: 0 0 auto;
    width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    padding: 2px;
}

.reviewer-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
    background: white;
}

.girl-icon {
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
}

.girl-icon svg {
    color: #FF69B4;
}

.boy-icon {
    background: linear-gradient(45deg, #4169E1, #87CEEB);
}

.boy-icon svg {
    color: #4169E1;
}

.reviewer-details h4 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.reviewer-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.reviewer-img {
    display: none;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .user-reviews {
        padding: 4rem 1rem;
    }

    .review-card {
        width: 300px;
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 280px;
    }
}
