.triple-pillar-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.pillar-logo {
    max-width: 140px;
    margin-bottom: 25px;
    display: block;
}

.subtle-h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.pillar-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.small-bis {
    font-size: 0.8rem !important;
    color: #aaa !important;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* MAP STYLING */
.map-wrapper-flat {
    filter: grayscale(100%);
    border: 1px solid #eee;
    margin-bottom: 20px;
    height: 250px;
}

.map-wrapper-flat:hover { filter: grayscale(0%); }

/* MINIMAL FORM */
.minimal-input {
    width: 100%;
    padding: 12px 0;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.minimal-input:focus {
    outline: none;
    border-bottom-color: var(--black);
}

/* THE NEW BUTTON (FLAT GREEN) */
.btn-premium-green {
    width: 100%;
    padding: 18px;
    background: var(--logo-green); /* Use your specific #4CAF50 or similar */
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px; /* Premium architectural feel */
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.2s;
}

.btn-premium-green:hover {
    background: #3e8e41; /* Slightly deeper green for feedback */
    transform: translateY(-1px); /* Very subtle "lift" without 3D shadows */
}

/* CHANNELS FOOTER */
.contact-channels-footer {
    margin-top: 25px;
    text-align: center;
}

.wa-minimal, .email-minimal {
    display: block;
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.wa-minimal { color: #25D366; font-weight: 700; }
.email-minimal { color: #999; font-weight: 400; }

.wa-minimal:hover, .email-minimal:hover {
    color: var(--black);
}

.selection-tag-flat {
    background: #f4fbf4;
    color: var(--logo-green);
    padding: 10px;
    font-size: 0.8rem;
    border-left: 2px solid var(--logo-green);
    margin-bottom: 15px;
    text-align: center;
}


.legal-strip-minimal {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
    text-align: center;
    font-size: 0.75rem;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .triple-pillar-layout { grid-template-columns: 1fr; gap: 40px; }
}



.legal-strip-minimal {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid #f5f5f5;
    text-align: center;
    font-size: 0.75rem;
    color: #ccc;
    letter-spacing: 0.5px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-link-item {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-link-item:hover {
    color: var(--logo-green);
    text-decoration: underline;
}

.separator {
    color: #eee;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .separator { display: none; }
    .legal-links { flex-direction: column; gap: 5px; }
}


.wa-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and number */
    color: #999; /* Neutral color until hover */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wa-icon {
    transition: transform 0.3s ease;
}

.wa-minimal:hover {
    color: #25D366; /* Official WhatsApp Green on hover */
}

.wa-minimal:hover .wa-icon {
    transform: scale(1.1); /* Subtle "pop" on the icon */
}

.contact-channels-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}


#contact-form {
    /* Adds a 'buffer' so the form doesn't hit the very top edge */
    scroll-margin-top: 10vh;
}
