/*
 * MIA SERVICES - Améliorations Design Moderne
 * Animations, effets et style contemporain
 */

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* ============================================
   BOUTONS MODERNISÉS
   ============================================ */

.btn {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #3385D6 100%);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

.btn-outline {
    border: 2px solid currentColor;
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* ============================================
   CARDS MODERNISÉES
   ============================================ */

.service-card,
.value-card,
.property-card,
.vehicle-card,
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px !important;
    overflow: hidden;
}

.service-card:hover,
.value-card:hover,
.property-card:hover,
.vehicle-card:hover,
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-card .icon,
.value-card .icon {
    transition: all 0.4s ease;
}

.service-card:hover .icon,
.value-card:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

/* ============================================
   HERO SECTION MODERNE
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 80, 158, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ============================================
   NAVIGATION MODERNE
   ============================================ */

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066CC, #3385D6);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   SECTIONS ANIMÉES
   ============================================ */

.section {
    padding: 80px 0;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   IMAGES AVEC OVERLAY MODERNE
   ============================================ */

.img-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.img-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(255, 107, 53, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.img-overlay:hover::before {
    opacity: 1;
}

.img-overlay img {
    transition: transform 0.6s ease;
}

.img-overlay:hover img {
    transform: scale(1.1);
}

/* ============================================
   BADGES MODERNISÉS
   ============================================ */

.badge {
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-primary {
    background: linear-gradient(135deg, #0066CC, #3385D6) !important;
}

.badge-success {
    background: linear-gradient(135deg, #28A745, #34D058) !important;
}

.badge-warning {
    background: linear-gradient(135deg, #FFC107, #FFD54F) !important;
}

.badge-danger {
    background: linear-gradient(135deg, #DC3545, #E64A58) !important;
}

/* ============================================
   FILTRES MODERNISÉS
   ============================================ */

.filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.filters input,
.filters select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 12px 16px;
}

.filters input:focus,
.filters select:focus {
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    outline: none;
    transform: translateY(-2px);
}

/* ============================================
   GRILLES AVEC ANIMATION
   ============================================ */

.services-grid,
.values-grid,
.properties-grid,
.vehicles-grid,
.products-grid {
    display: grid;
    gap: 30px;
}

.services-grid > *,
.values-grid > *,
.properties-grid > *,
.vehicles-grid > *,
.products-grid > * {
    animation: fadeInUp 0.6s ease-out both;
}

.services-grid > *:nth-child(1) { animation-delay: 0.1s; }
.services-grid > *:nth-child(2) { animation-delay: 0.2s; }
.services-grid > *:nth-child(3) { animation-delay: 0.3s; }
.services-grid > *:nth-child(4) { animation-delay: 0.4s; }
.services-grid > *:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   FOOTER MODERNE
   ============================================ */

footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066CC, #FF6B35, #0066CC);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   PRIX AVEC EFFET MODERNE
   ============================================ */

.price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066CC, #3385D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC, #3385D6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.5);
}

/* ============================================
   LOADING SKELETON
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* ============================================
   CTA SECTIONS MODERNISÉES
   ============================================ */

.cta {
    background: linear-gradient(135deg, #0066CC 0%, #00509E 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   TOOLTIPS
   ============================================ */

.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   GLASS MORPHISM
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESPONSIVE AMÉLIORÉ
   ============================================ */

@media (max-width: 768px) {
    .btn {
        padding: 12px 25px;
    }
    
    .btn-lg {
        padding: 14px 35px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   USER DROPDOWN MENU
   ============================================ */

.has-dropdown {
    position: relative;
}

.user-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #1e293b !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.user-menu-btn:hover {
    background: #e2e8f0;
    color: #0f172a !important;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #334155 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: #2563eb !important;
}

.dropdown-menu li a i {
    width: 18px;
    font-size: 0.95rem;
    color: #64748b;
}

.dropdown-menu li a:hover i {
    color: inherit;
}

/* ============================================
   TOAST NOTIFICATIONS SYSTEM
   ============================================ */

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: calc(100% - 48px);
    pointer-events: none;
}

.toast-notification {
    pointer-events: auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
    animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-left: 5px solid #2563eb;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast-notification.toast-hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
}

.toast-notification.toast-success {
    border-left-color: #10b981;
}

.toast-notification.toast-error {
    border-left-color: #ef4444;
}

.toast-notification.toast-info {
    border-left-color: #3b82f6;
}

.toast-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
}

.toast-success .toast-icon { color: #10b981; }
.toast-error .toast-icon { color: #ef4444; }
.toast-info .toast-icon { color: #3b82f6; }

.toast-body {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 3px;
}

.toast-message {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.15s ease;
}

.toast-close:hover {
    color: #334155;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.25;
    width: 100%;
    animation: toastProgress 4.5s linear forwards;
}

.toast-success .toast-progress { color: #10b981; }
.toast-error .toast-progress { color: #ef4444; }
.toast-info .toast-progress { color: #3b82f6; }

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ============================================
   MODALS MODERNISÉES
   ============================================ */

.custom-modal {
    animation: fadeIn 0.2s ease-out;
}

.custom-modal .modal-dialog {
    animation: modalZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   HERO 2.0 & AMBIENT MESH GRADIENT
   ============================================ */

.hero-modern {
    position: relative;
    background: linear-gradient(135deg, #070d1e 0%, #0f1f3d 50%, #0b1528 100%);
    color: #ffffff;
    padding: 100px 0 110px;
    overflow: hidden;
    isolation: isolate;
}

.hero-ambient-glow {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 550px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(14, 165, 233, 0.15) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: float 8s ease-in-out infinite alternate;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-main-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 740px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 4px 14px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 45px rgba(37, 99, 235, 0.7), 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #10b981;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #059669;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45);
    transform: translateY(-3px);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #0f1f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-left: -8px;
    background: #2563eb;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: #f59e0b;
}

.avatar-stack span:nth-child(2) { background: #10b981; }
.avatar-stack span:nth-child(3) { background: #8b5cf6; }

/* ============================================
   HERO FAST-BOOKING TAB BAR
   ============================================ */

.fast-search-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 10px;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
}

.fast-tabs-nav {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    overflow-x: auto;
}

.fast-tab-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.fast-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.fast-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.fast-tab-content {
    display: none;
    padding: 22px 14px 12px;
    animation: fadeIn 0.3s ease;
}

.fast-tab-content.active {
    display: block;
}

.fast-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
    gap: 12px;
    align-items: center;
}

.fast-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.fast-form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #93c5fd;
    margin-bottom: 6px;
    font-weight: 600;
}

.fast-form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    outline: none;
    transition: border 0.2s, background 0.2s;
    width: 100%;
}

.fast-form-control:focus {
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.18);
}

.fast-form-control option {
    background: #0f172a;
    color: #ffffff;
}

/* ============================================
   SERVICES CARDS 2.0
   ============================================ */

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12);
    border-color: #cbd5e1;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: #eff6ff;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: #2563eb;
    color: white;
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

.service-tag-highlight {
    background: #dbeafe;
    color: #1d4ed8;
}

/* ============================================
   STATS COUNTERS SECTION (Dark Luxury)
   ============================================ */

.stats-section-dark {
    background: #090f1d;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label-modern {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-sub-modern {
    font-size: 0.82rem;
    color: #64748b;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2563eb;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #64748b;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #059669;
    font-weight: 600;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: #93c5fd;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.faq-question {
    padding: 18px 22px;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.02rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 22px 20px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #10b981;
    color: white !important;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-widget:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.55);
}

.whatsapp-float-widget i {
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    .fast-form-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float-widget span {
        display: none;
    }
    .whatsapp-float-widget {
        padding: 14px;
        border-radius: 50%;
        bottom: 18px;
        right: 18px;
    }
}
