/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
}

.logo i {
    color: #DC2626;
    font-size: 1.8rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #DC2626;
}

.store-link {
    background: #DC2626;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.store-link:hover {
    background: #B91C1C;
    color: #ffffff;
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #DC2626 0%, #000000 100%);
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 500px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #374151;
    border-radius: 25px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F3F4F6;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #E5E7EB, #D1D5DB);
    position: relative;
}

.map-pins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3B82F6;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pin-1 { top: 20%; left: 30%; }
.pin-2 { top: 40%; left: 60%; }
.pin-3 { top: 60%; left: 20%; }
.pin-4 { top: 70%; left: 70%; }
.pin-5 { top: 30%; left: 80%; }
.pin-6 { top: 50%; left: 10%; }

/* Coming Soon Section */
.coming-soon {
    padding: 4rem 0;
    text-align: center;
    background: #000000;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Now Available Section */
.now-available {
    padding: 4rem 0;
    text-align: center;
    background: #000000;
}

.now-available-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.now-available-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.now-available-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

.now-available-description {
    font-size: 1.2rem;
    opacity: 0.8;
}

.now-available-button {
    font-size: 1.2rem;
    opacity: 0.8;
    
}   

/* Features Section */
.features {
    padding: 4rem 0;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #DC2626;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-card {
    grid-row: span 2;
    min-height: 500px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.phone-mockup-small {
    width: 150px;
    height: 280px;
    background: #374151;
    border-radius: 15px;
    padding: 5px;
    margin: 1rem auto 0;
    position: relative;
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background: #1F2937;
    border-radius: 12px;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #111111;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1F2937;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #DC2626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #B91C1C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .store-link {
        width: 100%;
    }
    
    .hero{
        padding-top: 100px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        grid-row: span 1;
        min-height: 250px;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #374151;
}

.footer-content {
    text-align: center;
}

.footer-content .logo {
    justify-content: center;
    margin-bottom: 1rem;
}

.footer p {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        grid-row: span 1;
        min-height: 250px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-store-buttons button {
    transition: transform 0.3s ease;
}

.app-store-buttons button:hover {
    transform: scale(1.05);
}
