:root {
    --bg-color: #1a2038;
    --surface-color: #262e4d;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-color: #4fd1c5;
    /* A modern teal for contrast */
    --border-color: #38426d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: rgba(26, 32, 56, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.logo-img {
    height: 69px;
    width: auto;
    padding-top: 8px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* --- Hero Section --- */
#home {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
    display: flex;
    justify-content: space-evenly;
}

.hero-img {
    width: 40%;
    height: auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-icon {
    font-size: 80px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

#home h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Section --- */
#services {
    padding: 80px 10%;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--surface-color);
    padding: 40px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .material-icons {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.coming-soon {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
}

/* --- Contact Section --- */
#contact {
    padding: 80px 10%;
    background-color: var(--surface-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: -15px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

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

select[multiple] {
    height: 120px;
}

button {
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.9;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}
