/* Homepage Layout Specific Styles */

/* ---------- INFO CONTAINERS SECTION ---------- */
.info-containers {
    padding: 4rem 0;
    background: #f8f9fa;
}

.container-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}

.info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.container-icon {
    width: 60px;
    height: 60px;
    background: var(--tile);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: white;
}

.info-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-items {
    margin: 20px 0;
}

.feature-item {
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.info-container > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 20px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .container-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .info-container {
        padding: 1.5rem;
    }
    
    .info-container h3 {
        font-size: 1.3rem;
    }
    
    .feature-item h4 {
        font-size: 16px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .info-container > p {
        font-size: 14px;
    }
}

/* ---------- VISION / MISSION  ---------- */
.vm {
    width: min(1200px,92vw);
    margin: 48px auto;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 28px;
    align-items: stretch;
    justify-content: center;
}

.vm .panel {
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm .panel.dark {
    background: var(--deep);
    color: #fff;
}

.vm .panel.light {
    background: #fff;
    color: #2c4920;
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides img.is-active {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    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;
}

.dot:hover,
.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.tile {
    background: var(--tile);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.tile h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Vision/Mission Section */
.vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.panel {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel.dark {
    background: var(--deep);
    color: white;
}

.panel.light {
    background: #f8f9fa;
    color: #333;
}

.panel h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.panel p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Features Section (New Style) */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.features-header {
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 1rem;
}

.features-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-green-bg {
    background: linear-gradient(135deg, var(--olive-bg-1), var(--olive-bg-2));
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 1rem;
}

.feature-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-purple-link {
    color: #8b5cf6;
}

.feature-blue-link {
    color: #3b82f6;
}

.feature-green-link {
    color: var(--tile);
}

.feature-arrow {
    transition: transform 0.3s ease;
}

.feature-link:hover .feature-arrow {
    transform: translateX(3px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #556B2F; /* dark olive green */
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

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

.curve-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Video Section */
.video-wrap {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.video-player {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-player video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Footer styles removed - using shared footer component */

/* ---------- ABOUT ---------- */
.about {
    padding: 24px 0 16px;
}

.about-wrap {
    width: min(1200px,92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 34px;
}

.curve-img img {
    width: 100%;
    display: block;
    clip-path: ellipse(130% 100% at 0% 100%);
    border-bottom-right-radius: 60px;
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.about-text {
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
}

/* ---------- REAL VIDEO ---------- */
.video-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.video-player {
    width: min(960px,92vw);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
    background: #000;
}

.video-player video {
    display: block;
    width: 100%;
}

/* ===== HERO SLIDESHOW ===== */
.hero {
    padding-top: 12px;
}

.hero-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 30px 70px rgba(0,0,0,.20);
}

.hero-frame .slides {
    position: relative;
    width: 100%;
    height: clamp(300px, 56vw, 620px);
}

.hero-frame .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .5s ease, transform .6s ease;
}

.hero-frame .slides img.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.85);
    background: rgba(255,255,255,.25);
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
    cursor: pointer;
}

.hero-dots .dot.is-active {
    background: #fff;
}

/* ---------- CTA ---------- */
.get-involved {
    padding: 12px 0 60px;
}

.get-involved h3 {
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 36px;
    margin: 0 0 18px;
}

.get-involved .actions {
    width: min(1200px, 92vw);
    margin: 0 auto;
    background: transparent;
    border-radius: 18px;
    box-shadow: none;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.get-involved .action {
    text-align: center;
}

.btn-oval {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 9999px;
    background: #6AAE8F;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.18) inset, 0 8px 20px rgba(0,0,0,.18);
    transition: transform .15s ease, filter .15s ease;
}

.btn-oval:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn-oval.secondary {
    background: #6F8B4B;
}

.btn-oval i {
    margin-left: 10px;
}

.get-involved .action p {
    color: #e9f2e1;
    margin: 10px auto 0;
    max-width: 520px;
    font-weight: 600;
}

/* ---------- Get Started (stats + buttons) ---------- */
.get-started-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .get-started-container {
        padding: 0 2rem;
    }
}

.get-started-content {
    margin: 0 auto;
    max-width: 56rem;
    text-align: center;
}

.get-started-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .get-started-title {
        font-size: 2.25rem;
    }
}

.get-started-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
}

.get-started-stats {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .get-started-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.get-started-stat {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.get-started-stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: .5rem;
}

.get-started-stat-text {
    color: #4a4a4a;
}

.get-started-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .get-started-buttons {
        flex-direction: row;
    }
}

/* ---------- small responsive keeps ---------- */
@media (max-width:980px) {
    .curve-img img {
        clip-path: none;
        border-radius: 26px;
    }
}

.features-section {
    background: transparent;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .features-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.features-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .features-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.features-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .features-title {
        font-size: 2.25rem;
    }
}

.features-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 250px;
}

.feature-card:hover {
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.feature-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
}

.feature-green-bg {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
}

.feature-purple-link {
    color: #7c3aed;
}

.feature-purple-link:hover {
    color: #6d28d9;
}

.feature-blue-link {
    color: #2563eb;
}

.feature-blue-link:hover {
    color: #1d4ed8;
}

.feature-green-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    border: none;
    margin-top: auto;
}

.feature-green-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.feature-arrow {
    margin-left: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 20px;
        min-height: 220px;
    }
    
    .vm {
        grid-template-columns: 1fr;
    }
    
    .panel {
        padding: 2rem 1.5rem;
    }
    
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer styles removed - using shared footer component */

/* Consolidated Responsive Styles */
@media (max-width: 1024px) {
    .max, .about-wrap, .get-involved .actions, .features-container, .get-started-container {
        width: min(100%, 94vw);
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .feature-image {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .vm {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .get-involved .actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .get-started-stats {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 18px;
        min-height: 200px;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-description {
        font-size: 0.9rem;
    }
    
    .feature-green-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .tile {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .tile h4 {
        font-size: 1.1rem;
    }
    
    .vm .panel {
        padding: 1.5rem 1rem;
    }
    
    .max, .about-wrap, .get-involved .actions {
        width: min(100%, 96vw);
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .get-started-title {
        font-size: 1.5rem;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
}
/* About overrides - set white background and dark text */
.about{background:#fff !important;}
.about-text{color:#333 !important;}
