:root {
    --mint: #60FFA0;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.topnav {
    background: rgba(96, 255, 160, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.topnav a {
    color: var(--mint);
    padding: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.topnav a:hover {
    color: white;
    background: rgba(96, 255, 160, 0.2);
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.logo img {
    width: 300px;
    max-width: 80%;
    filter: drop-shadow(0 0 10px rgba(96, 255, 160, 0.3));
}

.servicelist p {
    font-size: 1.2rem;
    color: var(--mint);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.consultation-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

h2 { margin-top: 0; color: var(--mint); }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #aaa;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--mint);
}

button {
    width: 100%;
    padding: 15px;
    background: var(--mint);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 255, 160, 0.4);
}

.hidden { display: none; }
#formResponse {
    margin-top: 20px;
    text-align: center;
    color: var(--mint);
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}
select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    appearance: none; /* Removes default browser styling */
    cursor: pointer;
}

/* Fix for dark backgrounds on dropdown options */
select option {
    background-color: #1a1a1a;
    color: white;
}

select:focus {
    outline: none;
    border-color: var(--mint);
}
.hidden {
    display: none;
}

/* Visual cue for the locked/greyed out state */
select:disabled {
    background: rgba(255, 255, 255, 0.02);
    color: #666;
    border-color: rgba(255, 255, 255, 0.1);
}