:root {
    --primary: #8A2BE2; /* Blue Violet */
    --primary-dark: #6A0DAD;
    --accent: #C0C0C0; /* Silver */
    --dark: #1A1A2E; /* Dark Blue/Purple */
    --light: #F0F0F5;
    --white: #FFFFFF;
    --gray: #A0A0A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--light); color: var(--dark); line-height: 1.6; }

header { background: var(--dark); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo img { height: 35px; width: auto; filter: brightness(0) invert(1); /* Makes logo white on dark background */ }
.nav-links a { text-decoration: none; color: var(--white); margin-left: 25px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.hero { background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../images/hero.jpg'); background-size: cover; background-position: center; height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn { display: inline-block; padding: 12px 30px; background: var(--primary); color: var(--white); text-decoration: none; border-radius: 5px; font-weight: 600; transition: background 0.3s; }
.btn:hover { background: var(--primary-dark); }

.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; }
.section-title p { color: var(--gray); font-size: 1.1rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 25px; }
.card-content h3 { margin-bottom: 10px; font-size: 1.3rem; }
.card-content p { color: var(--gray); margin-bottom: 20px; }

.features { background: var(--dark); color: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
.feature-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

footer { background: var(--dark); color: var(--white); padding: 60px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-about p { color: #A0A0A0; margin-top: 15px; }
.footer-links h4 { margin-bottom: 15px; color: var(--primary); }
.footer-links a { display: block; color: #A0A0A0; text-decoration: none; margin-bottom: 8px; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-logo img { height: 30px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); /* Makes logo white on dark background */ }
.footer-bottom { border-top: 1px solid #404050; padding-top: 20px; text-align: center; color: #A0A0A0; }

/* Force single line email rule */
.nowrap { white-space: nowrap; }

/* Contact Form Placeholder */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { margin-bottom: 20px; font-size: 1.8rem; }
.contact-info p { margin-bottom: 15px; display: flex; align-items: center; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #CED4DA; border-radius: 5px; }
.contact-form button { width: 100%; padding: 15px; background: var(--primary); color: var(--white); border: none; border-radius: 5px; font-weight: 600; cursor: pointer; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}
