/* =========================
   PAGE TITLE
========================= */
.contact-title {
    padding: 80px 0;
    background: var(--sky-semi-bg);
    text-align: center;
}

.contact-label {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(217,119,6,0.12);

    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}

.contact-title h2 {
    color: var(--logo-high);
   /* font-size: 42px; 
    margin-bottom: 20px; */
}

.contact-title p {
    color: var(--primary-dark);
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
   /* font-size: 18px; */
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

/* LEFT */
.contact-info {
    flex: 1;
    margin-left: 20px;
}

.contact-info h3 {
   /* font-size: 36px; */
    color: var(--logo-high);
    margin-bottom: 9px;
}

.contact-info > p {
   /* color: var(--text-color); */
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-box {
    background: var(--white);

    padding: 25px;

    border-radius: 15px;

    margin-bottom: 20px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.info-box h4 {
    color: var(--deep-solar-blue);
    margin-bottom: 10px;
}

.info-box p {
 /* color: var(--text-color); */
    line-height: 1.7;
}

/* RIGHT */
.contact-form {
    flex: 1;
    margin-right: 20px;
}

.contact-form form {
    background: var(--light-bg);

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid var(--sky-semi-bg);

    border-radius: 10px;

    font-size: 15px;
}

.contact-form button {

    width: 100%;

    border: none;

    background: var(--sky-light-bg);

    color: var(--light-bg);

    padding: 16px;

    border-radius: 10px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;
}

.contact-form button:hover {
    background: var(--primary-color);
}

/* =========================
   CONTACT BENEFITS
========================= */
.contact-benefits {
    padding: 100px 0;
    background: var(--light-bg);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
   /* font-size: 42px; 
    color: #111827; */
    margin-bottom: 10px;
}

.benefits-header p {
   /* color: #64748b;
    font-size: 18px; */
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--light-bg);

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    border: 1px solid var(--primary-color);

    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Quick Contact */
.quick-contact {
    margin-top: 60px;

    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

.call-btn,
.whatsapp-btn {

    padding: 15px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
}

.call-btn:hover {
    background: rgba(217, 119, 6, 0.50);
}

.whatsapp-btn {
    background: var(--green-bg);
    color: white;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 992px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-title h2 {
        font-size: 32px;
    }

    .contact-info h3 {
        font-size: 28px;
    }
}