/* ================= RESET ================= */

body {
  background: #fff;
  font-family: "Mukta Mahee", arial, sans-serif;
  font-weight: 200;
  letter-spacing: .5px; 
  word-spacing: 2px; 
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
}

html, body {
  overflow-x: hidden;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================= LEFT INFO ================= */

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #0a2540;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.info-item i {
    font-size: 20px;
    color: #f3602b;
    margin-top: 5px;
}

.info-item p,
.info-item a {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* ================= FORM ================= */

.contact-form {
    flex: 1;
}

.contact-form form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f3602b;
    box-shadow: 0 0 0 3px rgba(243,96,43,0.15);
    outline: none;
}

/* ================= ERRORS ================= */

.error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

.error-border {
    border-color: #e74c3c !important;
}

/* ================= BUTTON ================= */

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #f3602b, #ff7a45);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243,96,43,0.35);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 26px;
        text-align: center;
    }
}
