/* Pages CSS - Styles for auxiliary pages */

/* Page Header */
.page-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #ff6b35;
    color: white;
}

.nav-phone {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background-color: #219a52;
    transform: translateY(-2px);
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.page-section.alt-bg {
    background-color: #f8f9fa;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 20px;
    margin-top: 30px;
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 25px;
    padding-left: 0;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.policy-content li::before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-subsection {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-section.alt-bg .policy-subsection {
    background-color: #fff;
}

/* About Page Specific Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-content {
    text-align: center;
}

.mission-text {
    margin-bottom: 50px;
}

.mission-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-photo .image-placeholder {
    height: 280px;
    border-radius: 12px 12px 0 0;
}

.member-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.team-member:hover .member-img {
    transform: scale(1.02);
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement {
    background-color: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.achievement-text {
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

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

.reason p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.right-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.right-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.right-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Third Party List */
.third-party-list {
    margin-top: 30px;
}

.third-party-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.third-party-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.third-party-item p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.third-party-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.third-party-item a:hover {
    text-decoration: underline;
}

/* Footer Updates */
.footer-links {
    text-align: left;
}

.footer-links h4 {
    color: #bdc3c7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-grid a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-grid a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-nav {
        gap: 15px;
    }
    
    .nav-phone {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-title p {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content h2 {
        font-size: 1.8rem;
    }
    
    .policy-subsection {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-grid {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title {
        padding: 60px 0;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.6rem;
    }
    
    .policy-subsection {
        padding: 15px;
    }
}