* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #0a0a1f;
    line-height: 1.6;
    overflow-x: hidden;
    background: #F7F7F7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #F7F7F7;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border: none;
    box-shadow: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #0a0a1f;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7BF0BB;
}

.btn-book {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background: #5ee0a5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0a0a1f;
    transition: 0.3s;
}

/* Contact Form Section */
.contact-form {
    background: #F7F7F7;
    padding: 140px 0 80px;
}

.contact-form h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
    margin-bottom: 60px;
    text-align: left;
}

.form {
    background: #F7F7F7;
    padding: 0;
    border-radius: 0;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    margin-bottom: 24px;
}

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
}

.form-group input,
.form-group textarea {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #0a0a1f;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    background: #FFFFFF;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7BF0BB;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #647287;
}

.btn-submit {
    background: #7BF0BB;
    color: #0a0a1f;
    border: 1px solid #7BF0BB;
    padding: 16px 32px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

.btn-submit:hover {
    background: #5ee0a5;
    border-color: #5ee0a5;
}

.btn-submit:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CTA Section */
.cta {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-book-meeting {
    background: #7BF0BB;
    color: #0a0a1f;
    border: 1px solid #7BF0BB;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-meeting:hover {
    background: #5ee0a5;
    border-color: #5ee0a5;
}

.btn-view-projects {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #0a0a1f;
    text-decoration: none;
    transition: color 0.3s;
    border: 1px solid #0a0a1f;
    padding: 12px 24px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-view-projects:hover {
    color: #7BF0BB;
    border-color: #7BF0BB;
}

/* Footer */
.footer {
    background: #010027;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: #F8FAFC;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon-img {
    width: 24px;
    height: 23.85px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7BF0BB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7BF0BB;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .contact-form h1 {
        font-size: 36px;
    }

    .form {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .contact-form h1 {
        font-size: 28px;
    }

    .form {
        padding: 24px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
