/* Mobile Page Styles */

/* Hero Banner */
.mobile-hero {
    position: relative;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    display: flex;
    align-items: center;
    padding: 30px 50px;
}

.mobile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.2;
    z-index: 1;
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-right: 30px;
}

.mobile-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.mobile-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.mobile-hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ddd;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.android-btn, .ios-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.android-btn {
    background-color: #3DDC84;
    color: #000;
}

.ios-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.android-btn i, .ios-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.android-btn:hover {
    background-color: #2cc974;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 220, 132, 0.3);
}

.ios-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.mobile-device {
    position: relative;
    z-index: 2;
    flex: 0 0 250px;
}

.phone-frame {
    width: 250px;
    height: 500px;
    background-color: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #101523, #1a2a6c);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="50" y="0" fill="%23101523"/><rect width="200" height="150" y="50" fill="%23101523"/><circle cx="100" cy="25" r="15" fill="%23ffc107"/></svg>') no-repeat top center;
    background-size: contain;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
}

.features-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

/* Platform Sections */
.platform-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.platform-icon i {
    font-size: 30px;
    color: var(--primary);
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.platform-content {
    display: flex;
    gap: 30px;
}

.platform-content.reversed {
    flex-direction: row-reverse;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.platform-info p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.platform-features {
    margin-bottom: 25px;
    padding-left: 0;
}

.platform-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.platform-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.download-steps {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.step {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: 0 auto 10px;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}

.step-content p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
}

.download-btn, .visit-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn.android {
    background-color: #3DDC84;
    color: #000;
}

.download-btn.ios {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.visit-btn {
    background-color: var(--primary);
    color: var(--dark);
}

.download-btn i, .visit-btn i {
    margin-right: 10px;
}

.download-btn:hover, .visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.platform-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background-color: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.android-screen, .ios-screen, .web-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.android-screen {
    background: linear-gradient(to bottom, #3DDC84, #2cc974);
}

.ios-screen {
    background: linear-gradient(to bottom, #007AFF, #5AC8FA);
}

.web-screen {
    background: linear-gradient(to bottom, #FF9500, #FF5E3A);
}

.android-screen::before, .ios-screen::before, .web-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.7;
}

.browser-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.browser-logos i {
    font-size: 30px;
    color: #ccc;
    transition: all 0.3s ease;
}

.browser-logos i:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.devices-mockup {
    position: relative;
    height: 400px;
}

.tablet-screen {
    width: 250px;
    height: 350px;
    background-color: #000;
    border-radius: 20px;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* QR Section */
.qr-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.qr-container h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.qr-image {
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin: 0 auto 10px;
    position: relative;
}

.qr-image img, .qr-image-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qr-container p {
    font-size: 0.9rem;
    color: #ccc;
}

.qr-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.qr-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.qr-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.qr-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.qr-info {
    flex: 1;
}

.qr-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.qr-info p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.qr-benefits {
    padding-left: 0;
}

.qr-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.qr-benefits li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.large-qr {
    text-align: center;
}

.qr-image-large {
    width: 200px;
    height: 200px;
    background-color: #fff;
    margin: 0 auto 10px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.large-qr p {
    font-size: 1rem;
    color: #ccc;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cta-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 992px) {
    .platform-content {
        flex-direction: column;
    }
    
    .platform-content.reversed {
        flex-direction: column;
    }
    
    .platform-image {
        margin-top: 30px;
        align-self: center;
    }
    
    .qr-content {
        flex-direction: column;
    }
    
    .download-steps {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .mobile-hero {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    
    .mobile-hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .android-btn, .ios-btn {
        width: 100%;
        justify-content: center;
    }
} 