/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #63c0e5;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
}

/* ===== Grid Layout ===== */
.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== Info Column ===== */
.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-heading {
    color: #63c0e5;
    margin-bottom: 30px;
    font-size: 20px;
    padding-left: 65px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-wrapper {
    width: 55px;
    height: 55px;
    background: #63c0e5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h5 {
    color: #63c0e5;
    margin-bottom: 8px;
}

.muted-text {
    color: #666;
}

.small-text {
    font-size: 14px;
}

/* ===== Form Column ===== */
.contact-form-col {
    flex: 1;
    min-width: 320px;
}

.contact-form-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-title {
    text-align: center;
    color: #63c0e5;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

/* ===== Form ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #63c0e5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,102,0,0.15);
}

/* ===== Button ===== */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #63c0e5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #63c0e5;
}



/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Fix container width issues */
.contact-container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Make sure grid fits screen */
.contact-grid {
    width: 100%;
}

/* Make columns full width on mobile */
@media screen and (max-width: 768px) {

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-col,
    .contact-form-col {
        width: 100%;
        min-width: 100%;
    }

    .contact-form-card {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-item {
        width: 100%;
    }
}

