.contact-page {
    padding: 10px 20px;
    background: #f5f8fc;
}

.page-title {
    text-align: center;
    font-size: 32px;
    color: #0a3d62;
    margin-bottom: 5px;
}

.page-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* LEFT PANEL */
.contact-info {
    background: linear-gradient(135deg, #0a3d62, #1e90ff);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #ffd700;
}

.contact-note {
    margin-top: 25px;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1e90ff, #0a3d62);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
/* CONTACT IMAGE */
.contact-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* GOOGLE MAP */
.map-box {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
}

.map-box iframe {
    width: 100%;
    height: 180px;
    border: none;
}


/* FORM PANEL */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    margin-bottom: 25px;
    color: #0a3d62;
}

/* INPUT GROUPS */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #0a3d62;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1e90ff, #0a3d62);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== Submit Button ===== */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0b5ed7, #084298);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
}

.submit-btn:disabled {
    background: #9bb7e5;
    cursor: not-allowed;
}

.submit-btn .loader {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .loader {
    display: block;
}

/* ===== Form Status Message ===== */
.form-status {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    color: #198754;
}

.form-status.error {
    color: #dc3545;
}

