@charset "utf-8";
/* CSS Document */

.hp-contact-section {
    padding: 3.5rem 1.5rem 3rem;
    background: #f7faf7; /* light, to sit between hero and testimonials */
}

.hp-contact-container {
    max-width: 1140px;
    margin: 0 auto;
}

.hp-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 3rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(8, 36, 20, 0.14);
    padding: 2.5rem 3rem;
}

/* Left column */
.hp-contact-heading {
    font-size: 1.7rem;
    margin: 0 0 1.5rem;
    color: #173f2a;
}

.hp-contact-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.75rem;
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
}

.hp-contact-label {
    font-weight: 600;
    color: #2f4f33;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hp-contact-value {
    color: #33423a;
    line-height: 1.5;
}

.hp-contact-value a {
    color: #f97316; /* warm orange to match “Get Quote” button */
    text-decoration: none;
    font-weight: 600;
}

.hp-contact-value a:hover {
    text-decoration: underline;
}

/* Simple icon circles */
.hp-contact-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e3f3e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1f6b3a;
}

/* Use pseudo-content so no external icon font is required */
.hp-contact-icon--home::before {
    content: "⌂";
}
.hp-contact-icon--mail::before {
    content: "✉";
}
.hp-contact-icon--phone::before {
    content: "☎";
}
.hp-contact-icon--web::before {
    content: "🌐";
}

/* Right column: form */
.hp-contact-form-wrap {
    align-self: center;
}

.hp-contact-subheading {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: #173f2a;
}

.hp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hp-contact-field label,
.hp-contact-anti label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #374151;
}

.hp-contact-field input,
.hp-contact-field textarea,
.hp-contact-anti input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.55rem 0.65rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hp-contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.hp-contact-field input:focus,
.hp-contact-field textarea:focus,
.hp-contact-anti input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.hp-contact-anti {
    margin-top: 0.4rem;
}

.hp-contact-anti input {
    max-width: 130px;
}

/* Submit button styled to echo the orange CTA */
.hp-contact-submit {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(249, 115, 22, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hp-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.55);
}

.hp-contact-submit:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.hp-contact-note {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 900px) {
    .hp-contact-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hp-contact-row {
        grid-template-columns: 115px 1fr;
    }
}

@media (max-width: 640px) {
    .hp-contact-section {
        padding: 2.5rem 1rem 2.5rem;
    }

    .hp-contact-card {
        padding: 1.75rem 1.25rem;
    }

    .hp-contact-row {
        grid-template-columns: 1fr;
    }

    .hp-contact-label {
        margin-bottom: 0.2rem;
    }
}
.sendTo {
    width:257px;
}
