:root {
    --deep-green: #0f4127;
    --sage-green: #46a27d;
    --sunshine: #ffad33;
    --mist: #f5f7f9;
    --ink: #0b1b16;
    --soft-shadow: 0 20px 40px rgba(15, 65, 39, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Mukta', system-ui, sans-serif;
    background: #ffffff;
    color: var(--ink);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    padding: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 249, 245, 0.9) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(70, 162, 125, 0.2);
    box-shadow: 0 2px 8px rgba(15, 65, 39, 0.08);
}

.hero-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
}

.hero-banner-track {
    display: flex;
    width: 300%;
    animation: slider 24s ease-in-out infinite;
}

.hero-banner-slide {
    flex: 0 0 100%;
    position: relative;
}

.hero-banner-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.hero-banner-caption {
    position: absolute;
    left: 8%;
    bottom: 14%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.85rem;
    backdrop-filter: blur(6px);
}

.logo-block {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-block:hover .logo-text .logo-title {
    color: var(--sage-green);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 1rem;
    padding: 0.5rem;
    background: white;
    box-shadow: 0 4px 12px rgba(15, 65, 39, 0.15);
    transition: transform 0.3s ease;
}

.logo-block:hover .logo-icon-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-green);
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1.1;
}

.logo-text .logo-title:nth-child(2) {
    color: var(--sage-green);
    font-size: 1.3rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--sage-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #2d4a3d;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2rem;
    font-family: 'Mukta', sans-serif;
}

.nav-link:hover {
    color: var(--deep-green);
    background: rgba(70, 162, 125, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white;
    background: var(--sage-green);
    box-shadow: 0 4px 10px rgba(70, 162, 125, 0.3);
}

/* Remove old underline effect */
.nav-link.active::before,
.nav-link:hover::before {
    display: none;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    margin-left: 1.5rem;
    align-items: center;
}

.nav-donate-btn {
    background: linear-gradient(135deg, var(--sunshine), #f9a825);
    color: var(--ink);
    padding: 0.7rem 1.8rem;
    border-radius: 2rem;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 4px 15px rgba(255, 173, 51, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-donate-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 173, 51, 0.5);
    color: #000;
}

.section {
    margin-top: 3rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--soft-shadow);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.card {
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 65, 39, 0.1);
    background: linear-gradient(180deg, rgba(70, 162, 125, 0.08), rgba(255, 255, 255, 0.7));
}

.card h3 {
    font-size: 1.2rem;
    color: var(--deep-green);
}

.card p {
    margin-top: 0.75rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    margin-top: 1rem;
}

.work-card {
    width: 100%;
    border-radius: 1.25rem;
    background: #fdfdfd;
    overflow: hidden;
    border: 1px solid rgba(15, 65, 39, 0.1);
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.work-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.work-card div {
    padding: 1.5rem;
}

.work-card h3 {
    margin-bottom: 0.5rem;
    color: var(--deep-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--soft-shadow);
}

.cta {
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, rgba(70, 162, 125, 0.3), rgba(15, 65, 39, 0.9));
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.cta h3 {
    font-size: 2rem;
}

.cta .cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.cta .btn {
    box-shadow: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.contact-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #fdfdfd;
    border: 1px solid rgba(15, 65, 39, 0.1);
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--deep-green);
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid label {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 65, 39, 0.2);
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-grid button {
    width: 180px;
    margin-top: 0.5rem;
}

footer {
    padding: 3rem 5vw;
    background: #0f4127;
    color: #f4fff8;
    width: 100%;
    margin-top: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.footer-columns a {
    color: #f8f4e7;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.9rem;
}

.nav-close-btn {
    display: none;
}

/* Tablet and Mobile Responsive Styles */
@media (max-width: 968px) {

    /* Header responsive */
    .site-header {
        flex-direction: row;
        gap: 1.5rem;
        padding: 1rem 3vw;
        position: relative;
    }

    .logo-block {
        flex: 1;
        justify-content: flex-start;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.35rem;
        width: 40px;
        height: 40px;
        padding: 0.35rem;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background: var(--sunshine);
        display: block;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0f4127 0%, #1a5836 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 1rem;
        display: none;
        z-index: 998;
        padding-top: 100px;
        padding-bottom: 2rem;
        overflow-y: auto;
        margin-left: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: rgba(0, 0, 0, 0.2);
        color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 1000;
    }

    .nav-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .nav-link {
        color: white;
        padding: 1rem;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.05);
        width: 80%;
        text-align: center;
        border-radius: 1rem;
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--sage-green);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }

    .nav-link.active::before,
    .nav-link:hover::before {
        display: none;
    }

    .nav-actions {
        margin: 2rem 0 0 0;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-donate-btn {
        width: 80%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
        box-shadow: 0 4px 20px rgba(255, 173, 51, 0.3);
    }
}

/* Hero Section responsive */
.hero-main {
    padding: 3rem 0 2rem;
}

.hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-align: center;
}

.hero-description {
    font-size: 1rem;
    text-align: center;
}

.hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2rem;
}

.hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
    text-align: center;
}

/* Impact Numbers responsive */
.impact-numbers {
    padding: 3rem 0;
}

.impact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.impact-card {
    padding: 1.5rem;
}

.impact-icon {
    font-size: 2.5rem;
}

.impact-card h3 {
    font-size: 2rem;
}

/* Services Section responsive */
.services-section {
    padding: 3rem 0;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.service-card {
    padding: 2rem;
}

.service-icon {
    font-size: 2.5rem;
}

/* About Section responsive */
.about-section {
    padding: 3rem 0;
}

.about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    text-align: center;
}

.about-text {
    text-align: center;
}

/* Mission Vision responsive */
.mission-vision-section {
    padding: 3rem 0;
}

.mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
}

.mission-vision-card {
    padding: 2rem;
}

.mv-icon {
    font-size: 3rem;
}

.mission-vision-card h3 {
    font-size: 1.6rem;
}

.mission-vision-card p {
    font-size: 1rem;
}

/* Work Section responsive */
.work-section {
    padding: 3rem 0;
}

.work-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

/* Gallery responsive */
.gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

/* CTA Section responsive */
.cta-section {
    padding: 3rem 0;
}

.cta-content {
    padding: 0 1.5rem;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
}

.cta-text {
    font-size: 1rem;
}

.cta-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cta-actions .btn {
    width: 100%;
}

/* Container padding */
.container {
    padding: 0 1.5rem;
}

/* Section headings */
.section-heading {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    text-align: center;
}

.section-intro {
    font-size: 1rem;
    padding: 0 1rem;
}

/* Footer responsive */
.site-footer {
    padding: 3rem 1.5rem;
}

.footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

/* Form responsive */
.contact-form {
    padding: 0 1.5rem;
}

.form-row {
    grid-template-columns: 1fr;
}

/* Donation Page Responsive */
.donation-hero {
    padding: 4rem 0 3rem;
}

.donation-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.stat-box {
    padding: 1.5rem;
}

.donation-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
}

.amount-panel,
.form-panel {
    padding: 2rem;
}

.panel-heading h2 {
    font-size: 1.9rem;
}

.amount-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.amount-btn {
    padding: 1.3rem;
    min-height: 55px;
}

.custom-amount input {
    padding: 1rem 1rem 1rem 2.5rem;
    font-size: 1.1rem;
}

.donation-form-grid {
    grid-template-columns: 1fr;
}

.impact-preview {
    font-size: 1rem;
    padding: 1.5rem;
}

.impact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.impact-card {
    padding: 2rem;
}

.trust-badges {
    gap: 1rem;
}

.trust-badges>div {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}
}

@media (max-width: 900px) {
    .col-md-6 {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {

    /* Extra small mobile adjustments */
    .logo-icon-img {
        width: 50px;
        height: 50px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn.large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .impact-icon,
    .service-icon {
        font-size: 2rem;
    }

    .impact-card h3,
    .service-card h3 {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .mission-vision-card {
        padding: 1.5rem;
    }

    .mv-icon {
        font-size: 2.5rem;
    }

    .mission-vision-card h3 {
        font-size: 1.4rem;
    }

    /* Donation Page Mobile Adjustments */
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .amount-btn {
        padding: 1.1rem;
        font-size: 0.95rem;
        min-height: 50px;
        border-radius: 0.7rem;
    }

    .panel-heading h2 {
        font-size: 1.4rem;
    }

    .panel-description {
        font-size: 0.95rem;
    }

    .custom-amount input {
        font-size: 1rem;
        padding: 0.95rem 1rem 0.95rem 2.5rem;
    }

    .donation-form-grid input,
    .donation-form-grid textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 0.7rem;
    }

    .donation-form-container {
        gap: 1.25rem;
    }

    .amount-panel,
    .form-panel {
        padding: 1.25rem;
    }

    .impact-preview {
        padding: 1.2rem;
        font-size: 0.9rem;
        border-radius: 0.7rem;
    }
}

/* New Hero Section */
.hero-main {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    padding: 5rem 0 4rem;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d4a3d;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(15, 65, 39, 0.1);
}

.stat-item h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.95rem;
    color: #555;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(15, 65, 39, 0.25);
}

/* Button Styles */
.btn {
    border-radius: 999px;
    border: none;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    background: linear-gradient(120deg, var(--sunshine), #ff8c00);
    color: #1d1d1d;
    box-shadow: var(--soft-shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(15, 65, 39, 0.25);
}

.btn.primary {
    background: linear-gradient(120deg, var(--sunshine), #ff8c00);
    color: #1d1d1d;
}

.btn.primary:focus-visible,
.btn.primary:active {
    outline: 2px solid rgba(255, 173, 51, 0.5);
    outline-offset: 3px;
}

.btn.secondary,
.btn.secondary-header {
    background: white;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
}

.btn.secondary:hover,
.btn.secondary-header:hover {
    background: var(--deep-green);
    color: white;
}

.btn.secondary-header {
    border-color: rgba(15, 65, 39, 0.3);
}

.btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.outline:hover {
    background: white;
    color: var(--deep-green);
}

.btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Impact Numbers Section */
.impact-numbers {
    padding: 4rem 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    border: 2px solid #e8f3ea;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.15);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: #555;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
}

.section-heading {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.section-heading.text-center {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 65, 39, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(15, 65, 39, 0.2);
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-green) 0%, #1a5836 100%);
    color: white;
}

.mission-vision-section .section-heading {
    color: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-card {
    padding: 3rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mission-vision-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--sunshine);
}

.mission-vision-card p {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Work Section */
.work-section {
    padding: 5rem 0;
    background: white;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-green) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Donation Page Styles */
.donation-hero {
    background: linear-gradient(135deg, var(--deep-green) 0%, #1a5836 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.donation-subtitle {
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.donation-hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--sunshine);
}

.donation-hero-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #f4f9f3;
}

.donation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--sunshine);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.donation-form-section {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    padding: 5rem 0;
}

.donation-form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
    justify-content: space-between;
}

.col-12 {
    flex: 1 1 100%;
}

.col-md-6 {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.amount-panel,
.form-panel {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(15, 65, 39, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.panel-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.panel-heading h2 {
    font-family: 'Baloo 2', cursive;
    color: var(--deep-green);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0;
}

.panel-heading p {
    color: #2d4a3d;
    line-height: 1.6;
}

.panel-kicker {
    color: var(--sage-green);
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.panel-description {
    margin: 0;
}

.amount-selection {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.amount-btn {
    padding: 1.5rem;
    border: 2px solid var(--sage-green);
    background: white;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-btn:hover {
    background: var(--sage-green);
    color: white;
    transform: translateY(-2px);
}

.custom-amount {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.custom-amount label {
    font-weight: 600;
    color: var(--deep-green);
}

.custom-amount .input-wrapper {
    position: relative;
}

.custom-amount span {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--sage-green);
    font-weight: bold;
}

.custom-amount input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 2.8rem;
    border: 2px solid var(--sage-green);
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.donation-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.donation-form-grid .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.donation-form-grid label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-green);
}

.donation-form-grid input,
.donation-form-grid textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.donation-form-grid textarea {
    min-height: 120px;
    resize: vertical;
}

.donation-form-grid .full-span {
    grid-column: 1 / -1;
}

.required {
    color: #d32f2f;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.consent-checkbox input {
    width: auto;
}

.form-note {
    background: rgba(15, 65, 39, 0.05);
    border-radius: 0.8rem;
    padding: 1rem 1.25rem;
    border: 1px dashed rgba(70, 162, 125, 0.5);
}

.form-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #2d4a3d;
}

.form-submit {
    width: 100%;
    padding: 1.3rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.impact-preview {
    background: linear-gradient(135deg, rgba(70, 162, 125, 0.1), rgba(255, 255, 255, 0.8));
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--sage-green);
    display: none;
    margin-top: 1.5rem;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid #e8f3ea;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.15);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   DONATION FORM RESPONSIVE STYLES
   ============================================ */

/* Tablet View */
@media (max-width: 968px) {
    .donation-form-container {
        flex-direction: column;
        gap: 2rem;
    }

    .amount-panel,
    .donor-form {
        width: 100% !important;
        max-width: 100%;
    }

    .donation-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View - Single Column */
@media (max-width: 640px) {
    .donation-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .donation-form-grid .form-group {
        grid-column: 1 / -1;
    }

    .donation-form-grid .full-span {
        grid-column: 1 / -1;
    }

    .amount-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .amount-btn {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .panel-heading h2 {
        font-size: 1.6rem;
    }

    .donation-form-grid input,
    .donation-form-grid textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .donation-form-section {
        padding: 2rem 0;
    }

    .amount-panel,
    .donor-form {
        padding: 1.5rem;
    }

    .panel-heading {
        margin-bottom: 1.25rem;
    }

    .panel-kicker {
        font-size: 0.75rem;
    }

    .impact-tags {
        flex-direction: column;
        gap: 0.5rem;
    }

    .impact-tag {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ============================================
   RESPONSIVE SLIDER STYLES
   ============================================ */

.hero-slider-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 65, 39, 0.95), rgba(15, 65, 39, 0.7), transparent);
    color: white;
    padding: 3rem 5vw 2rem;
    backdrop-filter: blur(5px);
}

.slide-caption h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 10;
}

.slider-control:hover {
    background: rgba(70, 162, 125, 0.9);
    border-color: rgba(70, 162, 125, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 2rem;
}

.slider-control.next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--sage-green);
    border-color: var(--sage-green);
    width: 30px;
    border-radius: 10px;
}

/* Quick Stats Banner */
.quick-stats-banner {
    background: linear-gradient(135deg, var(--deep-green), var(--sage-green));
    padding: 2.5rem 0;
    color: white;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.stats-row .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stats-row .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    margin: 0;
    color: var(--sunshine);
}

.stat-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive Styles for Slider */
@media (max-width: 968px) {
    .slide img {
        height: 400px;
    }

    .slide-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .slide-caption h2 {
        font-size: 1.8rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

    .slider-control {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }

    .slider-control.prev {
        left: 1rem;
    }

    .slider-control.next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-row .stat-item {
        padding: 0.75rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .stat-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 300px;
    }

    .slide-caption h2 {
        font-size: 1.4rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .slider-control {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .slider-control.prev {
        left: 0.5rem;
    }

    .slider-control.next {
        right: 0.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quick-stats-banner {
        padding: 1.5rem 0;
    }
}

/* ============================================
   PAGE HERO SECTIONS (160px)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage-green) 100%);
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    min-height: 160px;
    padding: 2rem 0;
}

.page-hero-content .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.page-hero-icon {
    font-size: 5rem;
    opacity: 0.95;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.page-hero-text {
    color: white;
    flex: 1;
}

.page-hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.75rem 0;
    font-weight: 400;
}

.page-hero-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--sunshine);
}

.page-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Section Styles */
.content-section {
    padding: 4rem 0;
    background: white;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.section-header-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Enhanced Card Grids */
.enhanced-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.enhanced-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(70, 162, 125, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 65, 39, 0.08);
}

.enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.15);
    border-color: var(--sage-green);
}

.enhanced-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.enhanced-card-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.enhanced-card-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid rgba(70, 162, 125, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.15);
}

.team-card-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green), var(--deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.team-card-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.team-card-role {
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-card-desc {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Enhanced */
.enhanced-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 65, 39, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 65, 39, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    margin: 0;
}

/* Contact Enhanced */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(70, 162, 125, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: var(--sage-green);
    box-shadow: 0 10px 25px rgba(15, 65, 39, 0.15);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-green), var(--deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-info-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--deep-green);
    text-decoration: underline;
}

/* Contact Form Enhanced */
.enhanced-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 65, 39, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(70, 162, 125, 0.2);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(70, 162, 125, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--sage-green), var(--deep-green));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 162, 125, 0.3);
}

/* Responsive for Page Hero */
@media (max-width: 968px) {
    .page-hero-content {
        min-height: 140px;
        padding: 1.5rem 0;
    }

    .page-hero-content .container {
        gap: 2rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .page-hero-icon {
        font-size: 4rem;
    }

    .enhanced-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .enhanced-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .enhanced-contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero-content {
        min-height: 120px;
        padding: 1.25rem 0;
    }

    .page-hero-content .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .page-hero-icon {
        font-size: 3.5rem;
    }

    .page-hero-title {
        font-size: 1.6rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
    }

    .page-hero-breadcrumb {
        justify-content: center;
    }

    .section-header-title {
        font-size: 1.8rem;
    }

    .enhanced-gallery-grid {
        grid-template-columns: 1fr;
    }
}