/* Custom styles and animations */
:root {
    --neon-green: #00FF99;
    --neon-purple: #A100F2;
    --neon-pink: #FF00FF;
}

body {
    background: linear-gradient(135deg, #1A1A2E 0%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #E0E0E0; /* Matches text-gray-100 */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* Matches font-sans */
}

/* Logo styling */
.logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem; /* Matches mb-4 */
}

/* Service card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #2D3748; /* Matches bg-gray-800 */
    border: 1px solid rgba(0, 255, 153, 0.2);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 153, 0.3);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background-color: #2D3748; /* Matches bg-gray-800 */
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 600px;
    width: 90%;
    border: 1px solid var(--neon-green);
    color: #E0E0E0;
}

/* Header styling with animation */
#header {
    background: linear-gradient(to bottom, #1C2526 0%, #000000 100%); /* Matches from-blue-900 to-black */
    animation: pulse 3s infinite alternate;
}
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.03); }
}
.animate-pulse-slow {
    animation: pulse 3s infinite alternate;
}

/* Particle canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Color utilities */
.text-neon-green { color: var(--neon-green); }
.text-neon-purple { color: var(--neon-purple); }
.bg-neon-green { background-color: var(--neon-green); }
.bg-neon-purple { background-color: var(--neon-purple); }
.bg-gray-800 { background-color: #2D3748; }
.bg-gray-700 { background-color: #4A5568; }
.bg-gray-900 { background-color: #1A202C; }
.border-gray-600 { border-color: #718096; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-red-600 { color: #DC2626; }

/* Navigation and button styling */
nav a {
    color: #E0E0E0;
    text-decoration: none;
}
nav a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}
button {
    transition: all 0.3s ease;
}
button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 153, 0.5);
}

/* Form input styling */
input, textarea {
    background-color: #4A5568; /* Matches bg-gray-700 */
    border-color: rgba(0, 255, 153, 0.3);
    color: #E0E0E0;
}
input:focus, textarea:focus {
    border-color: var(--neon-green);
    outline: none;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Ensure content stays above particles */
.container, header, nav, section, footer {
    position: relative;
    z-index: 10;
}

/* Phone number styling */
a[href^="tel"], .phone-number {
    color: #ffffff !important; /* White color for phone numbers */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
a[href^="tel"]:hover, .phone-number:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}

/* Footer */
footer a:not([href^="tel"]) {
    color: var(--neon-green);
}
footer a:not([href^="tel"]):hover {
    text-decoration: underline;
}
