@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

html {
    overflow-x: hidden;
    background-color: #0000FF;
}

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

/* Navbar */
.navbar {
    background: #0000FF;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0px;
    z-index: 10001;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px 0 10px;
}

.logo {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    /* iOS-specific fixes */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Ensure it's clickable */
    position: relative;
}

/* Hero Section */
.hero {
    background-image: url('assets/carwash.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 120px 20px 80px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.hero-image {
    display: none;
}

.cta-btn {
    background: #FFFFFF;
    color: #0000FF;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works {
    padding: 20px 20px 30px;
    background: #0000FF;
}

.how-it-works h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.step-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0000FF;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 1rem;
    margin: 1rem 0;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    color: #0000FF;
    margin: 1rem 0;
}
.step-card p {
    color: #0000FF;
}


/* Why QuiriApp Section */
.why-quiriapp {
    padding: 20px 20px;
    background: #FFFFFF;
}

.why-quiriapp h2 {
    text-align: center;
    color: #0000FF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Feature Cards Professional Redesign */
.feature-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: left;
    width: 100%;
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* App Preview Section */
.app-preview {
    padding: 80px 20px;
    background: #FFFFFF;
}

.app-preview h2 {
    text-align: center;
    color: #0000FF;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.preview-content {
    max-width: 900px;
    margin: 0 auto;
}

.preview-text {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-text h3 {
    color: #0000FF;
    font-size: 2rem;
    margin-bottom: 1rem;
}


/* Pricing Section */
.pricing {
    padding: 10px;
    background: #FFFFFF;
}

.pricing h2 {
    text-align: center;
    color: #0000FF;
    font-size: 2.5rem;
    margin-bottom: 0.1rem;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card.featured {
    background: #B3D1FF;
}

.pricing-card h3 {
    color: #0000FF;
    font-size: 1.5rem;
    margin-bottom: 0;
    background: #B3D1FF;
    padding: 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-icon {
    width: 30px;
    height: 30px;
}

.pricing-card > *:not(h3) {
    padding: 0 2.5rem;
}

.pricing-card .features-list {
    padding: 0 2.5rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0000FF;
    margin: 1.5rem 0;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 20px;
    height: 20px;
}

.pricing-card .pricing-btn{
    background: #0000FF;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 9px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 0 2.5rem 2.5rem 2.5rem;
    width: calc(100% - 5rem);
    text-decoration: none;
}

.pricing-card .pricing-btn-first {
    background: #020274;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 9px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 0 2.5rem 2.5rem 2.5rem;
    width: calc(100% - 5rem);
    text-decoration: none;
}

.pricing-card .pricing-btn:hover,
.pricing-card .pricing-btn-first:hover {
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 20px 20px 20px;
    background-image: url('assets/blackman.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0000FF;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.7);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 0;
    color: #FFFFFF;
    
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-size: 1rem;
    color: #FFFFFF;
    background: transparent;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgb(255, 255, 255);
}

.submit-btn {
    background: #0000FF;
    color: #0000FF;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    width: 45px;
    display: flex;
    justify-content: center;
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a[href^="mailto:"] {
    color: #FFFFFF;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-icon {
    width: 33px;
    height: 33px;
}

/* FAQ Section */
.faq {
    padding: 20px 20px ;
    background: #FFFFFF;
}

.faq h2 {
    text-align: center;
    color: #0000FF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0000FF;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #0000FF;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
}


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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0000FF;
        padding: 1rem;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .menu-toggle {
        display: block;
        touch-action: manipulation;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 15px 60px;
        min-height: 60vh;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

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

    /* Sections Mobile */
    .how-it-works,
    .why-quiriapp,
    .app-preview,
    .pricing,
    .contact,
    .faq {
        padding: 10px 15px;
    }

    .how-it-works {
        padding-bottom: 50px;
    }

    .pricing {
        padding-bottom: 30px;
    }

    .contact {
        padding-top: 10px;
 
        padding-bottom: 20px;
    }

    .why-quiriapp {
        padding: 20px 15px 10px;
    }

    .how-it-works h2,
    .why-quiriapp h2,
    .app-preview h2,
    .pricing h2,
    .contact h2,
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact h2 {
        margin-bottom: 0.2rem;
    }

    .faq h2 {
        margin-bottom: 1rem;
    }

    /* Cards Mobile */
    .steps,
    .features,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features {
        gap: 1.5rem;
    }

    .step-card,
    .feature-card {
        padding: 1.5rem;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }

    /* Pricing Mobile */
    .pricing-card h3 {
        font-size: 1.3rem;
        padding: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 0.9rem;
    }

    /* Mobile specific fixes */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }

    .container {
        max-width: 100%;
       
    }

    /* Modal Mobile */
    .modal-content {
        margin: 20px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

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

    .how-it-works h2,
    .why-quiriapp h2,
    .app-preview h2,
    .pricing h2,
    .contact h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .step-card,
    .feature-card {
        padding: 1rem;
    }

    .pricing-card > *:not(h3) {
        padding: 0 1.5rem;
    }

    .pricing-card .features-list {
        padding: 0 1.5rem;
    }

    .pricing-card .pricing-btn,
    .pricing-card .pricing-btn-first {
        margin: 0 1.5rem 1.5rem 1.5rem;
        width: calc(100% - 3rem);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-btn {
    background: #0000FF;
    color: #FFFFFF;
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

 .tick-icon {
    text-align: center;
    margin-bottom: 15px;
 }       
.tick-icon img {
     width: 60px;
    height: auto;
    max-width: 100%;
}
/* Contact Form Override */
.contact-form {
    background: transparent !important;
    padding: 0.5rem 2rem 2rem 2rem !important;
    border-radius: 15px !important;
}

.submit-btn {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

.premium-text {
    color: #EFBF04;
}