/* =====================================================
   CCSOL CONTACT PAGE – STABLE VERSION
===================================================== */

/* ================= HERO ================= */

.ccsol-hero {
    padding: 150px 20px;
    text-align: center;
    background:
        linear-gradient(rgba(20,0,40,0.85), rgba(0,0,0,0.9)),
        url('https://www.ccsol.net/wp-content/uploads/2023/04/contact-us-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.ccsol-hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ccsol-hero p {
    font-size: 18px;
    color: #e5d9ff;
}

/* ================= BREADCRUMB ================= */

.ccsol-breadcrumb {
    padding: 20px 0;
    background: #140028;
}

.ccsol-breadcrumb p {
    color: #ffffff;
    font-size: 14px;
}

.ccsol-breadcrumb a {
    color: #c084fc;
    text-decoration: none;
}

.ccsol-breadcrumb a:hover {
    color: #ffffff;
}

/* ================= CONTACT SECTION ================= */

.ccsol-contact-section {
    padding: 120px 0;
    background: #f5f0ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ================= LEFT COLUMN ================= */

.contact-info h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2b0a4a;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #3c1a66;
}

.contact-info strong {
    color: #2b0a4a;
}

.contact-info a {
    color: #6b21a8;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: #9333ea;
}

.response-time {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #6b21a8;
    font-weight: 600;
}

/* Office Card */

.office-box {
    margin-top: 30px;
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(147,51,234,0.15);
}

.office-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2b0a4a;
}

.office-box p {
    font-size: 14px;
    color: #4b2a7a;
    line-height: 1.6;
}

/* ================= FORM BOX ================= */

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* Inputs */

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #9333ea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(147,51,234,0.15);
}

/* Textarea */

.contact-form-box textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button */

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg,#6b21a8,#9333ea);
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147,51,234,0.3);
}

/* ================= FORM RESPONSE ================= */

#form-response {
    margin-top: 15px;
    font-size: 14px;
    color: #2b0a4a;
}

/* ================= CTA SECTION ================= */

.ccsol-final-cta {
    background: linear-gradient(135deg,#140028,#1f0048);
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.ccsol-final-cta h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg,#6b21a8,#9333ea);
    padding: 14px 30px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147,51,234,0.35);
}

/* ================= MAP ================= */

.ccsol-map iframe {
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ccsol-hero {
        padding: 120px 20px;
    }

    .ccsol-hero h1 {
        font-size: 34px;
    }

}
