/* Generic Desktop CSS for City Mobile App Development Pages */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Hero Section - Desktop */
@media (min-width: 769px) {
    .city-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 120px 0 80px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .city-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
        opacity: 0.5;
    }

    .city-hero .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .city-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .city-hero p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .city-hero .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .city-hero .cta-button {
        padding: 15px 35px;
        background: #FF6B00;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .city-hero .cta-button:hover {
        background: #ff8534;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    }

    .city-hero .btn-secondary {
        padding: 15px 35px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid white;
        transition: all 0.3s ease;
    }

    .city-hero .btn-secondary:hover {
        background: white;
        color: #667eea;
    }

    /* Marquee Section - Desktop */
    .city-marquee-section {
        background: #f8f9fa;
        padding: 20px 0;
        overflow: hidden;
    }

    .marquee-container {
        overflow: hidden;
    }

    .marquee-content {
        display: flex;
        gap: 40px;
        animation: marqueeScroll 30s linear infinite;
        white-space: nowrap;
    }

    .marquee-content span {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        padding: 0 20px;
    }

    @keyframes marqueeScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* City Famous Section - Desktop */
    .city-famous-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .famous-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .famous-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1.5rem;
    }

    .famous-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .famous-feature-item {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .famous-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .famous-feature-item i {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 1rem;
    }

    .famous-feature-item span {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }

    /* About Section - Desktop */
    .city-about-section {
        padding: 80px 0;
        background: white;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .about-text h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1.5rem;
    }

    .about-features {
        display: grid;
        gap: 1.5rem;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
        padding: 1.5rem;
        background: #f8f9fa;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: #e9ecef;
        transform: translateX(10px);
    }

    .feature-item i {
        font-size: 2.5rem;
        color: #667eea;
        min-width: 50px;
    }

    .feature-content span {
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

    /* Services Section - Desktop */
    .city-services-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .service-item {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .service-header {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon-wrapper i {
        font-size: 2rem;
        color: white;
    }

    .service-title h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .service-tag {
        display: inline-block;
        padding: 4px 12px;
        background: #e9ecef;
        color: #667eea;
        font-size: 0.85rem;
        border-radius: 20px;
        font-weight: 600;
    }

    .service-body p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 1.5rem;
    }

    .service-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 25px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .service-btn:hover {
        background: linear-gradient(135deg, #128C7E, #25D366);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    /* Pricing Section - Desktop */
    .city-pricing-section {
        padding: 80px 0;
        background: white;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .pricing-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: #667eea;
    }

    .pricing-card.featured {
        border-color: #FF6B00;
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #FF6B00, #ff8534);
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .pricing-header h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .price {
        margin: 1.5rem 0;
    }

    .price .currency {
        font-size: 1.5rem;
        color: #667eea;
        font-weight: 700;
    }

    .price .amount {
        font-size: 3rem;
        color: #333;
        font-weight: 800;
    }

    .price .period {
        font-size: 1.5rem;
        color: #666;
    }

    .pricing-features h4 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .pricing-features li {
        padding: 0.8rem 0;
        color: #666;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features li i {
        color: #25D366;
        margin-right: 10px;
    }

    /* Why Choose Section - Desktop */
    .city-why-choose-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .feature-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .feature-icon i {
        font-size: 2.5rem;
        color: white;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

    /* Contact Form Section - Desktop */
    .city-contact-form-section {
        padding: 80px 0;
        background: white;
    }

    .form-container {
        max-width: 600px;
        margin: 0 auto;
        background: #f8f9fa;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e1e5e9;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #FF6B00, #ff8534);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #ff8534, #FF6B00);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    }

    /* Leading Company Section - Desktop */
    .city-leading-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .leading-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .leading-content h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }

    .leading-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    /* FAQ Section - Desktop */
    .city-faq-section {
        padding: 80px 0;
        background: white;
    }

    .faq-grid {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: #f8f9fa;
        border-radius: 15px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        border-radius: 15px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        color: #333;
        margin: 0;
        font-weight: 600;
    }

    .faq-question i {
        font-size: 1.2rem;
        color: #667eea;
        transition: transform 0.3s ease;
    }

    .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: 1.5rem 2rem;
        margin: 0;
        color: #666;
        line-height: 1.8;
        font-size: 1rem;
    }

    /* IT Company Section - Desktop */
    .city-it-company-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .it-company-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .it-company-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
    }

    /* Stats Section - Desktop */
    .city-stats-section {
        padding: 80px 0;
        background: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .stat-card {
        background: linear-gradient(135deg, #667eea, #764ba2);
        padding: 3rem 2rem;
        border-radius: 20px;
        text-align: center;
        color: white;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }
}
