/* Contact Hero Section */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
    color: #ffffff;
    margin-top: 80px;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(100, 200, 255, 0.5);
}

.contact-hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #a0d2ff;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

.contact-intro .section-title {
    margin-bottom: 30px;
}

.contact-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    color: #000000;
}

.info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

.info-value a {
    color: #0066cc;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-value a:hover {
    opacity: 0.7;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
}

.contact-form {
    max-width: 700px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.form-group label.required::after {
    content: " *";
    color: #ff4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 40px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444444;
}

.checkbox-label span a {
    color: #0066cc;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    padding: 18px 60px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #000000;
    border: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #000000;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        margin-top: 70px;
        min-height: 300px;
    }

    .contact-form-section {
        padding: 60px 30px;
    }

    .contact-intro {
        margin-bottom: 50px;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .submit-button {
        width: 100%;
        padding: 16px;
    }
}