/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #fff3e8 0%, #ffe5cc 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.contact-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #6b7280;
    line-height: 1.6;
    padding: 0 20px;
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-cta .btn {
    min-width: 160px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-cta .btn.primary {
    background: #ff7a00;
    color: white;
}

.contact-cta .btn.secondary {
    background: white;
    color: #111827;
    border: 2px solid #ff7a00;
}

.contact-cta .btn.secondary:hover {
    background: #ff7a00;
    color: white;
}

/* Contact Main Section */
.contact-main {
    padding: 60px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    margin-bottom: 15px;
    color: #111827;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-section h2::after,
.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ff7a00;
    border-radius: 2px;
}

.contact-description,
.form-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #ffedd5;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    background: #fff3e8;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
}

.method-content p {
    font-size: 1rem;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 5px;
}

.method-content small {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Contact Social */
.contact-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111827;
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
}

.contact-social .social-icon {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-social .social-icon:hover {
    background: #ff7a00;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #ffedd5;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-footer {
    margin-top: 30px;
}

.form-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.5;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    margin-bottom: 15px;
    color: #111827;
}

.faq-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ffedd5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
    line-height: 1.4;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .contact-cta {
        gap: 15px;
    }
    
    .contact-cta .btn {
        min-width: 140px;
        padding: 12px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0 30px;
        border-radius: 0 0 25px 25px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-social .social-icons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* Active Navigation Link */
.nav-links a.active {
    color: #ff7a00;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff7a00;
    border-radius: 2px;
}