/* Contact Page - Modern, Full-Width Design */

/* Contact Wrapper - Full Width */
.contact-wrapper {
    width: 100%;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}



.contact-hero-content {
    text-align: left;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Main Content */
.contact-main-content {
    width: 100%;
    padding: 0;
    max-width: none;
    box-sizing: border-box;
}

/* Contact Sections */
.contact-section {
    padding: 4rem 2rem;
    background: white;
    margin-bottom: 0;
}

.contact-section:nth-child(even) {
    background: #f8fafc;
}

.contact-section-faq {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.contact-section-cta {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
}

/* Section Content */
.contact-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-section-header h2 i {
    color: #00b590;
}

.contact-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section-cta .contact-section-header h2,
.contact-section-cta .contact-section-subtitle {
    color: white;
}

.contact-section-cta .contact-section-header h2 i {
    color: white;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info-header h2 i {
    color: #00b590;
}

.contact-info-header p {
    color: #6c757d;
    margin: 0;
}

.contact-info-items {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-info-content a {
    color: #00b590;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-social {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.contact-social h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 181, 144, 0.3);
    color: white;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form-header h2 i {
    color: #00b590;
}

.contact-form-header p {
    color: #6c757d;
    margin: 0;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b590;
    box-shadow: 0 0 0 3px rgba(0, 181, 144, 0.1);
}

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

.form-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-help {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
    font-style: italic;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.faq-content h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faq-btn {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

.faq-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.faq-social-link {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-width: 220px;
}

/* Buttons */
.contact-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
}

.contact-btn-primary {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
}

.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

.contact-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.contact-btn-outline:hover {
    background: white;
    color: #00b590;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 0;
    }
    
    .contact-hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 2rem 0.5rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 2rem 0.5rem;
    }
    
    .contact-section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
}
