/* App Download Section Styling - COMPACT VERSION */
.app-download-section {
    padding: 50px 0; /* Tightened padding */
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.app-download-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Swapped or adjusted to fit text and map nicely */
    gap: 40px;
    align-items: center;
}

/* Left Content */
.app-content-left {
    display: flex;
    flex-direction: column;
}

.trust-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-weight: 700;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    width: fit-content;
}

.app-download-section h2 {
    font-size: 36px; /* Scaled down */
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.app-download-section h2 span {
    color: #28a745;
}

.app-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Store Buttons & QR */
.download-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 20px;
}

.store-btn .btn-text span {
    font-size: 9px;
    text-transform: uppercase;
}

.store-btn .btn-text strong {
    font-size: 14px;
}

.qr-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 6px;
}

.qr-code img {
    width: 100%;
}

.qr-text {
    font-size: 12px;
    color: #888;
}

/* Right Content - Map */
.app-content-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.india-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px; /* Scaled down map */
}

.india-map-svg {
    width: 100%;
    height: auto;
    opacity: 0.6; /* More subtle */
}

/* Map Pins */
.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
}

.pin-marker {
    width: 100%;
    animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 991px) {
    .app-download-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-badge { margin: 0 auto 15px auto; }
    .app-description { margin: 0 auto 30px auto; }
    .download-actions { justify-content: center; }
    
    .india-map-wrapper {
        margin-top: 40px;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .download-actions {
        flex-direction: column;
        gap: 20px;
    }
    .qr-wrapper {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 15px;
    }
}
