@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --contact-bg: #f6f7f3;
    --contact-surface: #ffffff;
    --contact-text: #14220f;
    --contact-muted: #51624b;
    --contact-accent: #f28b23;
    --contact-accent-2: #2a8a45;
    --contact-border: #dbe3d4;
    --contact-shadow: 0 18px 40px rgba(29, 56, 20, 0.1);
}

body {
    background: radial-gradient(circle at 10% 15%, #fff6e6 0, transparent 30%), radial-gradient(circle at 90% 8%, #e8f6eb 0, transparent 28%), var(--contact-bg);
    font-family: "Manrope", sans-serif;
    color: var(--contact-text);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 38px 0 16px;
}

.shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.shape-one {
    width: 210px;
    height: 210px;
    top: 8px;
    left: -80px;
    background: rgba(242, 139, 35, 0.22);
}

.shape-two {
    width: 180px;
    height: 180px;
    right: -30px;
    top: 25px;
    background: rgba(42, 138, 69, 0.2);
}

.hero-card {
    background: linear-gradient(130deg, #fffdf7 0%, #f3faf1 100%);
    border: 1px solid var(--contact-border);
    border-radius: 22px;
    box-shadow: var(--contact-shadow);
    padding: 40px 34px;
    position: relative;
}

.kicker {
    margin-bottom: 10px;
    color: var(--contact-accent-2);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.hero-card h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 12px;
}

.hero-text {
    max-width: 720px;
    color: var(--contact-muted);
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-call,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-primary-call {
    background: var(--contact-accent);
    color: #fff;
}

.btn-whatsapp {
    background: var(--contact-accent-2);
    color: #fff;
}

.btn-primary-call:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    text-decoration: none;
}

.contact-grid-wrap {
    padding: 14px 0 70px;
}

.contact-card {
    border-radius: 18px;
    background: var(--contact-surface);
    border: 1px solid var(--contact-border);
    box-shadow: 0 8px 25px rgba(22, 49, 18, 0.07);
    padding: 24px 22px;
    height: 100%;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(242, 139, 35, 0.18), rgba(42, 138, 69, 0.16));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #1c6c36;
    font-size: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    color: var(--contact-muted);
    margin-bottom: 5px;
}

.contact-card a:hover {
    color: var(--contact-accent-2);
    text-decoration: none;
}

.message-box {
    background: #fff;
    border: 1px solid var(--contact-border);
    border-radius: 22px;
    box-shadow: var(--contact-shadow);
    padding: 30px;
    margin-top: 8px;
}

.message-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.message-box p {
    color: var(--contact-muted);
}

.quick-points {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.quick-points li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #32452b;
}

.quick-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--contact-accent-2);
    position: absolute;
    left: 0;
    top: 0;
}

.contact-form label {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid #cfd9c7;
    height: 46px;
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-form .form-control:focus {
    border-color: #7eab76;
    box-shadow: 0 0 0 0.2rem rgba(42, 138, 69, 0.15);
}

.send-btn {
    background: linear-gradient(135deg, #2a8a45, #1d6d3c);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    padding: 12px 20px;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-card h1 {
        font-size: 34px;
    }

    .message-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .hero-card {
        padding: 26px 18px;
    }

    .hero-card h1 {
        font-size: 30px;
    }

    .message-box {
        padding: 20px 15px;
    }
}
