/* Enhanced Mobile Development Page Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --info-gradient: linear-gradient(135deg, #00BCD4 0%, #006064 100%);
    --dark-gradient: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hero Section */
.service-hero {
    min-height: 100vh;
    background: var(--primary-gradient) !important;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-particles .particle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Enhanced Statistics Section */
.bg-gradient-dark {
    background: var(--dark-gradient) !important;
    position: relative;
}

.bg-gradient-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.stat-card-mobile {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card-mobile:hover::before {
    opacity: 1;
}

.stat-card-mobile:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--hover-shadow);
}

.stat-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-card-mobile:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Service Cards */
.service-card-mobile {
    background: white !important;
    border-radius: 20px;
    border: none;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card-mobile:hover::before {
    transform: scaleX(1);
}

.service-card-mobile:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card-mobile:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Technology Cards */
.tech-category-card-mobile {
    background: white !important;
    border-radius: 20px;
    border: none;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-category-card-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(30px, -30px);
    opacity: 0.1;
    transition: var(--transition);
}

.tech-category-card-mobile:hover::after {
    transform: translate(20px, -20px);
    opacity: 0.2;
}

.tech-category-card-mobile:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.tech-grid-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.tech-item-mobile {
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.tech-item-mobile:hover {
    background: rgba(33, 150, 243, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.tech-icon-mobile {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Enhanced Feature Boxes */
.feature-box {
    background: white !important;
    border-radius: 20px;
    border: none;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(33, 150, 243, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--hover-shadow);
}

.feature-box i {
    transition: var(--transition);
}

.feature-box:hover i {
    transform: scale(1.2);
}

/* Enhanced Process Steps */
.process-step-mobile {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.process-step-mobile:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-left-color: #2196F3;
}

.step-number-mobile {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-step-mobile:hover .step-number-mobile {
    transform: scale(1.2) rotate(360deg);
}

/* Enhanced Calculator */
.calculator-card-mobile {
    background: white !important;
    border-radius: 25px;
    border: none;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.calculator-progress-bar {
    background: rgba(33, 150, 243, 0.1);
    height: 6px;
}

.calculator-progress-bar .progress {
    background: var(--primary-gradient);
    height: 100%;
}

.feature-option {
    background: rgba(33, 150, 243, 0.05);
    border: 2px solid rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.feature-option:hover {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    transform: translateY(-3px);
}

.feature-option input[type="radio"]:checked + .d-flex {
    color: #2196F3;
}

.feature-option input[type="radio"]:checked + .d-flex .bg-primary {
    background: #2196F3 !important;
}

/* Enhanced FAQ Section */
.accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: #2C3E50;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
}

.accordion-button:hover {
    background: rgba(33, 150, 243, 0.1);
}

/* Enhanced Contact Section */
.card {
    border: none;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
}

.form-control {
    border: 2px solid rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

/* Enhanced Buttons */
.btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
}

.btn-light {
    background: white;
    color: #2196F3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .service-hero {
        min-height: 80vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats .stat-item {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .tech-grid-mobile {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}
