/* Mobile App Page Styles */

/* Banner Section */
.app-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/mobile-app-bg.jpg') center/cover no-repeat;
    background-color: var(--dark-color);
}

/* App Intro */
.app-intro {
    padding: 2rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
}

/* App Features Section */
.app-features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(123, 44, 191, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(123, 44, 191, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* App Comparison */
.app-comparison {
    padding: 4rem 0;
    background-color: rgba(10, 10, 21, 0.5);
    border-radius: 10px;
    margin-bottom: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 3rem;
    background-color: rgba(26, 26, 46, 0.7);
    box-shadow: var(--card-shadow);
}

.comparison-header {
    display: flex;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
}

.comparison-row:nth-child(even) {
    background-color: rgba(26, 26, 46, 0.3);
}

.col-feature, .col-j08, .col-browser {
    padding: 1.5rem;
}

.col-feature {
    flex: 0 0 40%;
    text-align: left;
    font-weight: 600;
}

.col-j08, .col-browser {
    flex: 0 0 30%;
    text-align: center;
}

.col-j08 i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.col-browser i {
    color: var(--danger-color);
    margin-right: 0.5rem;
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
}

.comparison-note p {
    color: var(--gray-color);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* App Security */
.app-security {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.security-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.security-info {
    flex: 1;
}

.security-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.security-info p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
}

.security-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.security-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-animation {
    width: 200px;
    height: 200px;
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-animation::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.shield-animation i {
    font-size: 6rem;
    color: var(--primary-color);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Download Section */
.app-download {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.download-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(123, 44, 191, 0.1);
    flex: 0 0 350px;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
}

.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.android .download-icon {
    color: #3DDC84;
    background-color: rgba(61, 220, 132, 0.1);
}

.ios .download-icon {
    color: #A2AAAD;
    background-color: rgba(162, 170, 173, 0.1);
}

.download-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.device-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.device-list li {
    margin-bottom: 0.8rem;
    color: var(--gray-color);
    font-size: 1rem;
}

.file-info {
    margin-bottom: 1.5rem;
}

.file-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.btn-download {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-download:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.qr-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-code {
    width: 150px;
    height: 150px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.qr-code img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qr-download p {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
}

/* Installation Guide */
.installation-guide {
    padding: 4rem 0;
    background-color: rgba(10, 10, 21, 0.5);
    border-radius: 10px;
    margin-bottom: 4rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(123, 44, 191, 0.1);
    text-align: center;
    flex: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.support-note {
    text-align: center;
    margin-top: 2rem;
}

.support-note p {
    color: var(--gray-color);
}

.support-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.support-note a:hover {
    color: var(--accent-color);
}

/* App Screenshots */
.app-screenshots {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.screenshots-slider {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.screenshot-slide {
    text-align: center;
}

.screenshot-slide p {
    margin-top: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background-color: #222;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.phone-frame:hover {
    transform: translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1) 0%, rgba(247, 37, 133, 0.1) 100%);
    z-index: 1;
}

.screen-1 {
    background-image: linear-gradient(to bottom, var(--primary-color), var(--dark-color));
}

.screen-2 {
    background-image: linear-gradient(to bottom, var(--secondary-color), var(--dark-color));
}

.screen-3 {
    background-image: linear-gradient(to bottom, var(--accent-color), var(--dark-color));
}

.screen-4 {
    background-image: linear-gradient(to bottom, var(--primary-color), var(--dark-color));
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-wrap: wrap;
    }
    
    .step-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 1300px) {
    .security-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .col-feature, .col-j08, .col-browser {
        padding: 1.2rem 0.8rem;
    }
    
    .screenshots-slider {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        flex: 0 0 100%;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
    
    .comparison-header, .comparison-row {
        flex-direction: column;
    }
    
    .col-feature, .col-j08, .col-browser {
        flex: 0 0 100%;
        text-align: center;
        border-bottom: 1px solid rgba(123, 44, 191, 0.1);
        padding: 1rem;
    }
    
    .col-feature {
        background-color: rgba(123, 44, 191, 0.1);
    }
}

@media (max-width: 576px) {
    .feature-icon, .download-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .phone-frame {
        width: 150px;
        height: 300px;
    }
    
    .section-header h2,
    .security-info h2,
    .download-content h2 {
        font-size: 2rem;
    }
    
    .screenshots-slider {
        gap: 1.5rem;
    }
    
    .shield-animation {
        width: 150px;
        height: 150px;
    }
    
    .shield-animation i {
        font-size: 4rem;
    }

		.slider-nav{
			display: none;
		}
} 