/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2d4a3d 0%, #8bc34a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2560&q=80') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 0;
    background: #f8fdf9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(139, 195, 74, 0.1);
}

.company-info {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(139, 195, 74, 0.2);
}

.company-info h2 {
    color: #2d4a3d;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.company-details {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 195, 74, 0.05);
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(135deg, #8bc34a, #2d4a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: #2d4a3d;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text a {
    color: #8bc34a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #2d4a3d;
}

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

/* Social Section */
.social-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(139, 195, 74, 0.2);
}

.social-section h3 {
    color: #2d4a3d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border: 2px solid #8bc34a;
    border-radius: 25px;
    text-decoration: none;
    color: #8bc34a;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 8px;
}

.social-link:hover {
    background: #8bc34a;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

/* Certification */
.certification {
    text-align: center;
}

.isa-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.isa-logo:hover {
    opacity: 1;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(139, 195, 74, 0.1);
}

.form-container {
    padding: 40px;
}

.form-container h2 {
    color: #2d4a3d;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

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

.form-group label {
    color: #2d4a3d;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8bc34a;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #8bc34a;
}

.checkbox-label a {
    color: #8bc34a;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: #2d4a3d;
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #8bc34a, #2d4a3d);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(139, 195, 74, 0.1);
    color: #2d4a3d;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Map Section */
.contact-map {
    background: #f0f0f0;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-info-section,
    .form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-info-section,
    .form-container {
        padding: 20px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        flex: 0 0 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
} 