/* Components - Reusable UI Elements */

/* Professional Header Component */
header {
    background: #ffffff;
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.12);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-header);
    padding: 1rem 0;
    min-height: 85px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    min-height: 80px;
}

/* Logo Component */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 800;
}

.logo-style {
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.3px;
}

.logo-style span {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Enhanced Mobile Menu Button */
/* Hamburger Button - Mobile Only */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid var(--primary-navy);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1201;
    transition: box-shadow 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-left: 1rem;
}
.mobile-menu-btn .hamburger {
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
    position: relative;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}
.mobile-menu-btn .hamburger::before,
.mobile-menu-btn .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-btn .hamburger::before {
    top: -9px;
}
.mobile-menu-btn .hamburger::after {
    bottom: -9px;
}
@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile Overlay Menu Styles */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 30, 60, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.mobile-menu-overlay[aria-modal="true"] {
    display: flex;
}
.mobile-menu-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.22);
    padding: 2.8rem 2rem 2.4rem 2rem;
    width: 92vw;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: menuFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
}
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-navy);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.mobile-menu-close:hover {
    background: var(--primary-blue);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

.mobile-menu-close:active {
    transform: scale(0.95) rotate(90deg);
    transition: all 0.1s ease;
}
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.mobile-menu-list li {
    width: 100%;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
}

.mobile-menu-list a {
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.4s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
    background: var(--primary-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
}

.mobile-menu-list a:hover::before,
.mobile-menu-list a:focus::before {
    left: 100%;
}

.mobile-menu-list a:active {
    transform: translateY(0px) scale(0.98);
    transition: all 0.1s ease;
}
.mobile-menu-highlight {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #112244;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    word-break: break-word;
}
@media (min-width: 1024px) {
    .mobile-menu-overlay { display: none !important; }
}
@media (max-width: 1023px) {
    .main-nav .desktop-menu { display: none; }
}
@media (min-width: 1024px) {
    .main-nav .desktop-menu { display: flex; }
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.mobile-menu-btn:hover {
    background: #f8fafc;
    transform: scale(1.08) translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    border-color: var(--primary-blue);
}

.mobile-menu-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn:active {
    transform: scale(0.98) translateY(0px);
    transition: all 0.1s ease;
    background: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Navigation Component */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    min-height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

nav li {
    display: flex;
    align-items: center;
    height: 100%;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
    transition: var(--transition-normal);
    position: relative;
    padding: 0.8rem 0.8rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    min-height: 80px;
}

.contact-info {
    text-align: right;
    line-height: 1.2;
}

.phone-number {
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
}

/* Call to Action Large Text */
.call-to-action-large {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.2;
}

/* Notification System */
#siteNotification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.notification--visible {
    opacity: 1;
    transform: translateY(0);
}

.notification--success {
    background: var(--success-green);
}

.notification--error {
    background: var(--professional-red);
}

.notification--info {
    background: var(--primary-blue);
}
.btn-large {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid var(--primary-navy);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    min-height: 60px;
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%) !important;
    color: var(--primary-navy) !important;
    font-weight: 700 !important;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent-gold);
    opacity: 1 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%) !important;
    color: white !important;
    border-color: var(--primary-navy);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--professional-red) 0%, #991b1b 100%) !important;
    color: white !important;
    border: 2px solid var(--professional-red);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600 !important;
    opacity: 1 !important;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.3);
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%) !important;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Base Button Styles */
.btn, .btn-small {
    background: var(--primary-navy) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--primary-navy) !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.btn:hover, .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%) !important;
    color: var(--primary-navy) !important;
    border-color: var(--accent-gold);
}

/* Service Card Button Overrides - Ensure Visibility */
.usluga-card .btn-small {
    background: var(--primary-navy) !important;
    color: white !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    text-shadow: none !important;
    border: 2px solid var(--primary-navy) !important;
}

.usluga-card .btn-small:hover {
    background: var(--accent-gold) !important;
    color: var(--primary-navy) !important;
    border-color: var(--accent-gold) !important;
}

/* Price Tags */
.price-tag {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.price-tag .inline-icon {
    filter: brightness(0) saturate(100%) invert(23%) sepia(84%) saturate(2108%) hue-rotate(21deg) brightness(94%) contrast(103%);
}

/* Urgent CTA Section */
.urgent-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 3rem 5%;
    text-align: center;
    position: relative;
}

.urgent-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.urgent-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.urgent-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-urgent-large {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-navy);
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    min-width: 250px;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.btn-urgent-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    border-color: var(--primary-navy);
}

.urgent-guarantee {
    font-size: 1rem;
    opacity: 0.9;
}

/* Enhanced Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: block;
}

/* Mobile layout for bottom buttons */
@media (max-width: 768px) {
    .sticky-call-btn {
        bottom: 20px;
        left: 2%;
        right: auto;
        width: 48%;
        max-width: 180px;
    }
    
    .sticky-call-btn a {
        width: 100%;
        justify-content: center;
        padding: 12px 8px;
        font-size: 13px;
        line-height: 1.2;
        border-radius: 25px;
        align-items: center;
        box-sizing: border-box;
        height: auto;
        min-height: auto;
        display: flex;
    }
    
    .sticky-call-btn .call-text {
        font-size: 13px;
        text-align: center;
        line-height: 1.2;
    }
}

.sticky-call-btn a {
    background: linear-gradient(135deg, #FF4444, #cc0000);
    color: white;
    padding: 1rem 1.5rem;
    border: 3px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(255,68,68,0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: stickyButtonPulse 2.5s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.sticky-call-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}

.sticky-call-btn a::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border: 2px solid white;
    border-radius: 50%;
    animation: onlineIndicator 1.5s infinite;
}

.sticky-call-btn a:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,68,68,0.6);
    background: linear-gradient(135deg, #ff6666, #ff0000);
    border-color: rgba(255,255,255,0.3);
}

.sticky-call-btn a:hover::before {
    left: 100%;
}

.sticky-call-btn a:active {
    transform: scale(1.08) translateY(-1px);
    transition: all 0.1s ease;
}

.call-icon {
    font-size: 1.2rem;
}

.call-text {
    white-space: nowrap;
}

/* === ENHANCED BUTTON ANIMATIONS === */
@keyframes heroButtonPulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    }
    50% { 
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    }
}

@keyframes stickyButtonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(255,68,68,0.4);
    }
    25% { 
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255,68,68,0.5);
    }
    50% { 
        transform: scale(1.02) translateY(-2px);
        box-shadow: 0 10px 35px rgba(255,68,68,0.6);
    }
    75% { 
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255,68,68,0.5);
    }
}

@keyframes phoneRing {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(-15deg); }
    75% { transform: translateY(-50%) rotate(15deg); }
}

@keyframes lightning {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 0.7; }
}

@keyframes onlineIndicator {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.6); }
}

/* Disinfection CTA Button */
.dezinfekcija-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 0.5rem;
}

.btn-dezinfekcija {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.btn-dezinfekcija:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--dark-blue) 0%, #002d5a 100%);
}

/* Mobile-first modal improvements */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 85vh;
    }
    
    .modal-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .modal-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .dezinfekcija-cta {
        margin: 1.5rem 0;
        padding: 0.5rem;
    }
    
    .btn-dezinfekcija {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .modal-body-vertical .modal-image {
        height: 150px;
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .modal-cta-center .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Hide sticky button on desktop */
@media (min-width: 1024px) {
    .sticky-call-btn {
        display: none;
    }
}

/* Mobile Speed Dial - Floating Action Buttons */
.mobile-speed-dial {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-speed-dial a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.mobile-speed-dial a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}

.mobile-speed-dial a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.mobile-speed-dial a:hover::before {
    left: 100%;
}

.mobile-speed-dial a:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.speed-dial-call {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    animation: speedDialPulse 3s infinite;
}

.speed-dial-sms {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    animation: speedDialPulse 3.2s infinite;
}

.speed-dial-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: speedDialPulse 3.4s infinite;
}

.mobile-speed-dial .icon {
    position: relative;
    z-index: 2;
}

.mobile-speed-dial .text {
    display: none; /* Hidden by default, shown on larger mobile screens */
}

/* Show text labels on larger mobile screens */
@media (min-width: 480px) {
    .mobile-speed-dial {
        bottom: 25px;
        right: 25px;
    }
    
    .mobile-speed-dial a {
        width: auto;
        height: 56px;
        padding: 0 20px;
        border-radius: 28px;
        gap: 8px;
    }
    
    .mobile-speed-dial .text {
        display: block;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Hide mobile speed dial on desktop */
@media (min-width: 1024px) {
    .mobile-speed-dial {
        display: none;
    }
}

/* Speed dial pulse animation */
@keyframes speedDialPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }
}

.btn-small {
    background: var(--primary-blue) !important;
    color: white !important;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue) !important;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    white-space: nowrap;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}

.btn-small:hover {
    background: var(--accent-gold) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
    border-color: var(--accent-gold) !important;
}

.btn-small:hover::before {
    left: 100%;
}

.btn-small:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Card Components */
.usluga-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.usluga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #2563eb, var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.usluga-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-blue);
}

.usluga-card:hover::before {
    transform: scaleX(1);
}

.usluga-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-blue);
}

.usluga-card:hover::before {
    transform: scaleX(1);
}

.usluga-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.usluga-card:hover .usluga-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
}

.usluga-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(14%) sepia(67%) saturate(3446%) hue-rotate(213deg) brightness(94%) contrast(95%);
}

.usluga-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.usluga-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Modal Components */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Prevent interaction when hidden */
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto; /* Allow interaction when active */
}

.modal-content {
    background: white;
    border-radius: var(--radius-md);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-gray);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-blue);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
    order: -1; /* Image always on top */
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dezinfekcija Gallery */
.dezinfekcija-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.dezinfekcija-small {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.dezinfekcija-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-blue);
}

.modal-text {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-text h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.modal-text h3 {
    color: var(--dark-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.modal-text p {
    text-align: center;
}

.modal-text ul {
    text-align: left;
    display: inline-block;
    margin: 1rem auto;
}

.modal-text .btn {
    display: inline-block;
    margin: 1.5rem auto 0;
}

/* Vertical modal layout for disinfection modal */
.modal-body-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-body-vertical .modal-image {
    width: 100%;
    height: 200px;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.modal-body-vertical .modal-text {
    width: 100%;
    order: 2;
}

/* Modal CTA Center */
.modal-cta-center {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.modal-cta-center .btn {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.modal-cta-center .btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Pricing Table Styles */
.pricing-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
}

.pricing-table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table thead th:first-child {
    border-top-left-radius: var(--radius-sm);
}

.pricing-table thead th:last-child {
    border-top-right-radius: var(--radius-sm);
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: #f8fafc;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 1rem;
    color: var(--text-primary);
}

.pricing-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-navy);
}

.pricing-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

/* Mobile Pricing Table - Responsive Design */
@media (max-width: 768px) {
    .pricing-table-container {
        margin: 1rem -1rem;
        border-radius: 0;
    }
    
    .pricing-table {
        font-size: 0.85rem;
        min-width: 500px;
    }
    
    .pricing-table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .pricing-table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-table tbody td:first-child {
        font-size: 0.85rem;
    }
    
    .pricing-table tbody td:not(:first-child) {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        min-width: 450px;
        font-size: 0.8rem;
    }
    
    .pricing-table thead th {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .pricing-table tbody td {
        padding: 0.6rem 0.4rem;
    }
}

.modal-text p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-features {
    list-style: none;
    margin: 1.5rem 0;
}

.modal-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.modal-features li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
}

/* Features List Component */
.features-list {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-list li:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,102,204,0.15);
}

.features-list li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* === WEATHER WIDGET === */
/* Weather Widget - Always Visible (Professional Style) */
.weather-widget-always {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.weather-panel-always {
    width: 200px;
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.weather-panel-always:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}

/* Weather Panel Header */
.weather-panel-header-always {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-panel-header-always h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Weather Panel Content */
.weather-panel-content-always {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
}

.weather-temp-always {
    font-size: 2.8em;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.weather-desc-always {
    font-size: 0.95em;
    font-weight: 500;
    opacity: 0.95;
    text-transform: capitalize;
    text-align: center;
}

.weather-info-always {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85em;
    margin-top: 5px;
    opacity: 0.9;
}

.weather-info-always span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-info-always .inline-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.weather-location-always {
    font-size: 0.75em;
    opacity: 0.8;
    text-align: center;
    margin-top: 5px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive for Always-Visible Weather Widget */
@media (max-width: 768px) {
    .weather-widget-always {
        bottom: 15px;
        left: 2%;
        width: 48%;
        max-width: 180px;
    }
    
    .weather-panel-always {
        width: 100%;
    }
    
    .weather-panel-content-always {
        padding: 15px 10px;
    }
    
    .weather-temp-always {
        font-size: 2.2em;
    }
    
    .weather-panel-header-always {
        padding: 10px 12px;
    }
    
    .weather-panel-header-always h3 {
        font-size: 12px;
    }
    
    .weather-desc-always {
        font-size: 0.85em;
    }
    
    .weather-info-always {
        gap: 10px;
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .weather-widget-always {
        max-width: 160px;
    }
    
    .weather-temp-always {
        font-size: 2em;
    }
    
    .weather-info-always {
        flex-direction: column;
        gap: 5px;
    }
}

/* === ANIMATIONS === */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20%); }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Subtle animations for booking modal */
@keyframes subtlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.01);
    }
}

@keyframes subtleShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

/* === INSTANT BOOKING MODAL === */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    pointer-events: none; /* Prevent interaction when hidden */
}

.booking-modal.active {
    display: flex;
    pointer-events: auto; /* Allow interaction when active */
}

.booking-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    animation: slideInUp 0.3s ease-out;
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-header h3 {
    margin: 0;
    font-size: 1.2em;
}

.booking-close {
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0.8;
}

.booking-form {
    padding: 20px;
}

.urgency-notice {
    background: linear-gradient(135deg, #ff9f43, #f0932b);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    animation: subtlePulse 3s ease-in-out infinite;
}

.urgency-notice .inline-icon {
    animation: subtleShake 4s ease-in-out infinite;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.booking-form input:focus, .booking-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    color: white;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.booking-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.booking-submit:hover {
    transform: scale(1.02) translateY(-2px);
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
    border-color: rgba(255,255,255,0.2);
}

.booking-submit:hover::before {
    left: 100%;
}

.booking-submit:active {
    transform: scale(1.01);
    transition: all 0.1s ease;
}

.booking-guarantee {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6;
}

.discount-notification {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1em;
    animation: subtlePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .simple-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-bubble {
        padding: 14px 18px;
        border-radius: 20px;
    }
    
    .chat-text {
        font-size: 0.85em;
    }
    
    .chat-options {
        width: 95%;
        margin: 20px;
    }
    
    .chat-methods {
        padding: 20px;
        gap: 12px;
    }
    
    .chat-method {
        padding: 16px;
    }
    
    .method-icon {
        font-size: 1.6em;
        min-width: 35px;
    }
    
    .method-text h5 {
        font-size: 1em;
    }
    
    .method-text p {
        font-size: 0.85em;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .urgency-text {
        font-size: 1em;
    }
    
    .booking-content {
        width: 95%;
        margin: 20px;
    }
}

/* === ENHANCED HERO BUTTONS WITH ANIMATIONS === */
.btn-hero-call {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white !important;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600 !important;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 1 !important;
    min-width: 240px;
    text-align: center;
}

.btn-hero-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.4s ease;
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-navy));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    text-decoration: none;
    color: white !important;
    border-color: rgba(255,255,255,0.2);
}

.btn-hero-call:hover::before {
    left: 100%;
}

.btn-hero-booking {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-navy) !important;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600 !important;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 1 !important;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}

.btn-hero-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.4s ease;
}

.btn-hero-booking:hover {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    text-decoration: none;
    color: white !important;
    border-color: rgba(255,255,255,0.2);
}

.btn-hero-booking:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .btn-hero-call, .btn-hero-booking {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 10px 18px;
        font-size: 0.9em;
        border-radius: var(--radius-md);
        min-width: auto;
        letter-spacing: 0.3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 1.2rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero .hero-urgency {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
}

/* Extra small mobile devices (phones < 400px) */
@media (max-width: 400px) {
    .btn-hero-call, .btn-hero-booking {
        max-width: 100%;
        padding: 8px 14px;
        font-size: 0.8em;
        min-width: auto;
    }
    
    .hero-buttons {
        gap: 10px;
        padding: 0 0.5rem;
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
}

/* === ENTERPRISE-GRADE FAQ SYSTEM - MOBILE FIRST === */
/* Clean, Professional Design - Worthy of Fortune 500 */

/* Professional Chat Tabs */
.chat-tabs {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    padding: 0;
}

.chat-tab {
    flex: 1;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.chat-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--accent-orange);
    background: #f8fafc;
}

.chat-tab:hover {
    color: var(--primary-blue);
    background: #f1f5f9;
}

/* Clean Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Professional Chat Window */
.chat-window {
    width: 400px;
    max-height: 580px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Clean Search Bar */
.faq-search {
    margin: 20px 20px 24px 20px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    background: #ffffff;
    transition: border-color 0.2s ease;
    font-weight: 500;
}

.faq-search input:focus {
    border-color: var(--accent-orange);
}

.faq-search input::placeholder {
    color: #94a3b8;
}

.faq-search::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Clean Categories */
.faq-categories {
    max-height: 380px;
    overflow-y: auto;
    padding: 0 20px 20px 20px;
}

.faq-categories::-webkit-scrollbar {
    width: 3px;
}

.faq-categories::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.faq-categories::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 2px;
}

.faq-category {
    margin-bottom: 20px;
}

.faq-category h5 {
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--accent-orange);
}

/* Clean FAQ Items */
.faq-item {
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.12);
}

/* Clean Questions */
.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    user-select: none;
    line-height: 1.4;
    transition: background-color 0.2s ease;
    min-height: 52px;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 12px;
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    color: var(--accent-orange);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Clean Answers */
.faq-answer {
    display: none;
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    margin: 0 0 14px 0;
    font-weight: 500;
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Enhanced FAQ CTA Buttons */
.faq-cta {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    color: white;
    border: 2px solid transparent;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.2);
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.faq-cta:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
    border-color: rgba(255,255,255,0.2);
}

.faq-cta:hover::before {
    left: 100%;
}

.faq-cta:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

/* Clean Info Box */
.faq-info-box {
    background: #dcfce7;
    color: #166534;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 12px;
    margin-top: 14px;
    border-left: 3px solid #22c55e;
    font-weight: 600;
}

/* Clean Footer */
.faq-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
    background: #f8fafc;
}

.faq-footer p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.faq-phone {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.faq-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.faq-phone:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.3);
    border-color: rgba(255,255,255,0.2);
}

.faq-phone:hover::before {
    left: 100%;
}

.faq-phone:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

/* Mobile Optimizations - MOBILE IS KING! */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 80px;
        right: 15px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        max-width: 360px;
        right: -15px;
        max-height: 520px;
    }
    
    .chat-tab {
        padding: 16px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .faq-search {
        margin: 16px 16px 20px 16px;
    }
    
    .faq-search input {
        padding: 12px 14px 12px 40px;
        font-size: 14px;
    }
    
    .faq-categories {
        max-height: 320px;
        padding: 0 16px 16px 16px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .faq-answer {
        padding: 16px;
        font-size: 13px;
    }
    
    .faq-cta {
        padding: 12px 16px;
        font-size: 11px;
        min-height: 44px;
    }
    
    .faq-phone {
        padding: 12px 24px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .faq-category h5 {
        padding: 6px 12px;
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .faq-footer {
        padding: 16px;
    }
}

/* Clean Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inline Icon Styling for Emoji Replacements */
.inline-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.25rem;
    display: inline-block;
    flex-shrink: 0;
}

.section-title .inline-icon {
    width: 22px;
    height: 22px;
    margin: 0 5px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(89%) saturate(2180%) hue-rotate(204deg) brightness(98%) contrast(104%);
}

/* Enhanced Consent Links (Privacy Policy) */
.consent .privacy-link {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    background: rgba(30, 58, 138, 0.1) !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    color: var(--primary-blue) !important;
    text-decoration: none !important;
    border: 1px solid rgba(30, 58, 138, 0.2) !important;
}

.consent .privacy-link:hover {
    background: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue) !important;
    transform: scale(1.05) !important;
}

/* Enhanced Consent Checkboxes */
.consent input[type="checkbox"] {
    transform: scale(2.2) !important;
    margin-right: 12px !important;
    margin-bottom: 8px !important;
    accent-color: var(--primary-blue) !important;
    vertical-align: middle !important;
}

/* Mobile consent adjustments */
@media (max-width: 768px) {
    .consent .privacy-link {
        font-size: 1rem !important;
        padding: 1px 6px !important;
    }

    .consent input[type="checkbox"] {
        transform: scale(1.4) !important;
        margin-right: 8px !important;
    }
}
