.inquiry-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-section h1 {
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #eef1f6;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8fafc;
    color: #2d3748;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d3748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:invalid {
    color: #a0aec0;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    background-color: #fff;
    border-color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #4a90e2;
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    background-color: #fff;
    border-color: #4a90e2;
}

.submit-btn {
    background-color: #4a90e2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.1);
}

.submit-btn:hover {
    background-color: #357abd;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(74, 144, 226, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
    padding: 1rem;
}

.form-group textarea::-webkit-resizer {
    border-width: 8px;
    border-style: solid;
    border-color: transparent #eef1f6 #eef1f6 transparent;
}

.form-divider {
    width: 100%;
    height: 1px;
    background-color: #eef1f6;
    margin: 1.5rem 0;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 1.5rem;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .inquiry-container {
        margin: 1rem auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1rem;
    }

    .contact-section h1 {
        font-size: 1.75rem;
    }

    .submit-btn {
        width: 100%;
    }
}

@keyframes input-focus {
    0% {
        background-color: #f8fafc;
    }
    100% {
        background-color: #fff;
    }
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    display: none;
}
