/* Contact page styles */

.contact-info-map {
    max-width: 700px;
    width: 100%;
    margin: 2rem 0 0 0;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s;
}

.contact-info-map:hover {
    transform: scale(1.02);
}

.contact-info-map iframe {
    width: 100%;
    height: 405px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-map iframe {
    height: 405px;
    border-radius: 1rem;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 8px #2563eb22;
}

.contact-modal-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    min-width: 320px;
    max-width: 90vw;
    background: #f3f4f6;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 3px solid #2563eb;
    padding: 2.5rem 2rem;
    font-size: 2rem;
    color: #1e293b;
    z-index: 99999;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal-msg.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.contact-modal-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-modal-icon.success {
    color: #22c55e;
}

.contact-modal-icon.error {
    color: #ef4444;
}

.contact-modal-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-section {
    background: #fff;
    padding: 4rem 0;
}

.contact-container {
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-flex {
        flex-direction: row;
    }
}

.contact-info-col {
    flex: 1 1 0%;
}

.contact-info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: 1rem;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #1e40af;
    margin-top: 0.25rem;
}

.contact-info-label {
    font-weight: 600;
    color: #1e293b;
}

.contact-info-text {
    color: #64748b;
}

.contact-form-col {
    flex: 1 1 0%;
}

.contact-form-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    box-sizing: border-box;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
}

.contact-form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1e293b;
    background: #fff;
    transition: border 0.2s, box-shadow 0.2s;
}

.contact-form-input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 2px #60a5fa33;
}

.contact-form-btn {
    width: 100%;
    background: #1e40af;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form-btn:hover {
    background: #1e3a8a;
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        max-width: 95% !important;
        margin: auto !important;
        padding: 1.3rem !important;
        border-radius: 0.75rem !important;
    }

    .contact-info-map iframe {
        height: 260px !important;
    }
}