/* Contact Section - Mobile Responsive Design - NO CROPPING */
.contact-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Simple Header */
.simple-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.simple-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    max-width: 100%;
}

.simple-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
    max-width: 80%;
}

.contact-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 1rem;
    word-wrap: break-word;
}

/* Contact Introduction */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

.contact-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-light);
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Contact Information */
.contact-info {
    width: 100%;
    max-width: 100%;
}

.company-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.company-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.company-header h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-dark);
    font-weight: 700;
    word-wrap: break-word;
    flex: 1;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-item.clickable {
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-item.clickable:hover {
    background: #f8fafc;
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fef7ed, #fed7aa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.contact-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    word-wrap: break-word;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.click-indicator {
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item.clickable:hover .click-indicator {
    opacity: 1;
}

.click-indicator i {
    color: var(--primary-orange);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 48px;
    box-sizing: border-box;
    text-align: center;
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form - FIXED FOR MOBILE */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.form-header h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.form-header p {
    color: var(--text-light);
    word-wrap: break-word;
}

/* Form Styles - MOBILE OPTIMIZED */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    word-wrap: break-word;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
    max-width: 100%;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 56px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}


/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f7fafc;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.map-container {
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}
.map-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-top: 1rem;
    word-wrap: break-word;
}
.map-content {
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}
.map-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Increased map area from 2fr to 3fr */
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}
.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    height: 500px; /* Added fixed height - increased from default */
}
.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.map-info {
    width: 100%;
    max-width: 100%;
}
.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
}
.location-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}
.location-header h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-dark);
    word-wrap: break-word;
    flex: 1;
}
.location-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    word-wrap: break-word;
}
.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    word-wrap: break-word;
    width: 100%;
    max-width: 100%;
}
.feature-item i {
    color: var(--primary-blue);
    width: 20px;
    flex-shrink: 0;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section,
    .map-section {
        padding: 40px 0;
    }
    
    .contact-container,
    .map-container {
        padding: 0 12px;
    }
    
    .contact-form-wrapper,
    .company-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-description {
        padding: 1.25rem 1.5rem;
    }
    
    .contact-intro {
        margin-bottom: 2rem;
    }
    
    .company-header {
        gap: 0.8rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .company-icon {
        width: 50px;
        height: 50px;
    }
    
    .company-icon i {
        font-size: 1.5rem;
    }
    
    .contact-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section,
    .map-section {
        padding: 30px 0;
    }
    
    .contact-container,
    .map-container {
        padding: 0 10px;
    }
    
    .contact-form-wrapper,
    .company-card,
    .location-card {
        padding: 1.5rem;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-description {
        padding: 1rem 1.25rem;
        margin: 0 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem 0.8rem;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .action-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .simple-title::after {
        width: 60px;
        height: 3px;
    }
    
    .location-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .contact-container,
    .map-container {
        padding: 0 8px;
    }
    
    .contact-form-wrapper,
    .company-card,
    .location-card {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .contact-description {
        padding: 0.8rem 1rem;
        margin: 0 2px;
    }
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}