/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Contact Content */
.contact-form-content {
    padding-right: 20px;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-form-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-form-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.contact-detail-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: #d4af37;
}

/* Right Side - Contact Form */
.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.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='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

.submit-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4af37, #c19a2e);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-form-wrapper {
        gap: 40px;
    }

    .contact-form-title,
    .contact-form-subtitle {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-content {
        padding-right: 0;
    }

    .contact-form-title,
    .contact-form-subtitle {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-title,
    .contact-form-subtitle {
        font-size: 1.75rem;
    }

    .contact-form-description {
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

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