/* ===================================
   ODONG Foundation - Main Stylesheet
   RiseHand Theme Inspired
   =================================== */

/* CSS Variables - RiseHand Color Scheme */
:root {
    /* Primary Colors - Orange theme from RiseHand */
    --primary-color: #f74f22;
    --primary-color-rgb: 247, 79, 34;
    --secondary-color: #ffac00;
    --secondary-color-rgb: 255, 172, 0;
    
    /* Dark colors */
    --dark-color: #1a1a1a;
    --dark-color-rgb: 26, 26, 26;
    --dark-light: #0c0c0c;
    
    /* Text colors */
    --heading-color: #232323;
    --content-color: #616161;
    --content-light: #a1a1a1;
    
    /* Background colors */
    --white: #ffffff;
    --light-bg: #f9f5f2;
    --light-bg-two: #eeeeee;
    
    /* Border colors */
    --border-color: #eeeeee;
    --border-dark: #313131;
    
    /* Menu colors */
    --menu-color: #232323;
    --menu-active: #f74f22;
    
    /* Shadows */
    --shadow: 0px 10px 50px 0px rgba(26, 26, 26, 0.1);
    --shadow-two: 5px 5px 20px 0px rgba(26, 26, 26, 0.1);
    --shadow-three: 0px 6px 30px 0px rgba(26, 26, 26, 0.07);
    --shadow-hover: 0px 10px 50px 0px rgba(247, 79, 34, 0.3);
    
    /* Typography - RiseHand fonts */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --font-accent: 'Kalam', cursive;
    
    --transition: all 0.3s linear;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body), 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--content-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    transition: 0.5s ease-in-out;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading), 'Quicksand', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--heading-color);
    transition: 0.5s ease-in-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons - RiseHand Style */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* Navigation - RiseHand Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-donate {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-donate:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
}

.btn-donate::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section - RiseHand Style */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* Fallback color */
    z-index: 1;
    /* Debug: Ensure background is visible */
    opacity: 1 !important;
    visibility: visible !important;
}



 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
     z-index: 2;
     /* Debug: Ensure overlay is visible */
     opacity: 1 !important;
     visibility: visible !important;
 }

 .hero-content {
     position: relative;
     z-index: 3;
     text-align: center;
     color: var(--white);
     max-width: 900px;
     margin: 0 auto;
     padding: 20px;
     /* Debug: Ensure content is visible */
     opacity: 1 !important;
     visibility: visible !important;
     display: block !important;
 }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 4;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* About Preview Section - RiseHand Style */
.about-preview {
    background: var(--white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}



.about-content h2 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.about-content h2::before {
    content: 'ABOUT US';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--content-color);
    line-height: 1.8;
}

/* Programs Section - RiseHand Style */
.programs {
    background: var(--light-bg);
    padding: 100px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}





 .program-card h3 {
     margin-bottom: 15px;
     font-size: 1.4rem;
 }

 .program-card p {
     margin-bottom: 20px;
     line-height: 1.7;
 }

/* Stats Section - RiseHand Style */


/* CTA Section - RiseHand Style */
.cta {
    background: var(--dark-light);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta p {
    color: var(--content-light);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - RiseHand Style */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 80px;
    margin-bottom: 25px;
    background: var(--white);
    padding: 10px;
    border-radius: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    color: var(--content-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--content-light);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--content-light);
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--content-light);
    margin: 0;
}

/* Page Header - RiseHand Style */
.page-header {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../img/bg/hero BG.png');
    background-size: cover;
    background-position: center;
    padding: 220px 0 140px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Program Detail Pages - RiseHand Style */
.program-detail {
    padding: 100px 0;
    background: var(--white);
}

.program-detail.alt {
    background: var(--light-bg);
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-detail-content .program-badge {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.program-detail-content:hover .program-badge {
    background: var(--secondary-color);
    transform: rotate(5deg);
}

.program-badge i {
    font-size: 2rem;
    color: var(--white);
}

.program-detail-content h2 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.program-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
}

.program-detail-content p {
    color: var(--content-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-features {
    margin: 30px 0;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--heading-color);
    font-weight: 500;
}

.program-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Program Partners Section */
.program-partners {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.program-partners h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--content-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.partner-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logos img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .partner-logos img {
        height: 35px;
    }
}

.program-cta {
    background: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dark-color);
}

.program-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.program-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* Mission & Vision - RiseHand Style */
.mission-vision {
    padding: 100px 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mv-card h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mv-card p {
    color: var(--content-color);
    line-height: 1.8;
    margin: 0;
}

/* About Content - RiseHand Style */
.about-content {
    background: var(--light-bg);
    padding: 100px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.about-text h2::before {
    content: 'OUR STORY';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.about-text h3 {
    margin-top: 35px;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.about-text p {
    color: var(--content-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-list {
    margin-top: 25px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--heading-color);
    font-weight: 500;
}

.values-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    background: rgba(247, 79, 34, 0.1);
    padding: 8px;
    border-radius: 5px;
}



/* Legal Info - RiseHand Style */
.legal-info {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
}

.legal-info h2 {
    margin-bottom: 50px;
    color: var(--heading-color);
    font-size: 2.5rem;
}

.legal-info h2::before {
    content: 'LEGAL INFO';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.legal-card {
    background: var(--light-bg);
    padding: 45px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.legal-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: rgba(247, 79, 34, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.legal-card h3 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.legal-card p {
    color: var(--content-color);
    line-height: 1.8;
    margin: 0;
}

/* Team Section - RiseHand Style */
.team {
    padding: 100px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-placeholder {
    width: 130px;
    height: 130px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.team-card:hover .team-placeholder {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.team-placeholder i {
    font-size: 3.5rem;
    color: var(--white);
}

.team-card h4 {
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 1.2rem;
}

.team-card p {
    color: var(--content-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Partners - RiseHand Style */
.partners {
    background: var(--white);
    padding: 100px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--light-bg);
    padding: 45px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.partner-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(247, 79, 34, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.partner-card span {
    font-weight: 700;
    color: var(--heading-color);
    display: block;
}

/* Contact Section - RiseHand Style */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-info h2::before {
    content: 'GET IN TOUCH';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.contact-info > p {
    color: var(--content-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--secondary-color);
    transform: rotate(5deg);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--content-color);
    line-height: 1.7;
    margin: 0;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links-large a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Contact Form - RiseHand Style */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    color: var(--heading-color);
    margin-bottom: 35px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(247, 79, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Form Hints */
.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--content-light);
    margin-top: 5px;
}

/* WhatsApp Button - Seamless Style */
.btn-whatsapp {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* CAPTCHA Styles - Updated */
.captcha-group {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 12px 25px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    min-width: 120px;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    user-select: none;
}

.captcha-container input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

/* Donation Section - RiseHand Style */
.donation-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.donation-info h3,
.donation-cards h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.donation-info h3::before,
.donation-cards h3::before {
    content: 'SUPPORT US';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.donation-list {
    margin: 25px 0;
}

.donation-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--content-color);
    line-height: 1.7;
}

.donation-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    background: rgba(247, 79, 34, 0.1);
    padding: 6px;
    border-radius: 5px;
}

.donation-impact {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    margin-top: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.donation-impact h4 {
    margin-bottom: 25px;
    color: var(--heading-color);
    font-size: 1.3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.impact-amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--content-color);
    line-height: 1.5;
}

/* Bank Cards - RiseHand Style */
.bank-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.bank-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.bank-header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bank-header i {
    font-size: 1.8rem;
}

.bank-header h4 {
    margin: 0;
    color: var(--white);
}

.bank-details {
    padding: 25px;
}

.account-number {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.account-number .label {
    font-weight: 600;
    color: var(--content-color);
    font-size: 0.9rem;
}

.account-number .number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: monospace;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.account-name {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.branch {
    color: var(--content-color);
    font-size: 0.9rem;
}

.donation-note {
    background: rgba(247, 79, 34, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.donation-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.donation-note p {
    margin: 0;
    color: var(--content-color);
    line-height: 1.6;
}

.donation-note strong {
    color: var(--heading-color);
}

/* Map Section - RiseHand Style */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.map-section h2::before {
    content: 'OUR LOCATION';
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Section Header - RiseHand Style */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--content-color);
    line-height: 1.7;
}

/* Responsive Design - RiseHand Style */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .about-content-grid,
    .contact-grid,
    .donation-grid,
    .program-detail-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .programs-grid,
    .stats-grid,
    .team-grid,
    .partners-grid,
    .legal-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 28px;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        display: inline-block;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links,
    .social-links-large {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .program-detail-image {
        order: -1;
    }

    .page-header {
        padding: 140px 0 80px;
    }

    .page-header::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo span {
        display: inline;
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navbar .container {
        padding: 15px 15px;
    }

    .btn-donate {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* Scrollbar Styling - RiseHand Style */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===================================
   RiseHand Theme Enhancements
   =================================== */

/* RiseHand-style Card Components */
.rh-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-three);
    transition: var(--transition);
    height: 100%;
}

.rh-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.rh-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 79, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.rh-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.rh-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.rh-card p {
    color: var(--content-color);
    line-height: 1.7;
}

/* RiseHand-style Progress Bars */
.rh-progress {
    background: var(--light-bg-two);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.rh-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    position: relative;
    transition: width 1s ease-in-out;
}

.rh-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rh-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.rh-progress-label {
    font-weight: 600;
    color: var(--heading-color);
}

.rh-progress-value {
    font-weight: 700;
    color: var(--primary-color);
}

/* RiseHand-style Donation Box */
.rh-donation-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.rh-donation-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.rh-donation-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
    font-family: var(--font-heading);
}

.rh-donation-amount span {
    font-size: 1.5rem;
    color: var(--content-color);
}

.rh-donation-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.rh-donation-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* RiseHand-style Section Headers */
.rh-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.rh-section-header .subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.rh-section-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.rh-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.rh-section-header p {
    color: var(--content-color);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* RiseHand-style Testimonial */
.rh-testimonial {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    margin: 40px 0;
}

.rh-testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-heading);
    line-height: 1;
}

.rh-testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--content-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.rh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rh-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.rh-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rh-testimonial-info h4 {
    margin: 0;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.rh-testimonial-info p {
    margin: 5px 0 0;
    color: var(--content-color);
    font-size: 0.9rem;
}

/* RiseHand-style Counter */
.rh-counter {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-three);
    transition: var(--transition);
}

.rh-counter:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.rh-counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(247, 79, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rh-counter-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.rh-counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.rh-counter-label {
    font-size: 1rem;
    color: var(--content-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About RiseHand Section */
.about-risehand {
    padding: 100px 0;
    background: var(--white);
}

.about-risehand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Donation RiseHand Section */
.donation-risehand {
    padding: 100px 0;
    background: var(--light-bg);
}

.donation-progress {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-three);
    margin: 40px auto;
    max-width: 800px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--content-color);
    font-size: 0.95rem;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Responsive adjustments for RiseHand components */
@media (max-width: 768px) {
    .rh-section-header h2 {
        font-size: 2rem;
    }
    
    .rh-donation-amount {
        font-size: 2.5rem;
    }
    
    .rh-card {
        padding: 30px 20px;
    }
    
    .rh-testimonial {
        padding: 30px 20px;
    }
    
    .about-risehand-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-risehand {
        padding: 60px 0;
    }
    
    .donation-risehand {
        padding: 60px 0;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .donation-progress {
        padding: 30px 20px;
        margin: 30px auto;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        color: var(--dark-color) !important;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color) !important;
    }
    
    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 1000;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark-color);
        transition: var(--transition);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Image Responsiveness */
.program-detail-image img,
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Touch-friendly buttons for mobile */
@media (max-width: 768px) {
    .btn,
    .rh-donation-btn,
    .btn-donate {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-link {
        padding: 12px 0;
    }
    
    /* Improve form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape mode improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-links {
        padding-top: 20px;
        gap: 20px;
        overflow-y: auto;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Hero Carousel */


/* Stats Counter Animation */
@keyframes countUp {
    from {
        opacity: 0.5;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Static Hero Section - No animations, always visible */
.hero-static {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('../img/foto2/1 background web.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-static .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hero-static-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-static-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-static-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary-static {
    background-color: #f74f22;
    color: white;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-static:hover {
    background-color: #e6451a;
    transform: scale(1.05);
}

.btn-secondary-static {
    background-color: white;
    color: #1a1a1a;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-static:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .hero-static-title {
        font-size: 4.5rem;
    }
    
    .hero-static-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-static-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-static-title {
        font-size: 5rem;
    }
}

/* Animation delay utilities */
.animation-delay-100 {
    animation-delay: 100ms;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-300 {
    animation-delay: 300ms;
}

.animation-delay-500 {
    animation-delay: 500ms;
}

.animation-delay-700 {
    animation-delay: 700ms;
}

/* Language Switcher Styles */
.lang-switcher {
    margin-left: 1rem;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-1px);
}

.lang-btn.active {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.lang-btn img {
    border-radius: 2px;
    object-fit: cover;
}

/* Mobile language switcher */
@media (max-width: 768px) {
    .lang-switcher {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 1rem;
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .lang-btn img {
        width: 24px;
        height: 16px;
    }
}
