/* Responsive Style for Call Buttons and chat button */
.chat-btn {
    background: #25D366; /* WhatsApp green */
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.chat-btn:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .chat-btn {
        margin: 15px 0 0 0 !important;
        width: 100%;
        text-align: center;
        padding: 12px 0 !important;
        justify-content: center;
    }
}

.call-btn {
    background: #d47138;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.call-btn:hover {
    /* background: #944d25; */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(182, 98, 48, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Mobile Optimized */
@media (max-width: 768px) {
    #contact-us {
        padding: 60px 0;
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px !important;
    }

    .contact-card>div {
        width: 100%;
    }

    .call-btn {
        margin: 15px 0 0 0 !important;
        width: 100%;
        text-align: center;
        padding: 12px 0 !important;
    }

    .contact-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 25px;
        border: 3px solid #f0f0f0;
        transition: transform 0.3s ease;
        /* Optional: adds smooth hover effect */
    }

    .contact-image:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    h4 {
        font-size: 1.2rem !important;
    }
}

/* Email Button - Matching Call Button Style */
.email-btn {
    background: #4a8bc9;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}


.email-btn:hover {
    /* background: #3a74a8; */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 139, 201, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px !important;
    }
    
    .contact-card > div {
        width: 100%;
    }
    
    .call-btn, .email-btn {
        margin: 10px 0 0 0 !important;
        width: 100%;
        padding: 12px 0 !important;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Add hover effect to clickable card */
[onclick] {
    transition: transform 0.2s;
}
[onclick]:hover {
    transform: scale(1.03);
}








/* Alternative pulse effect (uncomment to use) */
/*
.highlight-contact {
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
*/





/* Add glow animation */
/* Flowing Neon Border Animation */
@keyframes neon-flow {
    0% {
      box-shadow: 
        0 -3px 0 0 #b66230,
        0 -3px 0 0 #b66230 inset;
    }
    25% {
      box-shadow: 
        3px 0 0 0 #b66230,
        3px 0 0 0 #b66230 inset;
    }
    50% {
      box-shadow: 
        0 3px 0 0 #b66230,
        0 3px 0 0 #b66230 inset;
    }
    75% {
      box-shadow: 
        -3px 0 0 0 #b66230,
        -3px 0 0 0 #b66230 inset;
    }
    100% {
      box-shadow: 
        0 -3px 0 0 #b66230,
        0 -3px 0 0 #b66230 inset;
    }
  }
  
  .neon-flow {
    position: relative;
    animation: neon-flow 1.5s linear infinite;
    border-radius: 15px;
  }
  
  .neon-flow::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 18px;
    z-index: -1;
    opacity: 0.7;
  }