/* Core Layout and Typography */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Page sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Navigation styles */
.nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.floating-nav {
    transition: all 0.3s ease;
}

/* Dropdown menu styles */
.group:hover .group-hover\:visible {
    visibility: visible;
    opacity: 1;
}

/* Search input animation */
#search-input:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Custom orange gradient */
.orange-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Service area map styling */
.service-area {
    transition: all 0.3s ease;
}

.service-area.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.service-area.active.ring-4 {
    transform: scale(1.02);
}

/* Parallax video effect */
#hero-video {
    transform: scale(1.1);
    will-change: transform;
    transition: opacity 0.7s;
}

#hero-video.fading {
    opacity: 0;
}