/* ===================== */
/* HERO SECTION         */
/* ===================== */

.hero-contact {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    padding: 20px;
}

.hero-contact-content h1 {
    font-size: 48px;
    color: #f5c542;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-contact-content p {
    font-size: 18px;
    color: #d0d0d0;
}

/* ===================== */
/* CONTACT SECTION      */
/* ===================== */

.contact-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================== */
/* CONTACT WRAPPER      */
/* ===================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

/* ===================== */
/* CONTACT INFO         */
/* ===================== */

.contact-info h2 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5c542;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f7f3;
    border-radius: 10px;
    border-left: 4px solid #f5c542;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    color: #67047a;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.info-content p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #f5c542;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #ffd86b;
}

/* ===================== */
/* CALL BUTTON          */
/* ===================== */

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, #f5c542, #ffd86b);
    color: #2b0f2f !important;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 14px !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* CONTACT FORM         */
/* ===================== */

.contact-form-wrapper h2 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #67047a;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #2b0f2f;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5c542;
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===================== */
/* ALERTS               */
/* ===================== */

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 18px;
}

/* ===================== */
/* SUBMIT BUTTON        */
/* ===================== */

.submit-button {
    padding: 14px 40px;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    color: #f5c542;
    border: 2px solid #f5c542;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: #f5c542;
    color: #2b0f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

.submit-button i {
    font-size: 16px;
}

/* ===================== */
/* MAP SECTION          */
/* ===================== */

.map-section h2 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5c542;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    border-radius: 15px;
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .contact-section {
        padding: 40px 15px;
    }

    .hero-contact-content h1 {
        font-size: 36px;
    }

    .hero-contact-content p {
        font-size: 16px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .info-card {
        padding: 15px;
        gap: 15px;
    }

    .info-icon {
        font-size: 28px;
    }

    .info-content h3 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .map-section h2 {
        font-size: 24px;
    }

}

@media (max-width: 480px) {

    .contact-section {
        padding: 30px 10px;
    }

    .hero-contact {
        height: 40vh;
    }

    .hero-contact-content h1 {
        font-size: 26px;
    }

    .hero-contact-content p {
        font-size: 14px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    .info-card {
        padding: 12px;
        margin-bottom: 15px;
    }

    .info-icon {
        font-size: 24px;
    }

    .info-content h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .info-content p {
        font-size: 13px;
    }

    .call-button {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 12px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-button {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
    }

    .submit-button i {
        font-size: 14px;
    }

    .map-section h2 {
        font-size: 20px;
    }

    .map-container {
        border-radius: 10px;
    }

    .map-container iframe {
        height: 300px !important;
    }

}
/* ===================== */
/* QR CODE SECTION      */
/* ===================== */

.qr-code-section {
    padding: 60px 20px;
    background: #ffffff;
}

.qr-code-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #f9f7f3, #fef8f1);
    border-radius: 20px;
    border: 2px solid #f5c542;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.qr-code-image {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    padding: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-code-image:hover {
    transform: scale(1.05);
}

.qr-text {
    font-size: 15px;
    color: #999999;
    margin: 0;
    font-weight: 500;
}

/* ===================== */
/* QR CODE RESPONSIVE   */
/* ===================== */

@media (max-width: 768px) {
    .qr-code-section {
        display: none;
    }
}