/* Generic Mobile CSS for City Mobile App Development Pages */

/* Mobile Styles - Below 768px */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
        color: #666;
    }

    /* Hero Section - Mobile */
    .city-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 80px 0 60px;
        color: white;
    }

    .city-hero .hero-content {
        padding: 0 20px;
    }

    .city-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .city-hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    .city-hero .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .city-hero .cta-button {
        padding: 12px 25px;
        background: #FF6B00;
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
        display: block;
    }

    .city-hero .btn-secondary {
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid white;
        text-align: center;
        display: block;
    }

    /* Marquee Section - Mobile */
    .city-marquee-section {
        background: #f8f9fa;
        padding: 15px 0;
        overflow: hidden;
    }

    .marquee-container {
        overflow: hidden;
    }

    .marquee-content {
        display: flex;
        gap: 30px;
        animation: marqueeScroll 40s linear infinite;
        white-space: nowrap;
    }

    .marquee-content span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    @keyframes marqueeScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* City Famous Section - Mobile */
    .city-famous-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .famous-content {
        padding: 0 20px;
    }

    .famous-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 1.2rem;
    }

    .famous-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .famous-feature-item {
        background: white;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .famous-feature-item i {
        font-size: 2rem;
        color: #667eea;
        margin-bottom: 0.8rem;
    }

    .famous-feature-item span {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    /* About Section - Mobile */
    .city-about-section {
        padding: 50px 0;
        background: white;
    }

    .about-content {
        padding: 0 20px;
    }

    .about-text {
        margin-bottom: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 1.2rem;
    }

    .about-features {
        display: grid;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        gap: 1rem;
        padding: 1.2rem;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .feature-item i {
        font-size: 2rem;
        color: #667eea;
        min-width: 40px;
    }

    .feature-content span {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
    }

    /* Services Section - Mobile */
    .city-services-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .services-container {
        display: grid;
        gap: 1.5rem;
        padding: 0 20px;
    }

    .service-item {
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .service-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-icon-wrapper i {
        font-size: 1.5rem;
        color: white;
    }

    .service-title h3 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 0.3rem;
    }

    .service-tag {
        display: inline-block;
        padding: 3px 10px;
        background: #e9ecef;
        color: #667eea;
        font-size: 0.75rem;
        border-radius: 15px;
        font-weight: 600;
    }

    .service-body p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 1rem;
    }

    .service-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        text-decoration: none;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Pricing Section - Mobile */
    .city-pricing-section {
        padding: 50px 0;
        background: white;
    }

    .pricing-grid {
        display: grid;
        gap: 1.5rem;
        padding: 0 20px;
    }

    .pricing-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 15px;
        padding: 2rem 1.5rem;
        text-align: center;
        position: relative;
    }

    .pricing-card.featured {
        border-color: #FF6B00;
        box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
    }

    .pricing-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #FF6B00, #ff8534);
        color: white;
        padding: 5px 15px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 0.8rem;
    }

    .price {
        margin: 1rem 0;
    }

    .price .currency {
        font-size: 1.2rem;
        color: #667eea;
        font-weight: 700;
    }

    .price .amount {
        font-size: 2.5rem;
        color: #333;
        font-weight: 800;
    }

    .price .period {
        font-size: 1.2rem;
        color: #666;
    }

    .pricing-features h4 {
        font-size: 1rem;
        color: #333;
        margin-bottom: 0.8rem;
    }

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .pricing-features li {
        padding: 0.7rem 0;
        color: #666;
        font-size: 0.9rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features li i {
        color: #25D366;
        margin-right: 8px;
    }

    /* Why Choose Section - Mobile */
    .city-why-choose-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 20px;
    }

    .feature-card {
        background: white;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .feature-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
    }

    /* Contact Form Section - Mobile */
    .city-contact-form-section {
        padding: 50px 0;
        background: white;
    }

    .form-container {
        padding: 0 20px;
    }

    .form-container form {
        background: #f8f9fa;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .form-row {
        display: grid;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px 14px;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, #FF6B00, #ff8534);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Leading Company Section - Mobile */
    .city-leading-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .leading-content {
        padding: 0 20px;
        text-align: center;
    }

    .leading-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .leading-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        opacity: 0.95;
    }

    /* FAQ Section - Mobile */
    .city-faq-section {
        padding: 50px 0;
        background: white;
    }

    .faq-grid {
        padding: 0 20px;
    }

    .faq-item {
        background: #f8f9fa;
        border-radius: 12px;
        margin-bottom: 0.8rem;
        overflow: hidden;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        border-radius: 12px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        color: #333;
        margin: 0;
        font-weight: 600;
        line-height: 1.4;
        flex: 1;
        padding-right: 10px;
    }

    .faq-question i {
        font-size: 1rem;
        color: #667eea;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-answer p {
        padding: 1rem 1.2rem;
        margin: 0;
        color: #666;
        line-height: 1.7;
        font-size: 0.9rem;
    }

    /* IT Company Section - Mobile */
    .city-it-company-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .it-company-content {
        padding: 0 20px;
        text-align: center;
    }

    .it-company-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #555;
    }

    /* Stats Section - Mobile */
    .city-stats-section {
        padding: 50px 0;
        background: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 20px;
    }

    .stat-card {
        background: linear-gradient(135deg, #667eea, #764ba2);
        padding: 2rem 1rem;
        border-radius: 15px;
        text-align: center;
        color: white;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
    }
}

/* Extra Small Mobile - Below 480px */
@media (max-width: 480px) {
    .city-hero h1 {
        font-size: 1.7rem;
    }

    .city-hero p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .famous-features,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .famous-feature-item,
    .feature-card {
        padding: 1.2rem 1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-icon-wrapper {
        margin-bottom: 0.5rem;
    }

    .form-container form {
        padding: 1.5rem 1rem;
    }

    .leading-content h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 2.5rem 1.5rem;
    }
}
