/* Apps Page - iPhone 16 Pro Mockup */

/* iPhone Mockup Container */
.iphone-mockup {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 166, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 58, 112, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

/* Background changes on hover */
.iphone-mockup:has(.app-card:nth-child(1):hover) {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.iphone-mockup:has(.app-card:nth-child(2):hover) {
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.iphone-mockup:has(.app-card:nth-child(3):hover) {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.iphone-mockup:has(.app-card:nth-child(4):hover) {
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.iphone-mockup::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.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* iPhone 16 Pro Frame */
.iphone-frame {
    width: 393px;
    height: 852px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 55px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

/* Mobile Responsive - Remove Frame */
@media (max-width: 768px) {
    .iphone-mockup {
        min-height: 100dvh;
        height: 100dvh;
        padding: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 166, 251, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(240, 58, 112, 0.2) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .iphone-frame {
        width: 100%;
        height: 100dvh;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .iphone-screen {
        width: 100%;
        height: 100%;
        background: transparent;
        border-radius: 0;
    }
    
    .dynamic-island {
        display: none;
    }
    
    .app-hero {
        height: 100dvh;
        position: relative;
    }
    
    .app-content {
        margin-top: 0;
        padding: 1rem 1.5rem;
        min-height: 100dvh;
        height: 100dvh;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .app-icon-large {
        margin-bottom: 0.5rem;
        width: 80px;
        height: 80px;
    }
    
    .app-icon-large img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .app-title {
        font-size: 2rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .app-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    
    .app-feature-grid {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }
    
    .app-card {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .app-card i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .app-cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    
    /* Mobile Section Layout - Image first, then text */
    .ios-showcase .row {
        flex-direction: column;
    }
    
    .ios-showcase .col-lg-6:first-child {
        order: 2;
    }
    
    .ios-showcase .col-lg-6:last-child {
        order: 1;
        margin-bottom: 1rem;
    }
    
    /* Android section - same layout as iOS */
    #android-section {
        margin-top: -5rem;
    }
    
    #android-section .ios-showcase .col-lg-6:first-child {
        order: 1;
        margin-bottom: 1rem;
    }
    
    #android-section .ios-showcase .col-lg-6:last-child {
        order: 2;
    }
    
    .ios-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0 2rem;
        margin-top: -12rem;
    }
    
    .android-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0 2rem;
        margin-top: -3rem;
    }
    
    .mobile-only {
        display: block;
        margin: 0 auto;
        transform: translateX(-5%);
    }
    
    .ios-image,
    .android-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .ios-text-content,
    .android-text-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .ios-text-content h2,
    .android-text-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .ios-text-content h3,
    .android-text-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .ios-text-content p,
    .android-text-content p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Default - hide mobile image */
.mobile-only {
    display: none !important;
}

/* Mobile styles - show mobile image */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}

/* iPhone Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 47px;
    overflow: hidden;
    position: relative;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 37px;
    background: #000;
    border-radius: 19px;
    z-index: 100;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* App Hero Section - Innerhalb iPhone */
.app-hero {
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 166, 251, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* App Content - Innerhalb iPhone Screen */
.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 60px; /* Platz für Dynamic Island */
}

.app-time {
    font-weight: 700;
}

.app-status {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

/* App Main Content */
.app-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    margin-top: 44px;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
        linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(0, 166, 251, 0.1));
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.app-icon-large:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.app-icon-large:hover {
    transform: scale(1.05);
}

.app-icon-large img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.app-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* App Feature Grid - wie App Icons */
.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 250px;
}

.app-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        linear-gradient(45deg, rgba(233, 30, 99, 0.08), rgba(0, 166, 251, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.app-card:hover::before {
    left: 100%;
}

.app-card:hover {
    transform: scale(1.05) translateY(-2px);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, rgba(233, 30, 99, 0.12), rgba(0, 166, 251, 0.12));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(233, 30, 99, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

/* Specific hover effects for different app cards */
.app-card:nth-child(1):hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, rgba(0, 122, 255, 0.15), rgba(0, 122, 255, 0.08));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
}

.app-card:nth-child(2):hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.app-card:nth-child(3):hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 152, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 152, 0, 0.4);
}

.app-card:nth-child(4):hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.08));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(233, 30, 99, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 30, 99, 0.4);
}

.app-card:active {
    transform: scale(0.98);
}

.app-card i {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 0.3rem;
}

/* App CTA Button - wie iOS Button */
.app-cta-button {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(45deg, #e91e63, #f03a70);
    border: none;
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.4),
        0 0 40px rgba(233, 30, 99, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.app-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.app-cta-button:hover::before {
    left: 100%;
}

.app-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.5),
        0 0 60px rgba(233, 30, 99, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)),
        linear-gradient(45deg, #f03a70, #e91e63);
}

.app-cta-button:active {
    transform: scale(0.95);
}

/* App Bottom Indicator - wie iPhone Home Indicator */
.app-bottom-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* App Features Section */
.app-features-section {
    padding: 8rem 0;
    background: #000000;
}

.app-showcase {
    margin-top: 4rem;
}

.app-image-container {
    display: flex;
    justify-content: center;
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.app-benefits {
    padding-left: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e91e63, #f03a70);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* iOS App Section */
.ios-app-section {
    min-height: 100vh;
    padding: 8rem 0;
    background: #000000;
    display: flex;
    align-items: center;
}

/* Android Image Container - specific styling for Android section */
.android-image-container {
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    margin-left: -3rem;
}

.android-image {
    width: 480px;
    height: 480px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.android-text-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.android-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.android-text-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.android-text-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.android-text-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Web App Image Container - specific styling for Web App section */
.webapp-image-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
    margin-right: -3rem;
}

.webapp-image {
    width: 480px;
    height: 480px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.webapp-text-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.webapp-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.webapp-text-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.webapp-text-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.webapp-text-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.ios-showcase {
    margin-top: 4rem;
}

.ios-showcase .row {
    margin-right: 0;
    margin-left: 0;
}

.ios-showcase .col-lg-6 {
    padding-right: 0;
    padding-left: 0;
}

.ios-text-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ios-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ios-text-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ios-text-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ios-text-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.ios-image-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
    margin-right: -3rem;
}

.ios-image {
    width: 575px;
    height: 575px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* App Process Section */
.app-process-section {
    min-height: 100vh;
    padding: 8rem 0;
    background: rgba(5, 5, 5, 0.95);
    display: flex;
    align-items: center;
}

.app-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(233, 30, 99, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e91e63, #f03a70);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}


/* Contact Section Styling */
.contact-section {
    min-height: 100vh;
    padding: 8rem 0;
    background: #000000;
    display: flex;
    align-items: center;
    position: relative;
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.contact-form {
    max-width: 500px;
    width: 100%;
}

/* Apps page specific floating label fixes */
.contact-form .modern-input {
    position: relative;
    margin-bottom: 2rem;
    overflow: visible;
}

.contact-form .modern-select {
    position: relative;
    margin-bottom: 2rem;
    margin-top: 2rem;
    overflow: visible;
}

.contact-form .floating-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    z-index: 1;
    white-space: nowrap;
}

.contact-form .modern-input .form-control:focus + .floating-label,
.contact-form .modern-input .form-control:not(:placeholder-shown) + .floating-label {
    top: -1.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary-pink);
    background: rgba(0, 0, 0, 0.98);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    z-index: 1000;
    transform: translateY(0);
}

.contact-form .modern-select .floating-label {
    top: -1rem;
    left: 0.75rem;
    font-size: 0.9rem;
    color: #ff4081;
    background: rgba(0, 0, 0, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    z-index: 1001;
    transform: translateY(0);
    font-weight: 600;
    border: 1px solid rgba(255, 64, 129, 0.3);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.contact-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

/* Form Check Styling */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-check:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 58, 112, 0.3);
}

.form-check-input {
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}

.form-check-input:checked {
    background: linear-gradient(45deg, #e91e63, #00a6fb);
    border-color: #e91e63;
    box-shadow: 0 0 10px rgba(240, 58, 112, 0.3);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.form-check-label a {
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-check-label a:hover {
    color: #f03a70;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-screen {
        width: 300px;
        height: 650px;
        border-radius: 30px;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .app-benefits {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .app-screen {
        width: 280px;
        height: 600px;
    }
    
    .app-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-pill {
        width: 100%;
        justify-content: center;
    }
}
