/* ==========================================
   1. Base & Copy Animation
   ========================================== */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 4px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    15%, 85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* ==========================================
   2. Cookie Consent Banner
   ========================================== */
.cookies-card {
    width: 520px;
    padding: 24px;
    color: #1E2337;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.cookies-card.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f3f5;
    color: #343a40;
    font-size: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #495057;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 32px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 30px);
        left: 15px;
        bottom: 15px;
        font-size: 14px;
        padding: 18px;
    }
}

/* ==========================================
   3. Password / Input Validation Tooltips
   ========================================== */
.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 125%;
    left: 50%;
    width: 280px;
    background-color: #1e293b;
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateX(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 50%;
    margin-left: -6px;
    border-width: 8px 7px 0 7px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

.input-popup p {
    padding-left: 22px;
    position: relative;
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.input-popup p:last-child {
    margin-bottom: 0;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 2px;
    line-height: 1;
    font-size: 16px;
}

.input-popup p.error {
    color: #cbd5e1;
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #f87171;
}

.input-popup p.success::before {
    content: "\f058";
    color: #4ade80;
}

/* ==========================================
   4. Filters & Loaders
   ========================================== */
.show-filter {
    display: none;
}

@media(max-width: 767px) {
    .responsive-filter-card {
        display: none;
    }

    .show-filter {
        display: block;
    }
}

button .spinner-border {
    --bs-spinner-width: 1.25rem;
    --bs-spinner-height: 1.25rem;
}

/* ==========================================
   5. Professional Smooth Preloader Overlay
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-favicon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    animation: softFade 2s infinite ease-in-out;
}

.loading-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: hsl(var(--main, 240 100% 50%));
    animation: proDotPulse 1.2s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes proDotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.35;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes softFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ==========================================
   6. Global Removal of ALL Floating Background Shapes
   ========================================== */
.footer-shape,
.footer-shape-one,
.footer-shape-two,
.banner-shape,
.shape-1,
.shape-2,
.shape,
.bg-shape,
.section-shape,
[class*="shape-"],
[class*="-shape"] {
    display: none !important;
}

/* ==========================================
   7. Modern Micro-Interactions (Cards & Pricing)
   ========================================== */
.pricing-card,
.pricing-item,
.package-card,
.plan-card,
.card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, box-shadow;
}

.pricing-card:hover,
.pricing-item:hover,
.package-card:hover,
.plan-card:hover,
.card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08) !important;
}

.btn,
button {
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.btn:active,
button:active {
    transform: scale(0.98) !important;
}

/* ==========================================
   8. Static Footer (No Animation/Transition)
   ========================================== */
footer,
.footer-area,
.footer-section,
footer *,
.footer-area *,
.footer-section * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

footer *:hover,
.footer-area *:hover,
.footer-section *:hover {
    transform: none !important;
}

/* ==========================================
   9. Load All Sections Instantly (Disable Entrance Scroll Delays & AOS)
   ========================================== */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    visibility: visible !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
}

section,
.section,
[class*="-section"] {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
}

/* ==========================================
   10. Static Case Section (No Animation/Transition)
   ========================================== */
.case-section,
.case__section,
.case-area,
.case__area,
.case-item,
.case-card,
[class*="case-"],
[class*="case_"],
.case-section *,
.case__section *,
.case-area *,
.case__area *,
.case-item *,
.case-card *,
[class*="case-"] *,
[class*="case_"] * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}