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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a12;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 60px;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-svg {
    width: 112px;
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #FF8C00;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8A2BE2 0%, #FF8C00 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.btn-download {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    border-color: #FF8C00;
    color: #FF8C00;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.hero-bg-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    margin-bottom: 25px;
}

.hero-badge span {
    color: #B24BF3;
    font-size: 13px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF8C00 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-buttons span {
    margin-right: 10px;
}

.app-store-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.badge-item {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.badge-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 0, 0.5);
}

.badge-icon {
    font-size: 24px;
}

.badge-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.badge-large {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Phone Mockup */
.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 45px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-status {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 12px;
}

.phone-content {
    padding: 0 20px;
    flex: 1;
}

.location-info {
    margin-bottom: 15px;
}

.location-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-bottom: 3px;
}

.location-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.search-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.app-content-bg {
    background: #f8f8f8;
    border-radius: 25px 25px 0 0;
    padding: 20px 15px;
    margin-left: -20px;
    margin-right: -20px;
    flex: 1;
}

.category-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.category-icon {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 20px;
}

.restaurant-card {
    background: white;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.restaurant-image {
    height: 70px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d4a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-emoji {
    font-size: 28px;
}

.restaurant-info {
    padding: 10px;
}

.restaurant-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.restaurant-rating {
    font-size: 10px;
    color: #666;
}

.floating-emoji {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.floating-emoji-1 {
    top: 10%;
    right: -10%;
    font-size: 50px;
    animation-delay: 0.5s;
}

.floating-emoji-2 {
    bottom: 20%;
    left: -5%;
    font-size: 40px;
    animation-delay: 1s;
}

/* Stats Section */
.stats-section {
    padding: 60px;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.1) 0%, transparent 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C00 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Features Section */
.features-section {
    padding: 100px 60px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #FF8C00;
}

.highlight-purple {
    color: #8A2BE2;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.connecting-line {
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, #8A2BE2 0%, #FF8C00 100%);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A2BE2 0%, #FF8C00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.step-title {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 60px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
}

.testimonial-stars {
    display: flex;
    margin-bottom: 15px;
}

.star {
    color: #FFB800;
    font-size: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A2BE2 0%, #FF8C00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.author-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-cta {
    padding: 16px 40px;
    font-size: 16px;
}

.cta-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 80px 60px 40px;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

.footer-heading {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-link:hover {
    color: #FF8C00;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-made {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: rgba(255, 255, 255, 0.6);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #FF8C00;
}

.modal-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.modal-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.notify-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.notify-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.notify-input:focus {
    outline: none;
    border-color: #FF8C00;
}

.btn-notify {
    padding: 14px 28px;
}

.notify-message {
    text-align: center;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.notify-message.success {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    display: block;
}

.notify-message.error {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container,
    .nav-container,
    .stats-container,
    .features-container,
    .how-container,
    .testimonials-container,
    .footer-container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .connecting-line {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .app-store-badges {
        flex-direction: column;
    }
    
    .stats-container,
    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

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