/* Non-Critical CSS for Home Page - Loaded Asynchronously */
/* This file contains styles that are not essential for initial page render */

/* Additional Responsive Styles */
@media screen and (max-width: 576px) {
    .body-company-limited {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .body-marketing-planner {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .body-online-marketing {
        font-size: 28px;
    }

    .body-description {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .body-we-are-description {
        font-size: 18px;
        line-height: 24px;
    }

    .body-p-click-here {
        font-size: 20px;
        padding: 8px;
    }

    .body-social-network {
        width: 90%;
    }

    .body-seo,
    .body-text-we-are,
    .body-text-pricing {
        font-size: 28px;
    }

    .body-text-my-address {
        font-size: 28px;
    }

    .body-request-box {
        font-size: 20px;
    }

    .body-pricing-box {
        margin-bottom: 20px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.body-pricing-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.body-pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Focus States for Accessibility */
.body-request-box:focus {
    outline: 2px solid #3b96f3;
    outline-offset: 2px;
}

.send-email:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .body-banner-container,
    .body-consult,
    .body-google-map {
        background-image: none !important;
    }

    .body-click-here {
        display: none;
    }

    #map {
        display: none;
    }
}

/* Additional Background Effects */
.body-pricing {
    position: relative;
}

.body-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 131, 222, 0.9) 0%, rgba(0, 131, 222, 0.95) 100%);
    pointer-events: none;
}

.body-pricing > .container {
    position: relative;
    z-index: 1;
}

/* Error Messages Styling */
.text-danger {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-family: 'PSL Kanda';
}

.has-error .body-request-box {
    border-color: #dc3545;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b96f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* SEO-friendly hidden text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
