/* style.css - contains all styles and Google Fonts import */

/* Google Fonts import (moved from HTML) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* === ROOT & RESET === */
:root {
    --primary: #004d4d; /* Deep Teal */
    --accent: #d4af37;  /* Gold */
    --light: #f4f7f6;
    --dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === UTILITIES === */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: #c6a229; transform: translateY(-2px); }
.text-center { text-align: center; }
.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 15px; 
    color: var(--primary);
    font-weight: 700; /* thick */
}
.subtitle { 
    font-size: 1.2rem; 
    color: #666; 
    max-width: 700px; 
    margin: 0 auto 40px;
    font-weight: 300; /* thin */
    letter-spacing: 0.3px;
}
.flex-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
/* Grid for what we offer – will be overridden for responsive */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 40px; }

/* === TOP BAR === */
.top-bar {
    background: #003636;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.secondary-links a { 
    color: #ccc; 
    text-decoration: none; 
    margin-right: 15px; 
    transition: 0.3s;
    font-weight: 400;
}
.secondary-links a:hover { color: var(--accent); }
.social-icons a { color: white; margin-left: 15px; transition: 0.3s; }
.social-icons a:hover { color: var(--accent); }

/* === NAVIGATION === */
.main-nav {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500; /* medium */
    font-size: 0.95rem;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); } /* thick on hover */
.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}
.cta-nav:hover { background: #003737; color: white !important; }

/* === HAMBURGER (hidden on desktop) === */
.hamburger { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    z-index: 1100;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s;
}
.hamburger span { 
    width: 100%; 
    height: 3px; 
    background: var(--primary); 
    margin: 3px 0; 
    transition: 0.3s;
    display: block;
    position: absolute;
    left: 0;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* Active (cancel) state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* === HERO SLIDER === */
.hero-slider {
    height: 80vh;
    position: relative;
    background: #111;
    display: flex;
    min-height: 500px;
}
.slides-container { flex: 1; position: relative; overflow: hidden; }
.slide {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0; left: 0;
}
.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    padding-left: 10%;
    max-width: 700px;
}
.slide-content h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin-bottom: 20px;
    font-weight: 700; /* thick */
}
.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    opacity: 0.95;
    font-weight: 300; /* thin */
    letter-spacing: 0.3px;
}

/* Thumbnails fill height, no scroll (desktop) */
.slide-thumbnails {
    width: 150px;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    height: 100%;
    overflow: hidden;
}
.thumb {
    flex: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    min-height: 0;
}
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--accent); }

/* Navigation arrows & bottom circles (visible in responsive) */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}
.slider-nav button {
    pointer-events: auto;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-nav button:hover { background: var(--primary); }
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}
.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}
.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* === WELCOME SECTION === */
.welcome-section { padding: 80px 0 40px; background: var(--light); }

/* === WHO WE ARE === */
.who-we-are { padding: 60px 0; }
.content-box { flex: 1; min-width: 280px; }
.content-box .tag {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.content-box h2 { 
    font-size: 2rem; 
    margin-bottom: 20px; 
    color: var(--primary);
    font-weight: 700; /* thick */
}
.content-box p { 
    margin-bottom: 15px; 
    color: #555;
    font-weight: 400; 
}
.content-box p:first-of-type { font-weight: 300; } /* thin first paragraph */
.image-box { flex: 1; min-width: 280px; }
.image-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* === WHAT WE OFFER === */
.what-we-offer { padding: 60px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 20px; }
.section-header h2 { 
    font-size: 2.2rem; 
    color: var(--primary); 
    font-family: 'Playfair Display', serif;
    font-weight: 700;

}
.section-header p {
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
}
.card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.card h3 { 
    margin-bottom: 15px; 
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem;
}
.card p {
    font-weight: 300;
    font-size: 0.95rem;
}

/* === FOOTER (primary green) === */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-grid a { color: #ddd; text-decoration: none; transition: 0.3s; }
.footer-grid a:hover { color: var(--accent); }
.social-icons-footer a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s;
}
.social-icons-footer a:hover { color: var(--accent); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    opacity: 0.8;
}
footer h3, footer h4 {
    font-weight: 600;
}
footer p {
    font-weight: 300;
    opacity: 0.9;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        display: flex;
        gap: 20px;
        z-index: 1050;
        padding: 20px;
    }
    .nav-links.active { right: 0; }
    .nav-links li {
        margin: 0;
        width: auto;
        line-height: 1.2;
    }
    .nav-links a {
        display: block;
        padding: 15px 25px;
        font-size: 1.5rem;
        border-bottom: none;
        text-align: center;
        font-weight: 500;
    }
    .cta-nav {
        margin-top: 10px;
        font-size: 1.5rem;
    }
    .slide-thumbnails { display: none; }
    
    /* Show arrows and circles on mobile/tablet */
    .slider-nav, .slide-indicators { display: flex; }
    
    /* Two columns for offers up to 640px */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* At 640px, third card spans full width */
@media (max-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 .card:last-child {
        grid-column: 1 / -1;  /* full width */
        max-width: 100%;
    }
}

/* At 480px and below, all three cards stack */
@media (max-width: 480px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-3 .card:last-child {
        grid-column: auto; /* reset */
    }
    .image-box img { height: 280px; }
}

@media (max-width: 768px) {
    .hero-slider { height: 60vh; }
    .flex-row { flex-direction: column; }
    .top-bar .container { flex-direction: column; gap: 10px; }
    .secondary-links { margin-bottom: 5px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Ensure arrows/indicators are hidden on desktop, visible below 992px */
.slider-nav, .slide-indicators {
    display: none;
}
@media (max-width: 992px) {
    .slider-nav, .slide-indicators {
        display: flex;
    }
}


/* === ABOUT PAGE ENHANCEMENTS === */

.section-padding { padding: 80px 0; }

/* Inner Header & Breadcrumbs */
.inner-header {
    background: linear-gradient(rgba(0, 54, 54, 0.85), rgba(0, 54, 54, 0.85)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}
.inner-header h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    margin-bottom: 15px; 
}
.breadcrumbs { 
    list-style: none; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 12px; 
    font-size: 0.9rem;
}
.breadcrumbs a { color: var(--accent); text-decoration: none; transition: 0.3s; }
.breadcrumbs i { font-size: 0.7rem; opacity: 0.6; }
.breadcrumbs li.active { opacity: 0.8; }

/* Image Stack & Floating Stat */
.about-img-stack { position: relative; }
.about-img-stack .main-img { 
    border-radius: 15px; 
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--accent);
    padding: 20px 30px;
    border-radius: 10px;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 5;
}
.floating-stat h3 { font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.floating-stat p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin: 0; }

/* Info Block (Heart icon section) */
.info-block { 
    display: flex; 
    gap: 20px; 
    margin-top: 30px; 
    background: var(--light); 
    padding: 25px; 
    border-radius: 12px;
    align-items: flex-start;
}
.info-icon {
    background: var(--white);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

/* VMG Section (Vision Mission Goals) */
.vmg-section { background: var(--primary); padding: 80px 0; }
.vmg-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border-radius: 10px;
}
.vmg-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-10px); }
.vmg-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.vmg-card h3 { color: var(--white); margin-bottom: 15px; }
.vmg-card p { opacity: 0.8; font-weight: 300; }

/* Values Flex */
.values-flex { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    margin-top: 40px; 
}
.value-box { 
    flex: 1; 
    min-width: 300px; 
    padding: 40px 30px; 
    background: var(--white); 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--accent);
}
.val-num { 
    font-size: 3rem; 
    font-weight: 800; 
    color: rgba(0, 77, 77, 0.05); 
    position: absolute;
    top: 10px; right: 20px;
}

/* Ensure smooth transition between dark VMG and white Values section */
.values-section { background-color: var(--light); }



/* === VISION PAGE SPECIFIC === */

.vision-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80&w=1600');
}

.vision-feature-img {
    margin-top: 50px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.full-width-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Roadmap List Styling */
.vision-list {
    list-style: none;
    margin-top: 25px;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary);
}

.vision-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Strategic Pillar Cards (Reusing VMG Card styles with slight adjustment) */
.vmg-card h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* Responsiveness for Vision Feature Image */
@media (max-width: 768px) {
    .full-width-img {
        height: 300px;
    }
}





/* === MISSION PAGE SPECIFIC === */

.mission-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&q=80&w=1600');
}

/* Mission Quote Styling */
.mission-quote {
    margin-top: 30px;
    padding: 30px;
    background: var(--light);
    border-left: 5px solid var(--accent);
    border-radius: 0 10px 10px 0;
    position: relative;
}

.mission-quote i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
}

.mission-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 500;
}

/* Mission Model & Stats */
.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.stat-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.accent-text {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .mission-quote {
        padding: 20px;
    }
}




/* === GOALS PAGE SPECIFIC === */

.goals-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80&w=1600');
}

/* Timeline Styling */
.goals-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 30px;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.time-marker {
    background: var(--accent);
    color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.time-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.time-content p {
    color: #666;
    font-size: 1rem;
}

/* Goal Illustration spacing */
.goal-illustration img {
    border-radius: 20px;
    box-shadow: -20px 20px 0px var(--light);
}

/* Responsiveness */
@media (max-width: 768px) {
    .goals-timeline {
        padding-left: 20px;
    }
    .timeline-item::after {
        left: -25px;
    }
}




/* === CONTACT PAGE SPECIFIC === */

.contact-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&q=80&w=1600');
}

/* Info Cards */
.contact-info-card {
    background: var(--white) !important;
    border-bottom: 4px solid var(--accent);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.accent-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 10px;
}

/* Form Styling */
.contact-form-wrapper {
    background: var(--white);
    padding:40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 77, 77, 0.1);
}

/* Map & Visual */
.contact-visual {
    height: 100%;
}

.map-placeholder {
    background: #e5e3df;
    height: 500px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* Responsiveness */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
}


/* === PROJECTS PAGE SPECIFIC === */

.projects-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&q=80&w=1600');
}

/* Project Item Layout */
.project-item {
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-item.reverse {
    flex-direction: row-reverse;
}

.project-item .val-num {
    position: relative;
    top: auto;
    right: auto;
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.project-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Enhancing Project Images */
.project-item .main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.project-item:hover .main-img {
    transform: translateY(-5px);
}

/* Responsive Projects */
@media (max-width: 992px) {
    .project-item, .project-item.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .project-item .vision-list {
        display: inline-block;
        text-align: left;
    }
}







/* === PRIVACY PAGE SPECIFIC === */

.privacy-header {
    background: linear-gradient(rgba(0, 54, 54, 0.85), rgba(0, 54, 54, 0.85)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=1600');
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy-section {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.policy-section h3 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.policy-section ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.policy-section p {
    color: #555;
    line-height: 1.8;
}

/* Responsiveness */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 30px;
    }
}







/* === DONATION PAGE SPECIFIC === */

.donate-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&q=80&w=1600');
}

/* Tier Cards */
.tier-card {
    background: var(--white);
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
}

.tier-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tier-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.tier-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Payment Section */
.payment-icons {
    font-size: 2rem;
    display: flex;
    gap: 15px;
    color: #ccc;
    margin-top: 5px;
}

.small-text {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    display: block;
}

.w-100 { width: 100%; }

/* JavaScript Helper style */
.select-tier:active {
    transform: scale(0.95);
}

@media (max-width: 992px) {
    .tier-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}








/* === VOLUNTEER PAGE SPECIFIC === */

.volunteer-header {
    background: linear-gradient(rgba(0, 54, 54, 0.8), rgba(0, 54, 54, 0.8)), 
                url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&q=80&w=1600');
}

/* Simple Step Boxes */
.stat-box-simple {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    position: relative;
    border-left: 4px solid var(--accent);
}

.stat-box-simple .val-num {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2.5rem;
    color: rgba(0, 77, 77, 0.05);
}

.stat-box-simple h4 {
    margin-bottom: 5px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-box-simple p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .volunteer-form-section .flex-row {
        flex-direction: column-reverse;
    }
}