:root {
    --bg-dark: #0a192f;
    --bg-card: rgba(17, 34, 64, 0.7);
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent-cyan: #64ffda;
    --accent-gold: #ffd700;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #e6f1ff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-cyan {
    color: var(--accent-cyan);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--accent-cyan);
    background: transparent;
    color: var(--accent-cyan);
}

.btn:hover {
    background: rgba(100, 255, 218, 0.1);
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #4cdbb9;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 25, 47, 0.85);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Offset for fixed navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: rgba(100, 255, 218, 0.05);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.stat-item h4 {
    color: var(--accent-cyan);
    font-size: 1.8rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-features {
    list-style: none;
    margin-top: 20px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: var(--accent-cyan);
}

/* Contact / Form Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item label {
    display: block;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Menu Toggles */
.nav-toggle,
.nav-toggle-label {
    display: none;
}

.mobile-only-btn {
    display: none;
}

/* Responsive Media Queries */
@media (max-width: 768px) {

    /* Navigation */
    nav {
        padding: 15px 20px;
    }

    .desktop-only-btn {
        display: none;
    }

    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--accent-cyan);
        height: 2px;
        width: 25px;
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }

    .nav-toggle-label span::before {
        bottom: 8px;
    }

    .nav-toggle-label span::after {
        top: 8px;
    }

    /* Open Menu Styling */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }

    .mobile-only-btn {
        display: inline-block;
        margin-top: 10px;
    }

    #nav-toggle:checked~.nav-links {
        display: flex;
    }

    /* Hero Section Fixes */
    .hero {
        padding-top: 80px;
        height: auto;
        /* Allow content to dictate height */
        min-height: 100vh;
        text-align: center;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        /* Reduced from 4rem */
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .buttons .btn {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Stats Fixes */
    .stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 8px;
    }

    /* Contact Form */
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }
}