.contact-container {
    background: #EAE7E7;
}

.content-wrapper {
    padding: 6rem 1rem 3rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    color: #666;
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #daa520;
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.info-item .label {
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 0.5rem;
}

.info-item .detail {
    color: #666;
    margin: 0;
    padding-top: 1rem;
}

/* New styles for contact links */
.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #daa520;
    transform: scale(1.05);
}

.contact-link:hover i {
    color: #daa520;
}

.contact-link div {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-form {
    background-color: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 0.5rem;
    border: 2px solid #daa520;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e9a82c;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    background-color: #e9a82c;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.submit-btn:hover {
    background-color: #d1d5db;
}

/* Special handling for business hours which should stay vertical */
.info-item.business-hours div {
    flex-direction: column;
    align-items: flex-start;
}

.info-item.business-hours {
    margin-bottom: 0.25rem;
}
.detail {
    font-size: 1.25rem;
}


@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 4rem);
        padding: 0 2rem;
    }
    
    .content-wrapper {
        padding: 7rem 0 4rem;
    }
}

@media (max-width: 767px) {
    .info-item {
        margin-bottom: 1.25rem;
    }
    
    .info-item i {
        font-size: 1.25rem;
    }
    
    .detail {
        font-size: 0.95rem;
    }
    
    .contact-form {
        margin-top: 1.5rem;
    }
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    color: #333;
    appearance: none; /* Removes default browser styling */
    -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='currentColor' 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;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #e9a82c;
    box-shadow: 0 0 0 2px rgba(233, 168, 44, 0.2);
}

.form-group select:hover {
    border-color: #e9a82c;
}

/* Style for the placeholder option */
.form-group select option[value=""] {
    color: #666;
}

/* Style for actual options */
.form-group select option {
    color: #333;
    padding: 12px;
}