/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modern Contact Cards Enhancement */
.modern-contact-card {
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modern-contact-card:hover {
    transform: translateY(-5px);
}

/* Address Card - Theme Green */
.address-card {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
}

.address-card:hover {
    box-shadow: 0 15px 40px rgba(99, 171, 69, 0.4);
}

/* Email Card - Theme Dark Teal */
.email-card {
    background: linear-gradient(135deg, #113D48 0%, #0A1F24 100%);
}

.email-card:hover {
    box-shadow: 0 15px 40px rgba(17, 61, 72, 0.4);
}

/* WhatsApp Card - Green */
.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
}

.whatsapp-card:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.modern-contact-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    backdrop-filter: blur(10px);
}

.modern-contact-card .icon i {
    color: white;
}

.modern-contact-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modern-contact-card h5 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modern-contact-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-size: 15px;
}

.modern-contact-card a:not(.contact-btn) {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.address-card .contact-btn {
    color: #63AB45;
}

.address-card .contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #113D48;
}

.email-card .contact-btn {
    color: #113D48;
}

.email-card .contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #0A1F24;
}

.whatsapp-card .contact-btn {
    color: #25d366;
}

.whatsapp-card .contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #128C7E;
}

.contact-info-text {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: white;
    word-break: break-word;
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, #F7F7F7 0%, #E1E4E5 100%);
    padding: 50px 0;
    margin-top: 50px;
}

.quick-contact-title {
    text-align: center;
    margin-bottom: 40px;
}

.quick-contact-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 10px;
}

.quick-contact-title p {
    font-size: 16px;
    color: #687179;
}

.contact-method-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.contact-method-card.whatsapp .contact-method-icon {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
}

.contact-method-card.phone .contact-method-icon {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
}

.contact-method-card.email .contact-method-icon {
    background: linear-gradient(135deg, #113D48 0%, #0A1F24 100%);
}

.contact-method-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0A1F24;
}

.contact-method-card p {
    font-size: 14px;
    color: #687179;
    margin-bottom: 20px;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-method-card.whatsapp .contact-method-btn {
    background: #25d366;
    color: white;
}

.contact-method-card.whatsapp .contact-method-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.contact-method-card.phone .contact-method-btn {
    background: #63AB45;
    color: white;
}

.contact-method-card.phone .contact-method-btn:hover {
    background: #113D48;
    transform: scale(1.05);
}

.contact-method-card.email .contact-method-btn {
    background: #113D48;
    color: white;
}

.contact-method-card.email .contact-method-btn:hover {
    background: #0A1F24;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 20px;
    }
}

