/* ===================== GLOBAL STYLES ===================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

:root {
    --primary-green: #B8D74A;
    --primary-green-dark: #9BBF2F;
    --dark-bg: #000000;
    --dark-green-bg: #0a1f0a;
    --darker-green: #051508;
    --text-light: #ffffff;
    --text-muted: #cccccc;
}

.text-green {
    color: var(--primary-green);
}

.text-green-light {
    color: var(--primary-green);
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 14px;
}

.text-white {
    color: #ffffff !important;
}

/* ===================== NAVIGATION ===================== */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-brand img {
    height: 45px;
}

.custom-navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--primary-green) !important;
}

.custom-navbar .nav-link.active {
    border-bottom: 2px solid var(--primary-green);
}

.btn-primary-custom {
    background-color: var(--primary-green);
    color: #000000;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-green-dark);
    color: #000000;
    transform: translateY(-2px);
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #051508 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 50px;
    color: #ffffff;
    text-transform: none;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.feature-icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary-green);
    font-size: 22px;
}

.hero-image {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===================== FLAVORS SECTION ===================== */
.flavors-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-green);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title .leaf-decor {
    color: var(--primary-green);
    margin: 0 15px;
    font-size: 20px;
}

.flavors-row {
    margin-top: 40px;
}

/* ===== Flavors Slider ===== */
.flavors-slider {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    padding: 0 50px;
}

.flavors-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.flavor-item {
    flex: 0 0 calc(100% / 5);
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
    border-right: 1px solid rgba(184, 215, 74, 0.2);
}

.flavor-item:last-child {
    border-right: none;
}

.flavor-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.flavor-img:hover {
    transform: scale(1.1);
}

.flavor-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Slider Arrows */
.flavors-prev,
.flavors-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--primary-green);
    background: rgba(0, 0, 0, 0.6);
    color: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 3;
    transition: all 0.3s ease;
    padding: 0;
}

.flavors-prev:hover,
.flavors-next:hover {
    background: var(--primary-green);
    color: #000;
}

.flavors-prev {
    left: 0;
}

.flavors-next {
    right: 0;
}

.flavors-prev:disabled,
.flavors-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.carousel-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #444;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary-green);
    width: 24px;
    border-radius: 4px;
}

/* Slider Responsive */
@media (max-width: 1199px) {
    .flavor-item {
        flex: 0 0 calc(100% / 4);
    }
}

@media (max-width: 991px) {
    .flavor-item {
        flex: 0 0 calc(100% / 3);
    }
}

@media (max-width: 767px) {
    .flavors-slider {
        padding: 0;
    }
    .flavor-item {
        flex: 0 0 100%;
        padding: 20px 10px;
        border-right: none;
    }
    .flavor-img {
        width: 160px;
        height: 160px;
    }
    .flavor-name {
        font-size: 15px;
    }
    .flavors-prev,
    .flavors-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
    }
    .flavors-prev {
        left: 10px;
    }
    .flavors-next {
        right: 10px;
    }
}

/* ===================== TECHNOLOGY SECTION ===================== */
.technology-section {
    background-color: var(--dark-green-bg);
    padding: 80px 0;
}

.section-subtitle {
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tech-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px;
}

.tech-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.tech-icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary-green);
    font-size: 22px;
}

/* ===================== BUSINESS OPPORTUNITIES ===================== */
.business-section {
    background-color: var(--darker-green);
    padding: 80px 0;
    background-image: radial-gradient(circle at top left, rgba(184, 215, 74, 0.05), transparent 50%);
}

.section-subtitle-light {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.business-card {
    background-color: rgba(20, 40, 20, 0.6);
    border: 1px solid rgba(184, 215, 74, 0.2);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.business-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(184, 215, 74, 0.15);
}

.business-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.business-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.business-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.business-arrow {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.business-arrow:hover {
    background-color: var(--primary-green);
    color: #000000;
}

/* ===================== WHY CHOOSE SECTION ===================== */
.why-choose-section {
    background-color: var(--darker-green);
    padding: 60px 0;
}

.why-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    color: #ffffff;
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list li i {
    color: var(--primary-green);
    font-size: 14px;
}

.stat-card {
    background-color: rgba(20, 40, 20, 0.4);
    border: 1px solid rgba(184, 215, 74, 0.2);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.stat-icon {
    color: var(--primary-green);
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-number {
    color: var(--primary-green);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

/* ===================== GALLERY SECTION ===================== */
.gallery-section {
    background-color: var(--dark-bg);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background-color: var(--darker-green);
    padding: 50px 0;
    border-top: 1px solid rgba(184, 215, 74, 0.1);
}

.cta-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-text {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ===================== FOOTER ===================== */
.footer-section {
    background-color: #000000;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 50px;
}

.footer-about {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.footer-list li::before {
    content: '›';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50% !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1;
    overflow: hidden;
    padding: 0;
}

.social-icons a i {
    line-height: 1;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: #000000;
    transform: translateY(-2px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-green);
    font-size: 16px;
}

.footer-contact li a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(184, 215, 74, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .script-text {
        font-size: 36px;
    }

    .tech-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 26px;
    }

    .hero-features {
        gap: 20px;
        justify-content: center;
    }

    .tech-features {
        gap: 20px;
        justify-content: center;
    }

    .custom-navbar .navbar-collapse {
        background-color: #000;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .flavors-row {
        flex-wrap: wrap;
    }

    .flavor-item {
        flex: 0 0 33.33%;
        margin-bottom: 30px;
        border-right: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-features {
        justify-content: center;
    }

    .tech-features {
        justify-content: center;
    }

    .flavor-item {
        flex: 0 0 50%;
    }

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

    .cta-section .col-lg-3.text-end {
        text-align: center !important;
        margin-top: 20px;
    }

    .gallery-img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }

    .script-text {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .tech-title {
        font-size: 26px;
    }

    .flavor-item {
        flex: 0 0 100%;
    }
}
