/* ----------------------------------------------------------------
	Custom CSS
-----------------------------------------------------------------*/

/* 1. Global Animations Enhancements */
.feature-box, .pricing-box {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.feature-box:hover, .pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    z-index: 2;
}

.button, .btn {
    transition: all 0.3s ease !important;
    border-radius: 4px;
}

.button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
}

/* 2. Typography & Spacing */
h1, h2, h3, h4 {
    letter-spacing: -0.5px;
    font-family: 'Raleway', sans-serif !important;
}

.heading-block h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.heading-block span {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* 3. Floating WhatsApp CTA Button */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wa-float-btn {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-float-pulse 2.5s infinite;
}

.wa-float-btn:hover {
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.wa-float-tooltip {
    background-color: #fff;
    color: #1a1a1a;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.wa-float:hover .wa-float-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes wa-float-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .wa-float { bottom: 18px; right: 16px; }
    .wa-float-btn { width: 58px; height: 58px; font-size: 30px; }
}

/* 4. Section Specific Styles */
.section {
    padding: 80px 0;
}

.fbox-outline .fbox-icon {
    border: 2px solid #1e3c72;
    background-color: transparent !important;
}

.fbox-outline:hover .fbox-icon {
    background-color: #1e3c72 !important;
}

.fbox-outline:hover .fbox-icon i {
    color: white !important;
}

.counter-large {
    font-size: 48px;
    letter-spacing: -2px;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    .heading-block h2 { font-size: 28px; }
}

