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

.contact-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.contact-subtitle-text {
    font-size: 1.3rem;
    color: #5A6B5A;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #F8FAF8;
    padding: 32px 24px;
    border-radius: 20px;
    border: 2px solid #E8F5E8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5A8A5A, #7BA428);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(90, 138, 90, 0.15);
    border-color: #5A8A5A;
    background: #ffffff;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8F5E8, #ffffff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 24px;
    color: #5A8A5A;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    transform: scale(1.1);
}

.contact-info-card:hover .contact-info-icon i {
    color: #ffffff;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D4A2D;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.contact-info-details {
    font-size: 0.95rem;
    color: #5A6B5A;
    margin: 0;
    line-height: 1.5;
}

.contact-map-container {
    background: #F8FAF8;
    border-radius: 20px;
    padding: 24px;
    border: 2px solid #E8F5E8;
}

.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 15px;
}

.contact-form-column {
    background: linear-gradient(135deg, #F8FAF8 0%, #F0F8F0 100%);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid #E8F5E8;
}

.contact-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: #5A6B5A;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

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

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

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

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2D4A2D;
    margin: 0;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid #E8F5E8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #5A8A5A;
    box-shadow: 0 0 0 3px rgba(90, 138, 90, 0.1);
}

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

.form-checkbox-group {
    margin-top: 8px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox {
    display: none;
}

.form-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #E8F5E8;
    border-radius: 4px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox:checked + .form-checkbox-custom {
    background: #5A8A5A;
    border-color: #5A8A5A;
}

.form-checkbox:checked + .form-checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-checkbox-text {
    color: #5A6B5A;
}

.privacy-link {
    color: #5A8A5A;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #2D4A2D;
}

.form-submit-btn {
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 138, 90, 0.3);
    background: linear-gradient(135deg, #4A7A4A, #6B9428);
}

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

@media (max-width: 1200px) {
    .contact-section-container {
        padding: 0 30px;
    }
    
    .contact-content-grid {
        gap: 60px;
    }
    
    .contact-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-main-section {
        padding: 100px 0;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-main-title {
        font-size: 2.8rem;
    }
    
    .contact-section-header {
        margin-bottom: 60px;
    }
    
    .contact-form-column {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 80px 0;
    }
    
    .contact-section-container {
        padding: 0 24px;
    }
    
    .contact-main-title {
        font-size: 2.4rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-column {
        gap: 32px;
    }
    
    .contact-map-wrapper {
        height: 300px;
    }
    
    .contact-form-column {
        padding: 24px;
        border-radius: 20px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-map-wrapper {
        height: 250px;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .form-submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media print {
    .contact-main-section {
        padding: 40px 0 !important;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-map-container,
    .contact-form-column {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}