#progress-container {
    width: 100%;
    height: 4px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent;
}
#progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF6700, #ff9100);
    width: 0%;
    transition: width 0.1s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF6700; 
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(255, 103, 0, 0.15); 
    border-color: rgba(255, 103, 0, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 103, 0, 0.6); 
}

.img-loader {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    min-height: 200px;
}

.bg-texture-lines {
    background-color: #111111;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 11px
    );
}

.bg-texture-grid {
    background-color: #000000;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-texture-dots {
    background-color: #1a1a1a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.bg-texture-carbon {
    background-color: #050505;
    background-image: 
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111),
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.google-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

#lightbox {
    transition: opacity 0.3s ease;
}
#lightbox.hidden {
    pointer-events: none;
    opacity: 0;
}
#lightbox:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.price-table td {
    padding: 2px 0;
    font-size: 0.85rem;
    color: #d1d5db;
}
.price-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #FF6700;
}

.list-check li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
}
.list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FF6700;
    font-size: 0.75rem;
}

.filter-btn.active {
    background-color: #FF6700;
    color: white;
    border-color: #FF6700;
}

.brand-img {
    opacity: 0.7;
    transition: all 0.4s ease;
}

.brand-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.filter-white {
    filter: brightness(0) invert(1);
}

.filter-white:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255,255,255,0.5));
}


html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px; 
}