/* ===================================
   Pages Specific Styles
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(45, 106, 79, 0.75) 100%);
    z-index: 1;
}

/* Specific hero backgrounds */
.page-hero.about-hero {
    background-image: url('../images/about-hero.jpg');
}

.page-hero.projects-hero {
    background-image: url('../images/hero-main.jpg');
}

.page-hero-message {
    background-image: url('../images/president-hero.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero.contact-hero {
    background-image: url('../images/contact-hero.jpg');
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Page Styles
   =================================== */

/* Mission Section */
.mission-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

/* About page without hero */
.about-page-no-hero .mission-section {
    padding-top: 120px;
}

/* President Video Section */
.president-video-section {
    position: relative;
    width: 100%;
    padding-top: 80px;
    background: #000;
}

.president-video {
    width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    background: #000;
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    pointer-events: none;
}

.video-title-overlay h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.video-title-overlay p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .president-video {
        max-height: 60vh;
    }
    
    .video-title-overlay h1 {
        font-size: 2rem;
    }
    
    .video-title-overlay p {
        font-size: 1.125rem;
    }
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content .lead-text {
    font-size: 1.375rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-visual-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-visual-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mission-visual-image:hover img {
    transform: scale(1.05);
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-white);
    text-align: center;
}

.visual-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.visual-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Approach Section */
.approach-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: var(--font-heading);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Full Width Image */
.full-width-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Values Section */
.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.value-item:hover {
    transform: scale(1.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.activities-list {
    max-width: 900px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.activity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.activity-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Vision Statement */
.vision-statement {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.5rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ===================================
   Projects Page Styles
   =================================== */

.project-detail-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.project-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.project-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-tagline-tr {
    font-size: 1.25rem;
    color: var(--text-light);
    font-style: italic;
}

/* Project Mission */
.project-mission {
    padding: var(--spacing-lg) 0;
}

.project-mission .mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-mission .mission-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.project-mission .mission-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-visual-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.mission-visual-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mission-visual-image:hover img {
    transform: scale(1.05);
}

.stats-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
}

/* Project Approach */
.project-approach {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
    border-radius: 20px;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
}

.project-approach h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.approach-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Project Pillars */
.project-pillars {
    padding: var(--spacing-lg) 0;
}

.project-pillars h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.pillars-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pillar-box {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.5;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.pillar-box h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-box > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pillar-points {
    list-style: none;
}

.pillar-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pillar-points i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Technology Section */
.tech-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.tech-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.05);
}

.tech-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.tech-card:hover i {
    color: var(--secondary-color);
}

.tech-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tech-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Project Gallery */
.project-gallery {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.project-gallery h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Social Section */
.social-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.social-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.social-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-list {
    list-style: none;
}

.social-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.social-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 3px;
}

.social-list span {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.social-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-visual-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.social-visual-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.social-visual-image:hover img {
    transform: scale(1.05);
}

.impact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: var(--text-light);
}

/* SDG Section */
.sdg-section {
    padding: var(--spacing-lg) 0;
}

.sdg-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.sdg-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.sdg-item {
    text-align: center;
}

.sdg-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
}

.sdg-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Upcoming Projects */
.upcoming-projects {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.upcoming-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.upcoming-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.upcoming-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===================================
   President Message Page
   =================================== */

.message-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.quote-decoration {
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.message-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* President Profile */
.president-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.president-photo {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.president-photo:hover img {
    filter: grayscale(0%);
}

.president-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.president-titles p {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.president-titles i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .president-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .president-photo {
        margin: 0 auto;
    }
    
    .president-titles p {
        justify-content: center;
    }
}

.message-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.message-paragraph {
    margin-bottom: 3rem;
}

.message-visual {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: 3rem 0;
}

.message-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.message-paragraph h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-paragraph h3 i {
    color: var(--primary-color);
}

.message-paragraph p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.7;
}

.highlight-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.key-points {
    list-style: none;
    margin-top: 1.5rem;
}

.key-points li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
}

.key-points i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.key-points span {
    font-size: 1.125rem;
    line-height: 1.7;
}

.emphasis-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-white);
    margin: 2rem 0;
}

.emphasis-text p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vision-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 3rem;
    border-radius: 20px;
    color: var(--text-white);
}

.vision-box h3 {
    color: var(--secondary-color);
}

.vision-box p {
    color: rgba(255, 255, 255, 0.95);
}

.work-principles {
    display: grid;
    gap: 2rem;
}

.principle-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.principle-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.impact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.call-to-action-box {
    background: linear-gradient(135deg, var(--accent-color), #e76f51);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-signature {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-top: 2rem;
}

.message-closing {
    text-align: center;
    margin-top: 4rem;
}

.message-banner {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.message-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.closing-line {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    margin: 2rem auto;
}

.closing-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
}

.commitments-section {
    margin-top: var(--spacing-xl);
}

.commitments-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
}

.commitment-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info,
.social-connect,
.office-hours {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3,
.social-connect h3,
.office-hours h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: var(--text-light);
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-connect p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-buttons {
    display: grid;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateX(5px);
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
}

.hours-item.weekend {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--primary-color);
    font-weight: 500;
}

/* Join Section */
.join-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.join-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.join-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
}

.join-card h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.join-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.join-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.join-link:hover {
    gap: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Responsive Adjustments
   =================================== */

@media (max-width: 968px) {
    .mission-grid,
    .project-grid,
    .social-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .message-title {
        font-size: 2rem;
    }
    
    .mission-visual-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .approach-grid,
    .values-grid,
    .pillars-grid-alt,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .sdg-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}