/* ============================
   CONTAINER (Global)
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
/* ============================
   TOP BAR (Sticky)
   ============================ */
.top-bar {
    background: #0c2847;
    color: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.top-phone:hover {
    color: #fbbf24;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}
.logo-text .pro {
    color: #fbbf24;
}
.language-switcher {
    display: flex;
    gap: 8px;
}
.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.lang-btn.active {
    background: #fbbf24;
    color: #0c2847;
    border-color: #fbbf24;
    font-weight: 600;
}
/* ============================
   MAIN HEADER (Menu)
   ============================ */
.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 69px; /* Height of top-bar */
    z-index: 1500;
}
.nav-desktop {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 15px 0;
    align-items: center;
}
.nav-desktop > a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.nav-desktop > a:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    transform: translateY(-2px) scale(1.05);
}
/* ============================
   DROPDOWN
   ============================ */
.nav-dropdown {
    position: relative;
}
.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.nav-link:hover {
    color: #3b82f6;
    transform: translateY(-2px) scale(1.05);
}
.dropdown-toggle {
    cursor: pointer;
}
.arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3000;
    margin-top: 8px;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}
.nav-dropdown:hover .nav-link {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #3b82f6;
    padding-left: 24px;
    transform: scale(1.02);
}
/* ============================
   MOBILE MENU BUTTON
   ============================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0c2847;
    cursor: pointer;
    padding: 10px;
}
/* ============================
   MOBILE NAV
   ============================ */
.nav-mobile {
    display: none;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 69px);
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 0;
    z-index: 1400;
}
.nav-mobile.active {
    display: flex;
}
.nav-mobile > a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 15px 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
}
.nav-mobile > a:hover {
    color: #3b82f6;
    background: #f9fafb;
}
/* ============================
   MOBILE DROPDOWN
   ============================ */
.mobile-dropdown {
    border-bottom: 1px solid #e5e7eb;
}
.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 10px;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.mobile-dropdown-toggle.active .mobile-arrow {
    transform: rotate(180deg);
}
.mobile-dropdown-content {
    display: none;
    background: #f9fafb;
    padding-left: 20px;
}
.mobile-dropdown-content.active {
    display: block;
}
.mobile-dropdown-content a {
    display: block;
    padding: 12px 10px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}
.mobile-dropdown-content a:last-child {
    border-bottom: none;
}
.mobile-dropdown-content a:hover {
    color: #3b82f6;
    padding-left: 16px;
}
/* Mobile Language Switcher */
.mobile-lang {
    display: flex;
    gap: 10px;
    padding: 15px 10px;
    border-top: 2px solid #e5e7eb;
    margin-top: 10px;
}
.mobile-lang .lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
}
.mobile-lang .lang-btn.active {
    background: #fbbf24;
    color: #0c2847;
    border-color: #fbbf24;
}
/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .top-bar-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    .top-phone {
        font-size: 0.9rem;
        order: 1;
    }
    .logo-center {
        position: static;
        transform: none;
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .logo-image {
        width: 40px;
        height: 40px;
    }
    .logo-text {
        font-size: 18px;
    }
    .language-switcher {
        order: 3;
    }
    .lang-btn {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 80px;
        right: 20px;
        z-index: 2000;
        background: #3b82f6;
        color: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .header {
        top: 0;
        position: relative;
        box-shadow: none;
        padding: 0;
    }
}
@media (max-width: 480px) {
    .top-bar {
        padding: 10px 0;
    }
    .top-phone {
        font-size: 0.85rem;
    }
    .logo-image {
        width: 36px;
        height: 36px;
    }
    .logo-text {
        font-size: 16px;
    }
}
/* ============================
   MOBILE TOUCH ANIMATIONS
   ============================ */
@media (max-width: 768px) {
    /* Mobile Nav Links - Touch Animation */
    .nav-mobile > a:active {
        background: #eff6ff !important;
        color: #3b82f6 !important;
        transform: scale(0.98) translateX(5px);
        transition: all 0.2s ease;
    }
    
    /* Mobile Dropdown Links - Touch Animation */
    .mobile-dropdown-content a:active {
        background: #dbeafe !important;
        color: #3b82f6 !important;
        transform: scale(0.98) translateX(8px);
        padding-left: 20px !important;
        transition: all 0.2s ease;
    }
    
    /* Mobile Dropdown Toggle - Touch Animation */
    .mobile-dropdown-toggle:active {
        background: #f3f4f6;
        color: #3b82f6;
        transform: scale(0.98);
        transition: all 0.2s ease;
    }
    
    /* Top Phone - Touch Animation */
    .top-phone:active {
        color: #fde047 !important;
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(253, 224, 71, 0.6);
        transition: all 0.2s ease;
    }
    
    /* Language Buttons - Touch Animation */
    .mobile-lang .lang-btn:active {
        transform: scale(0.95);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
    }
    
    .lang-btn:active {
        transform: scale(0.95) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        transition: all 0.2s ease;
    }
    
    /* Mobile Menu Button - Touch Animation */
    .mobile-menu-btn:active {
        transform: scale(0.9) rotate(90deg);
        background: #f3f4f6;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
}
/* ============================
   GLOBAL FOOTER STYLES
   ============================ */
.footer {
    background: #0c2847;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
/* ============================
   FOOTER LOGO
   ============================ */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
}
.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}
.footer-logo-text .pro {
    color: #fbbf24;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
}
/* ============================
   FOOTER SECTIONS
   ============================ */
.footer-section {
    min-width: 0;
}
.footer-section h3 {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 700;
}
.footer-section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-section a:hover {
    color: #fbbf24;
    transform: translateX(5px) scale(1.05);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
/* ============================
   FOOTER CONTACTS
   ============================ */
.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
}
.contact-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
    transform: scale(1.3) rotate(10deg);
}
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    color: #fbbf24;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
/* ============================
   FOOTER BOTTOM
   ============================ */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-bottom a:hover {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-contacts {
        gap: 20px;
    }
}
/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
/* ============================
   RESPONSIVE - SMALL MOBILE
   ============================ */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-section {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-logo-text {
        font-size: 18px;
    }
    
    .footer-logo-image {
        width: 36px;
        height: 36px;
    }
}
/* ============================
   MOBILE TOUCH ANIMATIONS
   ============================ */
@media (max-width: 768px) {
    /* Footer Links - Touch Animation */
    .footer-section a:active {
        color: #fde047 !important;
        transform: translateX(8px) scale(1.08) !important;
        text-shadow: 0 0 15px rgba(253, 224, 71, 0.7) !important;
        transition: all 0.2s ease;
    }
    
    /* Contact Links - Touch Animation */
    .contact-item a:active {
        color: #fde047 !important;
        transform: scale(1.15) !important;
        text-shadow: 0 0 15px rgba(253, 224, 71, 0.7) !important;
        transition: all 0.2s ease;
    }
    
    /* Contact Icons - Touch Animation */
    .contact-item:active .contact-icon {
        transform: scale(1.4) rotate(15deg) !important;
        transition: all 0.2s ease;
    }
    
    /* Footer Bottom Link - Touch Animation */
    .footer-bottom a:active {
        color: #fde047 !important;
        transform: scale(1.15) !important;
        text-shadow: 0 0 15px rgba(253, 224, 71, 0.7) !important;
        transition: all 0.2s ease;
    }
}
    /* FLOATING BUTTONS */
    .floating-buttons {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    /* WhatsApp Button */
    .whatsapp-float {
        width: 75px;
        height: 75px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: pulse 2s infinite;
    }
    .whatsapp-float:hover {
        background: #128c7e;
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
    }
    
    .whatsapp-float:active {
        transform: scale(0.95);
    }
    @keyframes pulse {
        0% { 
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 8px 50px rgba(37, 211, 102, 1), 0 0 0 15px rgba(37, 211, 102, 0.25);
            transform: scale(1.12);
        }
        100% { 
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transform: scale(1);
        }
    }
    /* FREE Estimate Button */
    .estimate-float {
        width: 75px;
        height: 75px;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: pulseFreeStrong 1.5s infinite;
        border: 3px solid rgba(255, 255, 255, 0.3);
    }
    .estimate-float:hover {
        background: linear-gradient(135deg, #3b82f6, #60a5fa);
        transform: scale(1.2) rotate(-5deg);
        box-shadow: 0 10px 60px rgba(59, 130, 246, 0.9);
    }
    
    .estimate-float:active {
        transform: scale(0.95);
    }
    @keyframes pulseFreeStrong {
        0% { 
            box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 10px 60px rgba(59, 130, 246, 1), 0 0 0 18px rgba(59, 130, 246, 0.25);
            transform: scale(1.15);
        }
        100% { 
            box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
            transform: scale(1);
        }
    }
    /* Reviews Button (Star) */
    .reviews-float {
        width: 75px;
        height: 75px;
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: pulseReviews 2s infinite;
        text-decoration: none;
        color: white;
        font-size: 35px;
    }
    .reviews-float:hover {
        background: linear-gradient(135deg, #d97706, #f59e0b);
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 8px 40px rgba(251, 191, 36, 0.8);
    }
    
    .reviews-float:active {
        transform: scale(0.95);
    }
    @keyframes pulseReviews {
        0% { 
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 8px 50px rgba(251, 191, 36, 1), 0 0 0 15px rgba(251, 191, 36, 0.25);
            transform: scale(1.12);
        }
        100% { 
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
            transform: scale(1);
        }
    }
    /* SLIDEOUT OVERLAY */
    .slideout-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slideout-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* SLIDEOUT PANEL */
    .slideout-panel {
        position: fixed;
        top: 0;
        right: -500px;
        width: 100%;
        max-width: 500px;
        height: 100%;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        z-index: 10001;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slideout-panel.active {
        right: 0;
    }
    /* SLIDEOUT HEADER */
    .slideout-header {
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: #ffffff;
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .slideout-header h2 {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }
    .slideout-header .subtitle {
        font-size: 0.75rem;
        opacity: 0.9;
        margin-top: 2px;
    }
    .slideout-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    .slideout-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    /* SLIDEOUT CONTENT */
    .slideout-content {
        padding: 15px 20px;
    }
    .urgency-banner {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #1e3a8a;
        padding: 8px 12px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        font-size: 0.8rem;
        margin-bottom: 12px;
        animation: urgencyPulse 2s infinite;
        line-height: 1.2;
    }
    @keyframes urgencyPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }
    .form-group-slideout {
        margin-bottom: 10px;
    }
    .form-group-slideout label {
        display: block;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 4px;
        font-size: 0.85rem;
    }
    .required {
        color: #dc2626;
    }
    .form-group-slideout input,
    .form-group-slideout select,
    .form-group-slideout textarea {
        width: 100%;
        padding: 8px 10px;
        border: 2px solid #e5e7eb;
        border-radius: 6px;
        font-size: 0.9rem;
        background: #ffffff;
        transition: all 0.3s;
        font-family: inherit;
    }
    .form-group-slideout input:focus,
    .form-group-slideout select:focus,
    .form-group-slideout textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    .form-group-slideout small {
        display: block;
        color: #6b7280;
        font-size: 0.75rem;
        margin-top: 2px;
    }
    .urgency-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .radio-label {
        display: flex;
        align-items: center;
        padding: 10px;
        border: 2px solid #e5e7eb;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }
    .radio-label:hover {
        border-color: #3b82f6;
        background: #f0f7ff;
    }
    .radio-label input[type="radio"] {
        width: auto;
        margin-right: 10px;
    }
    .radio-label input[type="radio"]:checked + span {
        color: #2563eb;
        font-weight: 700;
    }
    .form-submit-slideout {
        width: 100%;
        background: linear-gradient(135deg, #10b981, #059669);
        color: #ffffff;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 8px;
    }
    .form-submit-slideout:hover {
        background: linear-gradient(135deg, #059669, #047857);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
    }
    /* POPUP STYLES */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10002;
        padding: 20px;
    }
    .popup-overlay.active {
        display: flex;
    }
    .popup-content {
        background: #fff;
        border-radius: 12px;
        max-width: 600px;
        width: 100%;
        padding: 40px 30px;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        max-height: 90vh;
        overflow-y: auto;
    }
    .popup-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 32px;
        color: #999;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
    }
    .popup-close:hover {
        color: #333;
    }
    .popup-title {
        font-size: 24px;
        margin: 0 0 20px;
        color: #2563eb;
        text-align: center;
    }
    .popup-price {
        font-size: 48px;
        font-weight: 800;
        color: #2563eb;
        text-align: center;
        margin: 20px 0;
        line-height: 1;
    }
    .popup-details {
        text-align: center;
        color: #666;
        margin-bottom: 25px;
        font-size: 16px;
    }
    .popup-note {
        background: #f0f7ff;
        border-left: 4px solid #2563eb;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 6px;
    }
    .popup-note p {
        margin: 10px 0;
        line-height: 1.6;
        color: #4b5563;
    }
    .popup-note h3 {
        margin: 0 0 10px;
        color: #2563eb;
        font-size: 18px;
    }
    .popup-note ul {
        margin: 10px 0 0;
        padding-left: 20px;
        color: #4b5563;
    }
    .popup-note li {
        margin: 5px 0;
    }
    .popup-bonus {
        background: #fff7ed;
        border-left: 4px solid #fbbf24;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 6px;
    }
    .popup-bonus p {
        margin: 0 0 10px;
        font-size: 16px;
        color: #4b5563;
    }
    .popup-bonus ul {
        margin: 10px 0 0;
        padding-left: 20px;
        color: #4b5563;
    }
    .popup-bonus li {
        margin: 5px 0;
    }
    .popup-next {
        background: #ecfdf5;
        border-left: 4px solid #10b981;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 6px;
        text-align: center;
    }
    .popup-next p {
        margin: 0;
        font-size: 16px;
        color: #4b5563;
    }
    .btn-primary {
        display: block;
        width: 100%;
        padding: 16px;
        background: #2563eb;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 25px;
    }
    .btn-primary:hover {
        background: #1d4ed8;
    }
    /* RESPONSIVE */
    @media (max-width: 768px) {
        .floating-buttons {
            bottom: 20px;
            right: 20px;
        }
        .whatsapp-float,
        .estimate-float {
            width: 60px;
            height: 60px;
        }
        .slideout-panel {
            max-width: 100%;
        }
        .slideout-header {
            padding: 10px 15px;
        }
        .slideout-header h2 {
            font-size: 1rem;
            line-height: 1.2;
        }
        .slideout-header .subtitle {
            font-size: 0.7rem;
        }
        .slideout-content {
            padding: 12px 15px;
        }
        .urgency-banner {
            padding: 6px 10px;
            font-size: 0.75rem;
            margin-bottom: 10px;
        }
        .form-group-slideout {
            margin-bottom: 8px;
        }
        .form-group-slideout label {
            font-size: 0.8rem;
            margin-bottom: 3px;
        }
        .form-group-slideout input,
        .form-group-slideout select,
        .form-group-slideout textarea {
            padding: 7px 10px;
            font-size: 0.85rem;
        }
        .form-submit-slideout {
            padding: 10px 18px;
            font-size: 0.9rem;
        }
        .popup-price {
            font-size: 36px;
        }
    }
}
/* ============================
   MOBILE TOUCH ANIMATIONS
   ============================ */
@media (max-width: 768px) {
    /* Enhanced floating buttons for mobile touch */
    .whatsapp-float:active {
        transform: scale(1.2) rotate(10deg) !important;
        box-shadow: 0 12px 50px rgba(37, 211, 102, 1) !important;
    }
    
    .estimate-float:active {
        transform: scale(1.25) rotate(-10deg) !important;
        box-shadow: 0 15px 70px rgba(59, 130, 246, 1) !important;
    }
    
    .reviews-float:active {
        transform: scale(1.2) rotate(15deg) !important;
        box-shadow: 0 12px 50px rgba(251, 191, 36, 1) !important;
    }
    
    /* Form submit button touch */
    .form-submit-slideout:active {
        transform: scale(0.95) !important;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Radio labels touch */
    .radio-label:active {
        transform: scale(0.98);
        background: #dbeafe !important;
        border-color: #3b82f6 !important;
    }
    
    /* Slideout close button touch */
    .slideout-close:active,
    .popup-close:active {
        transform: scale(0.9) rotate(90deg);
        color: #ef4444 !important;
    }
}
/* ============================
   MOBILE TOUCH ANIMATIONS
   ============================ */
/* Mobile: City Cards Touch Effect */
@media (max-width: 768px) {
    .city-card:active {
        transform: scale(1.05) translateY(-8px) !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    }
    
    .city-card:active .city-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.4), rgba(0,0,0,0.6)) !important;
    }
    
    .city-card:active .city-title {
        color: #fde047 !important;
        transform: scale(1.15) !important;
    }
    
    .city-card:active .city-description {
        color: #f3f4f6 !important;
        transform: scale(1.08) !important;
    }
    
    .city-card:active .city-cta {
        color: #fde047 !important;
        transform: scale(1.15) !important;
    }
    
    .city-card:active .city-badge {
        transform: scale(1.15) !important;
    }
    
    /* Hero CTA Buttons - Touch Animation */
    a[href^="tel:"]:active,
    a[onclick*="openSlideout"]:active {
        transform: scale(1.08) translateY(-2px) !important;
        box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4) !important;
        transition: all 0.2s ease;
    }
    
    /* Badges - Touch Animation */
    span.bg-yellow-400:active {
        transform: scale(1.12) !important;
        background: #fde047 !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.2s ease;
    }
    
    /* Service Cards - Touch Animation */
    div.bg-white.rounded-lg.shadow-lg:active {
        transform: scale(1.08) translateY(-8px) !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important;
        transition: all 0.2s ease;
    }
    
    div.bg-white.rounded-lg.shadow-lg:active .text-5xl {
        transform: scale(1.15) !important;
        transition: all 0.2s ease;
    }
    
    div.bg-white.rounded-lg.shadow-lg:active h3 {
        color: #3b82f6 !important;
        transition: all 0.2s ease;
    }
    
    div.bg-white.rounded-lg.shadow-lg:active .text-green-600 {
        transform: scale(1.12) !important;
        transition: all 0.2s ease;
    }
    
    div.bg-white.rounded-lg.shadow-lg:active .text-gray-600 {
        color: #1f2937 !important;
        transition: all 0.2s ease;
    }
    
    /* View All Buttons - Touch Animation */
    a.bg-blue-600:active,
    a.bg-orange-500:active {
        transform: scale(1.08) translateY(-2px) !important;
        box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.4) !important;
        transition: all 0.2s ease;
    }
}
/* Add tap highlight for better mobile UX */
* {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
}
/* ============================
   SWIPER CAROUSEL STYLES
   ============================ */
/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.5);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: scale(1.1);
}
.swiper-button-next:active,
.swiper-button-prev:active {
    transform: scale(0.95);
}
/* Swiper Pagination Dots */
.swiper-pagination {
    bottom: 10px !important;
}
.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fbbf24 !important;
    transform: scale(1.3);
}
/* Review & Project Card Line Clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px !important;
    }
}
