/* Emergency Bar */
.emergency-top-bar {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.emergency-top-bar a {
    background: white;
    color: #b91c1c;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.emergency-top-bar a:hover {
    background: #f8fafc;
    transform: translateY(-1px) scale(1.03);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
    background: var(--primary-gradient);
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary);
    border-color: white;
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--secondary);
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* Premium Cards with Prominent Navy Blue / Cyan Pulsing Glow Shadow */
.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid rgba(2, 132, 199, 0.25);
    position: relative;
    animation: card-pulse-shadow 4s infinite ease-in-out;
}

@keyframes card-pulse-shadow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15), 0 4px 12px rgba(15, 23, 42, 0.1);
    }
    50% {
        box-shadow: 0 18px 45px rgba(2, 132, 199, 0.35), 0 6px 18px rgba(15, 23, 42, 0.18);
    }
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 55px rgba(2, 132, 199, 0.45), 0 8px 22px rgba(15, 23, 42, 0.2);
    border-color: var(--primary);
}

/* Service Card with Prominent Navy Blue / Cyan Pulsing Glow Shadow */
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(2, 132, 199, 0.25);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: card-pulse-shadow 4s infinite ease-in-out;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 55px rgba(2, 132, 199, 0.45), 0 8px 22px rgba(15, 23, 42, 0.2);
    border-color: var(--primary);
}

.service-card:hover::after {
    opacity: 1;
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.service-card:hover .service-body h3 {
    color: var(--primary);
}

.service-body p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    border: 1px solid rgba(2, 132, 199, 0.25);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
    animation: badge-pulse 3s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.25);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.25);
}

/* Floating WhatsApp Button with High-End Glow */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.8);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }
    70% {
        box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Accordion FAQ */
.faq-item {
    background: var(--surface);
    border: 2px solid rgba(2, 132, 199, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.25);
    transform: translateX(4px);
}

.faq-question {
    padding: 1.25rem 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--muted);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question svg,
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question svg, .faq-question i {
    transition: var(--transition);
    color: var(--primary);
}
