.download-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.18) 0%, transparent 50%);
    opacity: 1;
}

.device-mockup {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
}

.device-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.app-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 1.5rem);
}

.app-feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    fill: white;
    stroke-width: 1.5;
    stroke: currentColor;
    color: var(--primary);
}

.store-badge {
    height: 60px;
    margin: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-badge:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
}

.app-features-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    background: linear-gradient(to right, #ffffff, #c6c6c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-heading {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #c6c6c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-subheading {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 460px;
    margin-left: 0;
    margin-right: auto;
}

.qr-code-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    text-align: center;
}

.qr-codes-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-platform {
    font-weight: 600;
    font-size: 1rem;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 1rem;
    color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.qr-platform.ios {
    background: linear-gradient(135deg, #0396FF, #0D5DFF);
}

.qr-platform.android {
    background: linear-gradient(135deg, #71DD37, #19A536);
}

.qr-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    width: 160px;
    margin: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.qr-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.qr-label {
    color: var(--dark);
    font-size: 1rem;
    margin-top: 0.75rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

/* App store badges with CSS */
.app-store-badge {
    background: black;
    border-radius: 12px;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin: 10px;
    min-width: 200px;
    height: 64px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.app-store-badge:hover {
    transform: translateY(-6px);
    filter: brightness(1.05);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.app-store-icon {
    margin-right: 10px;
    font-size: 32px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
}

.app-store-text small {
    font-size: 10px;
    opacity: 0.8;
}

.app-store-text strong {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
}

.play-store-badge {
    background: black;
    border-radius: 12px;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin: 10px;
    min-width: 200px;
    height: 64px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.play-store-badge:hover {
    transform: translateY(-6px);
    filter: brightness(1.05);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.download-cta {
    padding: 3rem 0;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.download-cta h3 {
    background: linear-gradient(to right, #ffffff, #c6c6c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-gradient {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-outline-light {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Contact Modal Styles */
.modal-backdrop {
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(5px);
}

.contact-modal {
    background: var(--dark);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke-width: 1.5;
    stroke: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-value:hover {
    color: white;
    text-decoration: none;
}

.contact-value::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: white;
    transition: width 0.3s ease;
}

.contact-value:hover::after {
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
}

.modal-close svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: #ef4444;
    stroke-width: 2;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .download-heading {
        font-size: 2.5rem;
    }
    
    .app-features-title {
        font-size: 1.75rem;
    }
    
    .download-section {
        padding: 100px 0 60px;
    }
    
    .device-mockup {
        max-width: 250px;
        margin-top: 2rem;
    }
    
    .qr-codes-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .qr-code-section {
        padding: 1.8rem 1.5rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .qr-container {
        width: 150px;
    }
} 