/* Info Pages Shared Styles */
.info-main {
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 20) 0;
}

.page-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 16);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 20);
}

.about-intro {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 12);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 12);
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--text-color);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--text-color);
    opacity: 0.8;
}

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

.about-showcase-img {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.placeholder-image,
.member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 200px;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.values-section h2,
.team-section h2,
.stats-section h2,
.mission-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 12);
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 8);
}

.value-card {
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 8);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--text-color);
}

.value-card p {
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 8);
}

.team-member {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 8);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-color);
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.member-bio {
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 8);
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 12);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
}

.mission-section {
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 12);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 12);
    color: var(--text-color);
    font-weight: 500;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 8);
    text-align: left;
}

.point {
    padding: calc(var(--spacing-unit) * 6);
    background: var(--background-color);
    border-radius: calc(var(--border-radius) * 0.7);
    line-height: 1.5;
}

.point strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d1154a 100%);
    color: white;
    padding: calc(var(--spacing-unit) * 16);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(235, 26, 78, 0.3);
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 8);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 4);
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--background-color);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 20);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 12);
}

.contact-info,
.contact-form-section {
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 10);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--text-color);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 8);
    color: var(--text-color);
    opacity: 0.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 4);
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.method-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-color);
}

.method-info p {
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--primary-color);
}

.response-time {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.6;
}

.business-hours {
    padding-top: calc(var(--spacing-unit) * 8);
    border-top: 2px solid var(--background-color);
}

.business-hours h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--text-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.hours-item span:first-child {
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form {
    position: relative;
}

.form-description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: calc(var(--spacing-unit) * 8);
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 4);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 4);
    border: 2px solid var(--secondary-color);
    border-radius: calc(var(--border-radius) * 0.6);
    font-family: var(--font-family);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(235, 26, 78, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: calc(var(--spacing-unit) * 2);
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 3);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: calc(var(--spacing-unit) * 5);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: calc(var(--spacing-unit) * 4);
}

.submit-btn:hover:not(:disabled) {
    background: #d1154a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 26, 78, 0.3);
}

.submit-btn:disabled {
    background: var(--secondary-color);
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
}

.btn-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* FAQ Section */
.faq-section {
    margin-top: calc(var(--spacing-unit) * 20);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 12);
    color: var(--text-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 8);
}

.faq-item {
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 8);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--text-color);
    line-height: 1.3;
}

.faq-item p {
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 8);
    }
    
    .contact-form-section {
        order: -1;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: calc(var(--spacing-unit) * 8);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-text h2,
    .values-section h2,
    .team-section h2,
    .stats-section h2,
    .mission-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .info-main {
        padding: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 16) 0;
    }
    
    .about-intro,
    .contact-info,
    .contact-form-section,
    .mission-section {
        padding: calc(var(--spacing-unit) * 6);
    }
    
    .value-card,
    .team-member,
    .faq-item {
        padding: calc(var(--spacing-unit) * 6);
    }
    
    .stats-grid {
        padding: calc(var(--spacing-unit) * 6);
    }
    
    .cta-section {
        padding: calc(var(--spacing-unit) * 12);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
}