﻿.contact-section {
    background: #f9f9f9;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #06402B;
}

.contact-subtitle {
    color: #555;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.contact-info a,
.contact-info p {
    margin: 0;
    font-size: 15px;
    color: #333;
    text-decoration: none !important;
}

    .contact-info a:hover {
        color: #06402B;
    }

/* Brand colors */
.bg-green {
    background: #06402B;
}

.bg-gold {
    background: #debe74;
    color: #06402B;
}

.bg-dark {
    background: #333;
}

.bg-whatsapp {
    background: #25D366;
}

.bg-facebook {
    background: #1877F2;
}

.bg-instagram {
    background: #E1306C;
}

.bg-linkedin {
    background: #0A66C2;
}

.bg-twitter {
    background: #1DA1F2;
}

.bg-youtube {
    background: #FF0000;
}
