/* Content Cards */
.hover-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Contact Info Text Size */
.contact-info-text {
    font-size: 17px;
    line-height: 1.6;
}

/* Form Input Focus Effects */
input:focus, textarea:focus, select:focus {
    border: 2px solid #00984B !important;
    box-shadow: 0 0 5px #8be0b0 !important;
    outline: none;
}

input, textarea, select {
    transition: all 0.3s ease;
}

.hover-image {
    transition: transform 0.3s ease;
}
.hover-image:hover {
    transform: scale(1.05);
}

.gallery-item {
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section with Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #00984B 0%, #00A65A 50%, #16a34a 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 152, 75, 0.25);
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* Contact Icons - Brand Colors */
.icon-green {
    background: linear-gradient(135deg, #00984B 0%, #00A65A 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #00984B 0%, #00A65A 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #00984B 0%, #00A65A 100%);
    transition: all 0.2s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.13);
    border-radius: 12px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #00A65A 0%, #16a34a 100%);
    box-shadow: 0 6px 16px rgba(0, 152, 75, 0.4);
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.05);
    color: #fff;
}

/* Social Icons */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Contact Social Section - Spacing */
.contact-social {
    margin-top: 24px;
}

/* Social Links Container - Centered & Professional */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-link-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #00984B;
    background: white;
    transition: all 0.3s ease;
    gap: 8px;
    text-decoration: none;
}

.social-link-item:hover {
    background-color: #E6F7EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 152, 75, 0.25);
}

/* Social Description - Enhanced */
.social-description {
    text-align: center;
    font-size: 15px;
    color: #166534;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Responsive Mobile */
@media (min-width: 769px) {
    .social-links {
        flex-wrap: nowrap; /* Desktop: 1 hàng */
    }
    .social-link-item {
        flex: 1; /* Chia đều không gian */
        max-width: 180px; /* Giới hạn tối đa */
    }
}

@media (max-width: 768px) {
    .social-link-item {
        width: calc(50% - 8px);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .social-link-item {
        width: 100%;
    }
}
