/* Contact Page Specific Styles */

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-container {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-header {
    background-color: #ff8800;
    color: white;
    padding: 30px;
}

.contact-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-header p {
    line-height: 1.6;
}

.contact-details {
    padding: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f8ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: #ff8800;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
}

.contact-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.map-placeholder {
    background-color: #eee;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Form Container */
.form-container {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

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

.required::after {
    content: '*';
    color: #ff8800;
    margin-left: 3px;
}

.submit-btn {
    background-color: #ff8800;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

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

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* Office Locations */
.office-locations {
    padding: 80px 0;
    background-color: #f0f8ee;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-img {
    height: 200px;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 20px;
}

.location-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.location-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-details {
    list-style: none;
    margin-bottom: 15px;
}

.location-details li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.location-details li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ff8800;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background-color: #ff8800;
}