﻿.landing-footer {
    padding: 1.5rem;
}

.landing-page {
    overflow-x: hidden;
}
/* State before animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    /* State after animation (triggered by JS) */
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }



/************** Navigation Bar ********************/
@media (min-width: 1600px) and (max-width:2000px) {
    #landingNavbar .container {
        max-width: 90% !important;
    }
}


.landing-nav-bar {
    background-color: #ffffff !important;
}

    .landing-nav-bar .navbar-nav .nav-item .nav-link {
        color: #6f717c;
        font-size: 0.95rem;
        font-weight: 500;
        position: relative;
        padding: 0.5rem 1.2rem;
        transition: color 0.3s ease;
    }


@media (min-width: 1600px) {
    .landing-nav-bar .navbar-nav .nav-item .nav-link {
        font-size: 1.05rem;
    }
}

.landing-nav-bar .navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 1.2rem;
    background-color: #6f717c;
    transition: width 0.3s ease-in-out;
}

.landing-nav-bar .navbar-nav .nav-item .nav-link:hover::after {
    width: calc(100% - 2.4rem);
}

.logo-lg img {
    height: 22px;
    transition: all 0.3s ease;
}

@media (min-width: 1600px) {
    .logo-lg img {
        height: 28px;
    }
}


.btn-login {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    background-color: #16a249;
    color: #ffffff !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 1600px) {
    .btn-login {
        font-size: 1.05rem;
        padding: 0.7rem 2.2rem;
    }
}

.btn-login:hover {
    background-color: #11833b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(22, 162, 73, 0.2);
}


.btn-language {
    background-color: #f3f5f9;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

@media (min-width: 1600px) {
    .btn-language {
        font-size: 1.05rem;
    }
}

.btn-language:hover, .btn-language:focus {
    background-color: #e9ecef;
    color: #111827;
    border-color: #d1d5db;
}


.dropdown-menu-custom {
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 8px;
    min-width: 160px;
}

.dropdown-item {
    border-radius: 6px;
    font-size: 0.95rem;
    padding: 10px 15px;
}

    .dropdown-item:hover {
        background-color: #f3f5f9;
    }


.navbar-toggler {
    border: none !important;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

#menu-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease-in-out;
}


.icon-rotate {
    transform: rotate(90deg);
}

/**************** Hero Section *****************/
#hero {
    background-image: url('/assets/images/landing/chicken-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width:991px) {
    #hero {
        min-height: 86vh;
    }
}

@media (min-width: 992px) and (max-width:1200px) {
    #hero {
        min-height: 94vh;
    }
}


#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


#hero h1 {
    transition: font-size 0.3s ease;
}

.text-brand-green {
    color: #28a745;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    color: #fff;
}


.btn-custom-green {
    background-color: #16a249;
    color: white !important;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-custom-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}


@media (min-width: 1600px) {
    #hero h1.display-3 {
        font-size: 4.5rem;
    }

    #hero p.lead {
        font-size: 1.5rem !important;
        max-width: 850px;
        margin: 0 auto 3rem auto;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .btn-custom-green, .btn-custom-outline {
        padding: 16px 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-badge {
        font-size: 0.8rem;
    }

    .fs-4 {
        font-size: 1rem;
    }

    .btn-custom-green, .btn-custom-outline {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

@media (min-width: 2000px) {
    #hero h1.display-3 {
        font-size: 5.5rem;
    }

    #hero p.lead {
        font-size: 1.75rem !important;
        max-width: 1000px;
    }
}

.dropdown-menu-custom {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.2s;
}

    .dropdown-item.active, .dropdown-item:active {
        background-color: #16a249;
    }

/***************** Features Section *****************/


@media (min-width: 1600px) {
    #features .container,
    .stats-container .container,
    #demo .container {
        max-width: 90% !important;
    }
}

@media (min-width: 2000px) {
    #features .container,
    .stats-container .container,
    #demo .container {
        max-width: 1440px !important;
    }
}


#features {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.badge-soft {
    background-color: #e6f4ea;
    color: #16a249;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}


@media (min-width: 1600px) {
    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.3rem !important;
    }
}

.section-subtitle {
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}


.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-color: #16a249;
    }

.icon-box {
    width: 56px;
    height: 56px;
    background-color: #f0fdf4;
    color: #16a249;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
}


.feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    transition: font-size 0.3s ease;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
    transition: font-size 0.3s ease;
}


@media (min-width: 1600px) {
    .feature-card h5 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1.1rem;
    }
}


@media (max-width: 767px) {
    .feature-card h5 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.95rem; 
    }
}

/* --- Stats Section --- */
.stats-container {
    padding: 80px 0;
    border-top: 1px solid #f3f4f6;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Demo Images --- */
#demo {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.demo-img-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid white; 
    transition: transform 0.4s ease;
}

    .demo-img-container:hover {
        transform: scale(1.02);
    }
/***************** Testimonial Section *********************/


@media (min-width: 1600px) {
    #testimonial .container {
        max-width: 90% !important;
    }
}

@media (min-width: 2000px) {
    #testimonial .container {
        max-width: 1440px !important;
    }
}


#testimonial {
    padding: 100px 0;
    background-color: #ffffff; 
}

.badge-pill-custom {
    background-color: #e6f4ea;
    color: #16a249;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


#testimonial .section-title {
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (min-width: 1600px) {
    #testimonial .section-title {
        font-size: 3.5rem;
    }

    #testimonial .section-subtitle {
        font-size: 1.3rem !important;
    }
}

#testimonial .section-subtitle {
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-color: #16a249;
    }

.star-rating {
    color: #fbbf24; 
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}


.quote-text {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 0rem;
    line-height: 1.7;
    font-weight: 400;
    flex-grow: 1;
}

@media (min-width: 1600px) {
    .quote-text {
        font-size: 1.25rem;
    }
}


.user-profile {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    background-color: #f0fdf4;
    color: #16a249;
    border: 2px solid #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1rem;
}

.user-info h6 {
    margin: 0;
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: #6b7280;
}

/************** FAQ Section *************/


@media (min-width: 1600px) {
    #faq .container {
        max-width: 90% !important;
    }
}

@media (min-width: 2000px) {
    #faq .container {
        max-width: 1440px !important;
    }
}


#faq {
    padding: 100px 0;
    background-color: #ffffff;
}

.badge-pill-faq {
    background-color: #e6f4ea;
    color: #16a249;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.faq-title {
    font-weight: 800;
    color: #111827;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.faq-text {
    color: #6b7280;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

@media (min-width: 1600px) {
    .faq-title {
        font-size: 3.5rem;
    }

    .faq-text {
        font-size: 1.3rem;
    }

    .accordion-button {
        font-size: 1.25rem !important;
    }

    .accordion-body {
        font-size: 1.1rem;
    }
}


.accordion-item {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 8px;
}

.accordion-button {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    padding: 1.5rem 1rem;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}

    .accordion-button:not(.collapsed) {
        color: #16a249;
        background-color: #f0fdf4 !important; 
        border-radius: 12px;
    }

    .accordion-button::after {
/*        background-size: 1rem;*/
        transition: transform 0.3s ease;
    }

.accordion-body {
    padding: 1rem 1.5rem 2rem 1rem;
    color: #6b7280;
    line-height: 1.8;
}


.btn-contact {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

    .btn-contact:hover {
        background-color: #f9fafb;
        border-color: #16a249;
        color: #16a249;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 162, 73, 0.1);
    }

/******************* Contact Section ********************/

@media (min-width: 1600px) {
    #contact .container {
        max-width: 90% !important;
    }
}

@media (min-width: 2000px) {
    #contact .container {
        max-width: 1440px !important;
    }
}


.cta-section {
    background: linear-gradient(135deg, #16a249 0%, #11833b 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.cta-title {
    font-weight: 800;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 3rem auto;
    opacity: 0.95;
    line-height: 1.6;
}


@media (min-width: 1600px) {
    .cta-title {
        font-size: 4rem;
    }

    .cta-subtitle {
        font-size: 1.5rem;
        max-width: 900px;
    }
}


.cta-form-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.cta-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px; 
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
}

    .cta-input::placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

    .cta-input:focus {
        background-color: rgba(255, 255, 255, 0.25);
        border-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    }

.btn-cta {
    background-color: #ffffff;
    color: #11833b;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        background-color: #f8f9fa;
        color: #11833b;
    }

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}


@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-form-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn-cta {
        justify-content: center;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}