body {
    background-color: #000;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-section {
    max-width: 1350px;
    margin: 8rem auto;
    padding: 0 2rem;
    width: 100%;
    background-color: #000;
    gap: 5rem;
    align-items: flex-start;
}

.contact-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    padding: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: flex-start;
    background-color: #000;
}

.contact-text {
    padding-top: 4rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: none;
}

.contact-title .highlight {
    background: linear-gradient(to right, #a1ff8a, #4fcc34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contact-flow {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.testimonial {
    border-left: 3px solid #4fcc34;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 1rem;
    color: #aaa;
}

.contact-form .form-row {
    display: flex;
    gap: 2rem;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form label.required::after {
    content: '*';
    color: #ff5555;
    margin-left: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23ffffff%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 5px top 50%;
    background-size: 1rem;
}

.contact-form select option {
    background-color: #111;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-bottom-color: #fff;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 1rem;
    color: #ccc;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #555;
    background-color: transparent;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.checkbox-item label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg) scale(0);
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked + label::before {
    background-color: #fff;
    border-color: #fff;
}

.checkbox-item input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) rotate(45deg) scale(1);
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 1.2rem;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #f4f0ea;
}

.contact-info {
    padding: 2rem;
    background-color: #111;
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-email {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact .social-link {
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.social-links-contact .social-link:hover {
    opacity: 1;
}

.social-links-contact .social-link.linkedin {
    background-image: url('images/linkedin.svg');
}
.social-links-contact .social-link.instagram {
    background-image: url('images/instagram.svg');
}
.social-links-contact .social-link.tiktok {
    background-image: url('images/tiktok.svg');
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        margin: 6rem auto;
        padding: 0 1rem;
    }
    .contact-content {
        gap: 3rem;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
} 