/* ============================================
   DRAMATIC VISUAL ENHANCEMENTS
   Agency-Level Premium Design
   ============================================ */

/* DRAMATIC GLASSMORPHISM - VERY VISIBLE */
.card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 12px 48px rgba(100, 116, 139, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
    padding: 2.5rem !important;
    position: relative;
    overflow: visible !important;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 20px 70px rgba(100, 116, 139, 0.45),
        0 0 0 2px rgba(37, 79, 126, 0.2) inset !important;
    background: rgba(255, 255, 255, 0.85) !important;
}

/* PRODUCT CARDS - DRAMATIC */
.product-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 15px 55px rgba(100, 116, 139, 0.4) !important;
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(2deg) !important;
    box-shadow: 0 25px 80px rgba(100, 116, 139, 0.5) !important;
}

/* FLOATING BUTTONS - LARGER & MORE PROMINENT */
.floating-btn {
    width: 75px !important;
    height: 75px !important;
    font-size: 2rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(37, 211, 102, 0.6) !important;
    animation: dramaticPulse 2s ease-in-out infinite !important;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.4) !important;
}

.floating-btn.call {
    background: linear-gradient(135deg, #254f7e 0%, #1a3a5c 100%) !important;
    box-shadow: 0 15px 50px rgba(37, 79, 126, 0.5),
        0 0 40px rgba(37, 79, 126, 0.4) !important;
}

@keyframes dramaticPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px currentColor;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px currentColor;
    }
}

/* HEADER - DRAMATIC GLASS */
.header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* SECTION BACKGROUNDS - LAYERED */
.section {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.section::before {
    width: 800px !important;
    height: 800px !important;
    opacity: 0.15 !important;
    filter: blur(100px);
}

.section::after {
    width: 700px !important;
    height: 700px !important;
    opacity: 0.12 !important;
    filter: blur(120px);
}

/* GRID SPACING - DRAMATIC */
.grid-2,
.grid-3,
.grid-4,
.grid-5 {
    gap: 2.5rem !important;
}

/* PRODUCT CONTACT BUTTON - DRAMATIC */
.product-contact-btn {
    padding: 1.125rem 2rem !important;
    background: linear-gradient(135deg, rgba(37, 79, 126, 0.15) 0%, rgba(37, 79, 126, 0.25) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(37, 79, 126, 0.3) !important;
    font-size: 1.05rem !important;
    box-shadow: 0 8px 25px rgba(37, 79, 126, 0.2) !important;
}

.product-contact-btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(37, 79, 126, 0.35) !important;
}

/* SCROLL ANIMATIONS - MORE DRAMATIC */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* HERO - MORE DRAMATIC */
.hero::before {
    background: linear-gradient(135deg, rgba(37, 79, 126, 0.92) 0%, rgba(26, 58, 92, 0.95) 100%) !important;
}

/* METRICS - DRAMATIC GLASS */
.metric-item {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(25px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
}

.metric-item:hover {
    transform: translateY(-15px) scale(1.08) !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4) !important;
}