/**
 * Contact Section Styles
 */

.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.contact-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

/* Left Column - Contact Information */
.contact-info-column {
    flex: 0 0 calc(50% - 32px);
    max-width: 576px;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-dot {
    width: 8px;
    height: 8px;
    background-color: #FFCC00;
    border-radius: 50%;
    margin-right: 16px;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14.55px;
    line-height: 24px;
    color: #FFCC00;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

.contact-dot-end {
    width: 8px;
    height: 8px;
    background-color: #FFCC00;
    border-radius: 50%;
    margin-left: 16px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin: 12px 0 24px;
}

.contact-title-blue {
    color: #0000FF;
}

.contact-title-yellow {
    color: #FFCC00;
}

/* Contact Cards */
.contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #FFCC00;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-card-inner {
    padding: 24px;
}

.contact-card-address {
    background-color: #FFFBEB; /* light yellow */
    height: 100%;
}

.contact-card-phone {
    background-color: #FFFBEB; /* light yellow */
    height: 100%;
}

.contact-card-email {
    background-color: #FFFBEB; /* light yellow */
    height: 100%;
}

.contact-card-hours {
    background-color: #FFFBEB; /* light yellow */
    height: 100%;
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.contact-card-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: #FFCC00;
}

.contact-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    color: #0000FF;
    margin: 0;
}

.contact-card-content {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4b5563; /* gray-700 */
    margin-left: 40px;
}

.contact-card-content p {
    margin: 0 0 8px;
}

.contact-card-content p:last-child {
    margin-bottom: 0;
}

/* Right Column - Contact Form */
.contact-form-column {
    flex: 0 0 calc(50% - 32px);
    max-width: 576px;
    background-color: #FFCC00;
    border-radius: 8px;
    padding: 32px;
}

.contact-form-header {
    margin-bottom: 24px;
    text-align: left;
}

.contact-form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin: 0 0 8px;
}

.contact-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.contact-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-form-group {
    flex: 1;
    margin-bottom: 24px;
}

.contact-form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-bottom: 8px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #333;
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #a9a9a9;
}

.contact-form-select {
    background-color: #efefef;
    border: 2px solid #d1d5db; /* gray-300 */
    height: 50px;
}

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

.contact-form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-button:hover {
    opacity: 0.9;
}

.contact-form-button-icon {
    margin-right: 12px;
}

/* Responsive Styles */
/* Action Buttons */
.contact-action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.contact-action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button {
    background-color: #FFCC00;
    color: #000000;
}

.email-button {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFCC00;
}

.contact-action-button i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .contact-section-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-column,
    .contact-form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-title {
        font-size: 24px;
        line-height: 30px;
    }
}
