:root {
    --accent-blue: #0056B3;
    --accent-green: #39FF14;
    --accent-yellow: #FFD700;
}

body {
    scroll-behavior: smooth;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px -10px rgba(0, 86, 179, 0.3);
}

.glow-yellow:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.glow-green:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
}

/* Form Styles */
input::placeholder, textarea::placeholder {
    color: #666;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='gray'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
}

/* Map responsive container */
.map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    filter: grayscale(1) invert(0.92) contrast(0.8);
}
