body {
    font-family: 'Poppins', sans-serif;
    background-color: #111827;
    color: #ffffff;
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FBBF24; /* yellow-400 */
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Header Text Color --- */
.header-logo, .nav-link, .header-icon {
    color: #ffffff;
    transition: color 0.4s ease;
}

header {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 2rem; /* More rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    transition: opacity 0.8s ease, top 0.8s ease, left 0.8s ease;
    opacity: 0;
    transform-origin: center center;
    pointer-events: none;
}

.service-card:hover::before {
    top: -75%;
    left: -75%;
    opacity: 1;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../toy_dumpster.png');
    background-size: cover;
    background-position: center;
    color: #ffffff; /* Ensure hero text is always white */
}

/* Force hero text to be white to override theme styles */
#home .relative.z-10 * {
    color: #ffffff !important;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

#map-container {
    border-radius: 1.5rem;
    overflow: hidden;
}

.map-aspect-ratio {
    padding-bottom: 90%; /* Square-like on mobile */
}

@media (min-width: 768px) {
    .map-aspect-ratio {
        padding-bottom: 40%; /* Wide on desktop */
    }
}

.state {
    fill: #4A5568; /* Dark gray for states */
    stroke: #111827;
    stroke-width: 1;
    transition: fill 0.3s ease;
}

.state.active {
    fill: #F97316; /* sunset-orange */
}

/* --- Why Us Section --- */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03); /* Even more translucent */
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    left: var(--mouse-x, 0px);
    top: var(--mouse-y, 0px);
    width: 350px;  /* Larger for more softness */
    height: 350px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.2) 0%, rgba(0, 191, 255, 0) 60%); /* Cool blue, subtle, and soft */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: var(--opacity, 0);
    transition: opacity 0.5s;
    pointer-events: none;
}

#theme-toggle img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#theme-toggle .hidden {
    transform: rotate(-90deg);
    opacity: 0;
}

.modal {
    transition: opacity 0.25s ease;
    z-index: 9999; /* Ensure modal is on top of all other content */
}
.modal-content {
    transition: transform 0.25s ease;
}
.modal-loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #FBBF24; /* Orange */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Cyberpunk Neon Button Effect --- */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.cta-button:hover {
    border-color: #00f6ff;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.5), inset 0 0 10px rgba(0, 246, 255, 0.3);
}

.bokeh-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    /* The background color will be set by JS, but the shadow creates the glow */
}

.apply-suggestion-button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-suggestion-button:hover {
    background-color: #2563eb;
}

/* --- Footer --- */
.site-footer {
    background-color: #1F2937; /* A dark slate/blue */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-title {
    color: #FBBF24; /* Sunset Gold */
}

.footer-tagline {
    color: #D1D5DB; /* Light Gray */
    font-style: italic;
}
