/* Contact Section */
.contact-section {
    min-height: calc(100vh - 70px);
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.contact-container {
    flex: 0 0 100%;
    max-width: 800px;
    min-height: auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
}

.contact-header {
    background: #ffffff;
    color: #333;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    margin-top: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}

.contact-content {
    padding: 25px;
    position: relative;
    min-height: auto;
    background: #ffffff;
    margin-bottom: 0;
    text-align: left;
}

.contact-single-box {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.contact-item {
    margin-bottom: 20px;
    padding: 0;
    border-bottom: none;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.contact-answer {
    display: block;
    padding: 15px 20px;
    background: #fff9ed;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-top: 8px;
    position: relative;
    backdrop-filter: blur(5px);
}

.contact-answer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    padding: 0;
    border: none;
    background: transparent;
    text-align: center;
}

.contact-answer p:first-child {
    margin-bottom: 15px;
}

.contact-answer p strong {
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
}

.contact-images-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.contact-image-container {
    text-align: center;
    margin-top: 10px;
    flex: 0 0 auto;
}

.contact-image-container a {
    display: inline-block;
    text-decoration: none;
}

.contact-image {
    max-width: 100%;
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-image {
    width: 180px;
}

.image-caption {
    font-size: 0.8rem;
    color: #333;
    margin-top: 8px;
    font-weight: 500;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Contact Container Mobile */
    .contact-container {
        padding: 10px;
    }
    
    /* Contact Header Mobile */
    .contact-header {
        margin-bottom: 10px;
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    /* Contact Content Mobile */
    .contact-content {
        padding: 20px;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-item h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .contact-answer {
        padding: 18px 22px;
        margin-top: 6px;
    }

    .contact-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-images-row {
        gap: 12px;
    }
    
    .contact-image {
        width: 180px;
    }
    
    .qr-image {
        width: 140px;
    }
    
    .image-caption {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Contact Container Small Mobile */
    .contact-container {
        padding: 8px;
    }
    
    /* Contact Header Small Mobile */
    .contact-header {
        margin-bottom: 8px;
        padding: 15px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    /* Contact Content Small Mobile */
    .contact-content {
        padding: 15px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .contact-answer {
        padding: 15px 18px;
        margin-top: 5px;
    }

    .contact-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .contact-images-row {
        gap: 10px;
    }
    
    .contact-image {
        width: 200px;
    }
    
    .qr-image {
        width: 180px;
    }
    
    .image-caption {
        font-size: 0.7rem;
        margin-top: 6px;
    }
}