/* 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 */
.mobile-menu-btn {
    display: none;
    background: #ffffff;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
    padding: 0.8rem;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.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.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.mobile-menu-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn:active {
    transform: scale(1.02);
    transition: all 0.1s ease;
    background: #e2e8f0;
}

/* 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;
}

/* === ENHANCED BUTTON SYSTEM - PROFESSIONAL ANIMATIONS === */
.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: #e0e7ff;
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 1rem 0;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* 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;
    }
}

.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: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.usluga-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.usluga-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.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: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.usluga-card p {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    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;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.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;
}

/* === PREMIUM BRAND SHOWCASE - ENTERPRISE GRADE === */
/* World-Class Professional Design - Fortune 500 */

.brands-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.brands-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brands-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.brands-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    animation: infiniteScroll 60s linear infinite;
    gap: 0.75rem;
    /* Width will be auto-calculated based on cloned content */
}

.brand-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.08);
    flex: 0 0 140px;
    margin: 0 auto;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), rgba(249, 115, 22, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(30, 58, 138, 0.08);
    border-color: rgba(30, 58, 138, 0.12);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.brand-logo-premium {
    width: 110px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(15%) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.brand-card:hover .brand-logo-premium {
    filter: grayscale(0%) contrast(1.2) brightness(1.05);
    transform: scale(1.05);
}

.brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-card:hover .brand-name {
    color: var(--accent-gold);
}

.trust-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2px 4px;
    border-radius: 5px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.25);
    line-height: 1;
}

/* Infinite Scroll Animation */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for mobile accessibility */
@media (hover: hover) {
    .brands-carousel:hover .carousel-track {
        animation-play-state: paused;
    }
}

/* Premium Animations */
@keyframes brandFadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-card:nth-child(1) { animation: brandFadeInUp 0.4s ease-out; }
.brand-card:nth-child(2) { animation: brandFadeInUp 0.5s ease-out; }
.brand-card:nth-child(3) { animation: brandFadeInUp 0.6s ease-out; }
.brand-card:nth-child(4) { animation: brandFadeInUp 0.7s ease-out; }
.brand-card:nth-child(5) { animation: brandFadeInUp 0.8s ease-out; }
.brand-card:nth-child(6) { animation: brandFadeInUp 0.9s ease-out; }

/* Mobile Responsive - MOBILE IS KING! */
@media (max-width: 1024px) {
    .brands-showcase {
        padding: 2.5rem 1rem;
    }

    .brand-card {
        flex: 0 0 120px;
        padding: 0.875rem 0.625rem;
    }

    .brand-logo-container {
        height: 60px;
        margin-bottom: 0.625rem;
    }

    .brand-logo-premium {
        width: 95px;
        height: 47px;
        padding: 4px;
    }

    .carousel-track {
        /* Width auto-calculated by carousel.js */
        animation-duration: 45s; /* Faster on tablet */
    }
}

@media (max-width: 768px) {
    .brands-showcase {
        padding: 2rem 0.5rem;
    }

    .brands-header h2 {
        font-size: 1.6rem;
    }

    .brands-subtitle {
        font-size: 0.95rem;
    }

    .brand-card {
        flex: 0 0 110px;
        padding: 0.75rem 0.5rem;
        border-radius: 10px;
    }

    .brand-logo-container {
        height: 55px;
        margin-bottom: 0.5rem;
    }

    .brand-logo-premium {
        width: 85px;
        height: 42px;
        padding: 3px;
    }

    .brand-name {
        font-size: 0.7rem;
    }

    .carousel-track {
        /* Width auto-calculated by carousel.js */
        animation-duration: 40s; /* Even faster on mobile */
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .brands-showcase {
        padding: 1.5rem 0;
    }

    .brands-container {
        padding: 0 0.5rem;
    }

    .brands-header {
        margin-bottom: 1.5rem;
    }

    .brands-header h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .brands-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .brand-card {
        flex: 0 0 95px;
        padding: 0.625rem 0.5rem;
        border-radius: 8px;
    }

    .brand-logo-container {
        height: 45px;
        margin-bottom: 0.375rem;
    }

    .brand-logo-premium {
        width: 70px;
        height: 35px;
        padding: 2px;
    }

    .brand-name {
        font-size: 0.6rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.125rem;
    }

    .trust-indicator {
        top: 4px;
        right: 4px;
        padding: 1px 3px;
        font-size: 0.45rem;
        font-weight: 800;
    }

    .carousel-track {
        /* Width auto-calculated by carousel.js */
        animation-duration: 35s; /* Fastest on small screens */
        gap: 0.375rem;
    }
}



/* === PROFESSIONAL URGENCY BAR === */
.urgency-bar {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.urgency-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.urgency-icon {
    font-size: 1.2em;
    animation: bounce 1s infinite;
}

.urgency-text {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.urgency-btn::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.5s ease;
}

.urgency-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.urgency-btn:hover::before {
    left: 100%;
}

.urgency-btn:active {
    transform: scale(1.05) translateY(-1px);
    transition: all 0.1s ease;
}

/* === WEATHER WIDGET === */
.weather-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.weather-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: white;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    font-weight: 600;
}

.weather-location .inline-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(54%) saturate(502%) hue-rotate(353deg) brightness(98%) contrast(95%);
}

.weather-temp {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-desc {
    font-size: 1.1em;
    font-weight: 500;
    opacity: 0.95;
    text-transform: capitalize;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95em;
}

.weather-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-info .inline-icon {
    width: 20px;
    height: 20px;
}

/* === ENHANCED TESTIMONIALS === */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.stat {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-color);
    font-weight: 500;
}

.testimonial.verified {
    position: relative;
    border-left: 4px solid #28a745;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.1em;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

.review-date {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    display: block;
}

.live-reviews {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInUp 0.6s ease-out;
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
    animation: blink 1.5s infinite;
}

.live-text {
    flex: 1;
    font-size: 0.95em;
    animation: marquee 15s linear infinite;
}

/* === 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;
}

.booking-modal.active {
    display: flex;
}

.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: 22px 45px;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 1.15em;
    font-weight: 700 !important;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    display: inline-block;
    animation: heroButtonPulse 3s infinite;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 1 !important;
    min-width: 280px;
}

.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.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-call::after {
    content: '📞';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    animation: phoneRing 2s infinite;
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, var(--professional-red), #991b1b);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.4);
    text-decoration: none;
    color: white !important;
    border-color: rgba(255,255,255,0.3);
}

.btn-hero-call:hover::before {
    left: 100%;
}

.btn-hero-booking {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white !important;
    border: 3px solid transparent;
    padding: 22px 45px;
    border-radius: var(--radius-lg);
    font-size: 1.15em;
    font-weight: 700 !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    display: inline-block;
    animation: heroButtonPulse 3s infinite 0.5s;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 1 !important;
    min-width: 280px;
}

.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.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-booking::after {
    content: '⚡';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    animation: lightning 1.5s infinite;
}

.btn-hero-booking:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-navy) !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
    border-color: rgba(255,255,255,0.3);
}

.btn-hero-booking:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .btn-hero-call, .btn-hero-booking {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 0.85em;
        border-radius: var(--radius-md);
        min-width: auto;
        letter-spacing: 0.3px;
    }
    
    .btn-hero-call::after,
    .btn-hero-booking::after {
        font-size: 1em;
        left: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 1.5rem;
        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: 10px 15px;
        font-size: 0.75em;
        min-width: auto;
    }
    
    .btn-hero-call::after,
    .btn-hero-booking::after {
        font-size: 0.9em;
        left: 8px;
    }
    
    .hero-buttons {
        gap: 10px;
        padding: 0 0.5rem;
    }
    
    .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;
}
