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

:root {
    --primary: #1B2A7D;
    --primary-dark: #0f1a4d;
    --accent-magenta: #A10071;
    --accent-teal: #09BAB3;
    --accent-teal-light: #B5EAE8;
    --text-dark: #1B2A7D;
    --text-light: #64748b;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Navigation */
.hero-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    gap: 32px;
}

.hero-nav a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    transition: color 0.2s;
    opacity: 0.9;
}

.hero-nav a:hover {
    opacity: 1;
    color: var(--accent-teal-light);
}

.hero-nav.nav-dark a {
    color: var(--primary);
}

.hero-nav.nav-dark a:hover {
    color: var(--accent-magenta);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero-wave.jpg') center center / 100% auto no-repeat;
    background-color: #0a0a1a;
    padding: 24px;
    position: relative;
}

.hero-logo {
    position: absolute;
    left: 3.5%;
    top: 37%;
    z-index: 1;
}

.hero-logo-img {
    width: 30vw;
    max-width: 400px;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--text-white);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--accent-teal);
    color: white;
}

.btn-primary:hover {
    background: #07a39c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(9, 186, 179, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 32px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-magenta) 100%);
    border-radius: 12px;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 42, 125, 0.1);
    border-color: var(--accent-teal);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-teal-light) 0%, rgba(9, 186, 179, 0.3) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
}

.contact-item svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(9, 186, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    height: 32px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--accent-teal-light);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 24px 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}
