/* Contact Hero Section */
 .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    }

    .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    }

    /* Contact Info Section */
    .contact-info-section {
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
    }

    .contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(8, 113, 63, 0.1);
    transition: all 0.4s ease;
    position: relative;
    /* overflow: hidden; */
    border: 2px solid transparent;
    }

    /* .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 113, 63, 0.05), transparent);
    transition: all 0.6s ease;
    } */

    .contact-info-card:hover::before {
    left: 100%;
    }

    .contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(8, 113, 63, 0.2);
    border-color: #08713f;
    }

    .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #08713f, #0a5d33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    }

    .contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    }

    .contact-icon i {
    font-size: 2rem;
    color: white;
    }

    .contact-details h4 {
    color: #08713f;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
    }

    .contact-details p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    }

    .contact-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #08713f, #0a5d33);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
    }

    .contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
    }

    .contact-link:hover::before {
    left: 100%;
    }

    .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 113, 63, 0.3);
    }

    /* Social Media Section */
    .social-media-section {
    padding: 80px 0;
    background: white;
    position: relative;
    }

    .social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(8, 113, 63, 0.05), transparent);
    }

    .section-title h2 {
    font-size: 2.8rem;
    color: #08713f;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    }

    .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #08713f, #0a5d33);
    border-radius: 2px;
    }

    .section-title p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    }

    .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    }

    .social-item {
    position: relative;
    }

    .social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    /* overflow: hidden; */
    }

    .social-item.facebook a {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    }

    .social-item.twitter a {
    background: linear-gradient(135deg, #000000, #000000);
    color: white;
    }

    .social-item.instagram a {
    background: linear-gradient(135deg, #e1306c, #f56040, #ffdc80);
    color: white;
    }

    .social-item.linkedin a {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
    }

    .social-item.snapchat a {
    background: linear-gradient(135deg, #fffc00, #fff200);
    color: #333;
    }

    .social-item.whatsapp a {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    }

    .social-item.tiktok a {
    background: linear-gradient(135deg, #000, #333);
    color: white;
    }

    .social-item a i {
    font-size: 1.8rem;
    z-index: 2;
    position: relative;
    }

    .social-item a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    }

    .social-item a:hover::before {
    width: 100%;
    height: 100%;
    }

    .social-item a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    }

    .social-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #333;
    }

    .social-item:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
    }


    .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
    }

    .btn-primary:hover::before {
    left: 100%;
    }

    .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 113, 63, 0.3);
    }

    /* Animation Classes */
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .contact-info-card {
    animation: fadeInUp 0.6s ease forwards;
    }

    .contact-info-card:nth-child(1) { animation-delay: 0.1s; }
    .contact-info-card:nth-child(2) { animation-delay: 0.2s; }
    .contact-info-card:nth-child(3) { animation-delay: 0.3s; }

        /* Floating Contact Buttons */
    .floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    }

    .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
    }

    .floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    }

    .floating-btn.phone {
    background: linear-gradient(135deg, #08713f, #0a5d33);
    color: white;
    }

    .floating-btn i {
    font-size: 1.5rem;
    z-index: 2;
    }

    .floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    }

    .floating-btn:hover::before {
    width: 100%;
    height: 100%;
    }

    /* Pulse Animation */
    @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
    }

    .floating-btn.whatsapp {
    animation: pulse 2s infinite;
    }

    /* Success Message Styling */
    .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #b8dacc;
    color: #155724;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 500;
    }

    .alert-error {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    border: 1px solid #f1b0b7;
    color: #721c24;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 500;
    }

    /* Loading Animation */
    .loading-dots {
    display: inline-block;
    }

    .loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
    }

    @keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-info-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-item a {
        width: 60px;
        height: 60px;
    }

    .social-item a i {
        font-size: 1.5rem;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 1.2rem;
    }

    .contact-form-wrapper form {
        padding: 30px 20px;
    }
    }