/* ILUKOR Support Foundation (ISF) Page Styles */

/* Variables */
:root {
    --isf-primary: #ff7e2e; /* Warm orange */
    --isf-secondary: #7a4bbc; /* Rich purple */
    --isf-text: #333333;
    --isf-light: #fff9f5; /* Light warm background */
    --isf-dark: #472e6c; /* Dark purple for contrast */
    --isf-accent: #ffcc4d; /* Bright accent */
    --isf-success: #74c365; /* Success green */
}

/* Base Page Styles */
body {
    color: var(--isf-text);
    background-color: #ffffff;
}

/* Hero Section */
.isf-hero {
    background: linear-gradient(rgba(122, 75, 188, 0.8), rgba(255, 126, 46, 0.8)), url('../images/isf-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
}

.isf-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('../images/wave-divider.svg') no-repeat;
    background-size: cover;
}

.isf-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.isf-hero .tagline {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--isf-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 126, 46, 0.4);
}

.btn-primary:hover {
    background-color: #ff6a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 126, 46, 0.5);
}

.btn-secondary {
    background-color: var(--isf-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(122, 75, 188, 0.4);
}

.btn-secondary:hover {
    background-color: #6a3eaa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 75, 188, 0.5);
}

.btn-tertiary {
    background-color: var(--isf-dark);
    color: white;
    box-shadow: 0 4px 15px rgba(71, 46, 108, 0.4);
}

.btn-tertiary:hover {
    background-color: #3a2459;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--isf-secondary);
    border: 2px solid var(--isf-secondary);
}

.btn-outline:hover {
    background-color: var(--isf-secondary);
    color: white;
    transform: translateY(-3px);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--isf-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.separator {
    height: 4px;
    width: 80px;
    background: var(--isf-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--isf-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

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

.mission-text {
    flex: 1;
}

.mission-text h3 {
    color: var(--isf-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-text p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #555;
}

/* Approach Section Styles */
.approach-section {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--isf-light);
    border-radius: 15px;
    border-left: 5px solid var(--isf-primary);
}

.approach-section h4 {
    color: var(--isf-secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-point {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
}

.approach-point::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--isf-success);
    font-size: 1.2rem;
    font-weight: bold;
}

.approach-point:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.approach-point strong {
    color: var(--isf-secondary);
    font-weight: 600;
}

/* CEO Leadership Section */
.ceo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5ff 0%, var(--isf-light) 100%);
    position: relative;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/leadership-pattern.svg') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.ceo-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ceo-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--isf-primary) 0%, var(--isf-secondary) 50%, var(--isf-success) 100%);
}

.ceo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ceo-info {
    flex: 1;
    padding-right: 20px;
}

.ceo-info h3 {
    color: var(--isf-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
}

.ceo-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--isf-primary);
    border-radius: 2px;
}

.ceo-title {
    color: var(--isf-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-description {
    color: var(--isf-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.ceo-social {
    flex: 1;
    padding-left: 20px;
    border-left: 2px solid var(--isf-light);
}

.ceo-social h4 {
    color: var(--isf-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--isf-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-links a i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-links a span {
    font-weight: 600;
    color: var(--isf-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* TikTok specific styling */
.social-links a[href*="tiktok"] {
    border-color: #ff0050;
}

.social-links a[href*="tiktok"]:hover {
    background: #ff0050;
    border-color: #ff0050;
}

.social-links a[href*="tiktok"] i {
    color: #ff0050;
}

.social-links a[href*="tiktok"]:hover i,
.social-links a[href*="tiktok"]:hover span {
    color: white;
}

/* X/Twitter specific styling */
.social-links a[href*="x.com"] {
    border-color: #1da1f2;
}

.social-links a[href*="x.com"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-links a[href*="x.com"] i {
    color: #1da1f2;
}

.social-links a[href*="x.com"]:hover i,
.social-links a[href*="x.com"]:hover span {
    color: white;
}

/* Facebook specific styling */
.social-links a[href*="facebook"] {
    border-color: #4267b2;
}

.social-links a[href*="facebook"]:hover {
    background: #4267b2;
    border-color: #4267b2;
}

.social-links a[href*="facebook"] i {
    color: #4267b2;
}

.social-links a[href*="facebook"]:hover i,
.social-links a[href*="facebook"]:hover span {
    color: white;
}

/* Focus Areas Section */
.focus-areas {
    padding: 100px 0;
    background-color: var(--isf-light);
    position: relative;
}

.focus-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url('../images/curve-top.svg') no-repeat;
    background-size: cover;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.focus-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--isf-primary);
    z-index: 1;
}

.focus-card[data-area="health"]::before {
    background: #50c878;
}

.focus-card[data-area="education"]::before {
    background: #4a90e2;
}

.focus-card[data-area="social-welfare"]::before {
    background: var(--isf-secondary);
}

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

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(122, 75, 188, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.focus-card[data-area="health"] .focus-icon {
    background-color: rgba(80, 200, 120, 0.1);
}

.focus-card[data-area="education"] .focus-icon {
    background-color: rgba(74, 144, 226, 0.1);
}

.focus-card[data-area="social-welfare"] .focus-icon {
    background-color: rgba(122, 75, 188, 0.1);
}

.focus-card:hover .focus-icon {
    transform: scale(1.1);
}

.focus-icon i {
    font-size: 2.5rem;
    color: var(--isf-secondary);
}

.focus-card[data-area="health"] .focus-icon i {
    color: #50c878;
}

.focus-card[data-area="education"] .focus-icon i {
    color: #4a90e2;
}

.focus-card[data-area="social-welfare"] .focus-icon i {
    color: var(--isf-secondary);
}

.focus-icon img {
    width: 40px;
    height: 40px;
    display: none; /* Hide image icons since we're using Font Awesome */
}

.focus-card h3 {
    text-align: center;
    color: var(--isf-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.focus-card p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.focus-details {
    border-top: 1px dashed #ddd;
    padding-top: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.focus-card:hover .focus-details {
    max-height: 300px;
    opacity: 1;
}

.focus-details h4 {
    color: var(--isf-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.focus-details ul {
    list-style-type: none;
    padding: 0;
}

.focus-details li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.focus-details li:last-child {
    border-bottom: none;
}

/* Impact Approach Section (formerly Success Stories) */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--isf-secondary) 0%, var(--isf-dark) 100%);
    color: white;
    position: relative;
}

.success-stories .section-header h2,
.success-stories .section-header p {
    color: white;
}

.success-stories .separator {
    background: var(--isf-accent);
}

.impact-approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.approach-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.approach-item .approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.approach-item .approach-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.approach-item p {
    line-height: 1.6;
    opacity: 0.9;
}

.impact-statement {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.impact-statement h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--isf-accent);
}

.impact-statement p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.impact-statement p:last-child {
    margin-bottom: 0;
}

/* Legacy carousel styles - now active for success stories */
.stories-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: block; /* Show carousel for success stories */
}

.story-slide {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.story-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.story-image {
    flex: 1;
    max-width: 50%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.story-location {
    color: var(--isf-accent);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-result {
    font-weight: 600;
    border-left: 3px solid var(--isf-primary);
    padding-left: 15px;
    margin-top: 20px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-story,
.next-story {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.prev-story:hover,
.next-story:hover {
    background: white;
    color: var(--isf-secondary);
}

.story-indicators {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Get Involved Section */
.get-involved {
    padding: 100px 0;
    background-color: white;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.involvement-card {
    background-color: var(--isf-light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.involvement-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.involvement-icon i {
    font-size: 2.5rem;
    color: var(--isf-primary);
}

.involvement-card#donate .involvement-icon i {
    color: #e74c3c;
}

.involvement-card#volunteer .involvement-icon i {
    color: var(--isf-secondary);
}

.involvement-card:last-child .involvement-icon i {
    color: var(--isf-success);
}

.involvement-icon img {
    width: 50px;
    height: 50px;
    display: none; /* Hide image icons since we're using Font Awesome */
}

.involvement-card h3 {
    color: var(--isf-dark);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.involvement-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Donation Options */
.donation-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.donation-amount {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 10px 15px;
    font-weight: 600;
    color: var(--isf-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount:hover, 
.donation-amount.active {
    border-color: var(--isf-primary);
    color: var(--isf-primary);
}

.custom-amount-input {
    margin: 15px 0 25px;
    display: none;
}

.custom-amount-input.show {
    display: block;
}

.custom-amount-input input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

/* Volunteer & Partner Lists */
.volunteer-opportunities,
.partnership-types {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.volunteer-opportunities li,
.partnership-types li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 25px;
}

.volunteer-opportunities li:before,
.partnership-types li:before {
    content: '✓';
    color: var(--isf-success);
    position: absolute;
    left: 0;
}

.volunteer-opportunities li:last-child,
.partnership-types li:last-child {
    border-bottom: none;
}

/* Annual Report Section */
.annual-report {
    padding: 80px 0;
    background-color: var(--isf-dark);
    color: white;
}

.report-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.report-text {
    flex: 1;
}

.report-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.report-text p {
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.report-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.report-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-content,
    .report-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .mission-image,
    .mission-text,
    .report-text,
    .report-image {
        flex: none;
        width: 100%;
    }
    
    .impact-stats {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .impact-stat .count {
        font-size: 3rem;
    }
    
    .impact-counter {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .impact-stat::before {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .approach-section {
        padding: 25px;
    }
    
    .approach-points {
        gap: 15px;
    }
    
    .involvement-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .involvement-card {
        padding: 30px 20px;
        min-height: 350px;
    }
    
    .story-slide {
        flex-direction: column;
        height: auto;
    }
    
    .story-image {
        max-width: 100%;
        height: 250px;
    }
    
    .stories-carousel {
        height: auto;
        min-height: 600px;
    }
    
    .impact-statement {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .isf-hero {
        padding: 100px 0 80px;
    }
    
    .isf-hero .page-title {
        font-size: 2.5rem;
    }
    
    .isf-hero .tagline {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .impact-stats .impact-stat:not(:last-child)::after {
        display: none;
    }
    
    .impact-stats .impact-stat {
        padding: 20px 0;
        border-bottom: 1px solid rgba(122, 75, 188, 0.1);
    }
    
    .impact-stats .impact-stat:last-child {
        border-bottom: none;
    }
    
    .impact-stats .impact-stat .count {
        font-size: 2.8rem;
    }
    
    .impact-counter {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .impact-stat:not(:last-child)::after {
        display: none;
    }
    
    .impact-stat {
        padding: 20px 0;
        border-bottom: 1px solid rgba(122, 75, 188, 0.1);
    }
    
    .impact-stat:last-child {
        border-bottom: none;
    }
    
    .impact-stat .count {
        font-size: 2.8rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .approach-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .approach-point {
        padding: 15px;
        padding-left: 40px;
    }
    
    .approach-point::before {
        left: 15px;
        font-size: 1rem;
    }
    
    .involvement-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .involvement-card {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .impact-statement {
        padding: 30px 20px;
    }
    
    .impact-statement h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .impact-stats .impact-stat .count {
        font-size: 2.5rem;
    }
    
    .impact-stats .impact-stat .label {
        font-size: 1rem;
    }
    
    .impact-counter {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .impact-stat .count {
        font-size: 2.5rem;
    }
    
    .impact-stat .label {
        font-size: 1rem;
    }
    
    .impact-stat::before {
        width: 35px;
        height: 35px;
    }
    
    .involvement-card {
        padding: 25px 20px;
    }
    
    .involvement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .involvement-icon i {
        font-size: 2rem;
    }
    
    .involvement-card h3 {
        font-size: 1.4rem;
    }
}

/* Impact Statistics Styles */
.impact-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--isf-light) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--isf-primary) 0%, var(--isf-secondary) 50%, var(--isf-success) 100%);
}

.impact-stat {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(122, 75, 188, 0.3), transparent);
}

.impact-stat .count {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--isf-primary);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 126, 46, 0.2);
    position: relative;
    animation: countUp 2s ease-out;
}

.impact-stat:nth-child(1) .count {
    color: var(--isf-primary);
}

.impact-stat:nth-child(2) .count {
    color: var(--isf-secondary);
}

.impact-stat:nth-child(3) .count {
    color: var(--isf-success);
}

.impact-stat .count::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.6;
}

.impact-stat .label {
    font-size: 1.1rem;
    color: var(--isf-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Impact Counter Styles */
.impact-counter {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--isf-light) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.impact-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--isf-primary) 0%, var(--isf-secondary) 50%, var(--isf-success) 100%);
}

.impact-stat {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(122, 75, 188, 0.3), transparent);
}

.impact-stat .count {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--isf-primary);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 126, 46, 0.2);
    position: relative;
    animation: countUp 2s ease-out;
}

.impact-stat:nth-child(1) .count {
    color: var(--isf-primary);
}

.impact-stat:nth-child(2) .count {
    color: var(--isf-secondary);
}

.impact-stat:nth-child(3) .count {
    color: var(--isf-success);
}

.impact-stat .count::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.6;
}

.impact-stat .label {
    font-size: 1.1rem;
    color: var(--isf-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Add icons to impact stats */
.impact-stat::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.impact-stat:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.impact-stat:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff7e2e' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2ZM21 9V7L15 7.5V9M15 11.5V9.5L21 9V11L15 11.5ZM11 14V12H13V14H11ZM7 14V12H9V14H7ZM15 16V14H17V16H15ZM11 18V16H13V18H11ZM7 18V16H9V18H7ZM15 20V18H17V20H15ZM11 22V20H13V22H11ZM7 22V20H9V22H7Z'/%3E%3C/svg%3E");
}

.impact-stat:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237a4bbc' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12,6A6,6 0 0,0 6,12A6,6 0 0,0 12,18A6,6 0 0,0 18,12A6,6 0 0,0 12,6M12,8A4,4 0 0,1 16,12A4,4 0 0,1 12,16A4,4 0 0,1 8,12A4,4 0 0,1 12,8Z'/%3E%3C/svg%3E");
}

.impact-stat:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2374c365' viewBox='0 0 24 24'%3E%3Cpath d='M19,3H5C3.9,3 3,3.9 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.9 20.1,3 19,3M19,19H5V5H19V19ZM17,12H15V17H13V12H11V10H13V8H15V10H17V12Z'/%3E%3C/svg%3E");
}

/* Animation for counting up */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse animation for emphasis */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.impact-stat:hover .count {
    animation: pulse 1s ease-in-out;
}

/* Transparency & Accountability Section */
.transparency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--isf-light) 0%, #f8f5ff 100%);
    position: relative;
}

.transparency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/transparency-pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.transparency-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.transparency-text {
    flex: 1;
    padding-right: 40px;
}

.transparency-text h2 {
    color: var(--isf-dark);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.transparency-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--isf-primary), var(--isf-secondary));
    border-radius: 2px;
}

.transparency-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--isf-text);
    margin-bottom: 40px;
    opacity: 0.9;
}

.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.transparency-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(122, 75, 188, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--isf-primary);
}

.transparency-features .feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(122, 75, 188, 0.15);
    border-left-color: var(--isf-secondary);
}

.transparency-features .feature i {
    font-size: 1.5rem;
    color: var(--isf-secondary);
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.transparency-features .feature:hover i {
    color: var(--isf-primary);
    transform: scale(1.1);
}

.transparency-features .feature span {
    font-weight: 600;
    color: var(--isf-dark);
    font-size: 1.1rem;
}

.transparency-image {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.transparency-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--isf-primary), var(--isf-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.transparency-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--isf-secondary), var(--isf-dark));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite reverse;
}

.transparency-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.transparency-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.transparency-image .report-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--isf-success), #5cb85c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(116, 195, 101, 0.4);
    animation: pulse 2s infinite;
}

.transparency-image .report-badge::before {
    content: '📊';
    margin-right: 8px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design for Transparency Section */
@media (max-width: 992px) {
    .transparency-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .transparency-text {
        padding-right: 0;
    }
    
    .transparency-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .transparency-image {
        padding-left: 0;
    }
    
    .transparency-features {
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .transparency-section {
        padding: 80px 0;
    }
    
    .transparency-text h2 {
        font-size: 2.2rem;
    }
    
    .transparency-text p {
        font-size: 1.1rem;
    }
    
    .transparency-features .feature {
        padding: 12px 16px;
    }
    
    .transparency-features .feature span {
        font-size: 1rem;
    }
    
    .transparency-image::before,
    .transparency-image::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .transparency-content {
        gap: 40px;
    }
    
    .transparency-text h2 {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .transparency-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .transparency-features {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .transparency-features .feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .transparency-features .feature i {
        font-size: 2rem;
    }
    
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
} 

/* Responsive Design for CEO Section */
@media (max-width: 992px) {
    .ceo-card {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    
    .ceo-info {
        padding-right: 0;
    }
    
    .ceo-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ceo-social {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--isf-light);
        padding-top: 30px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .social-links {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 60px 0;
    }
    
    .ceo-card {
        padding: 30px 25px;
        gap: 30px;
        margin: 0 15px;
    }
    
    .ceo-info h3 {
        font-size: 2rem;
    }
    
    .ceo-title {
        font-size: 1.1rem;
    }
    
    .ceo-description {
        font-size: 1rem;
    }
    
    .ceo-social h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .social-links a {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .social-links a i {
        font-size: 1.3rem;
        width: 25px;
    }
    
    .social-links a span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ceo-card {
        padding: 25px 20px;
        gap: 25px;
        margin: 0 10px;
    }
    
    .ceo-info h3 {
        font-size: 1.8rem;
    }
    
    .ceo-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .ceo-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .ceo-social {
        padding-top: 25px;
    }
    
    .ceo-social h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .social-links a i {
        font-size: 1.2rem;
        width: 22px;
    }
    
    .social-links a span {
        font-size: 0.9rem;
    }
} 