/* Custom CSS for Grofie Website */

/* Grofie Logo-Based Color Palette */
:root {
    /* Primary Greens from Logo */
    --logo-primary: #1a411d;          /* Main logo dark green */
    --logo-medium: #3e7042;           /* Medium green from logo */
    --logo-light: #6a9c6d;            /* Lighter logo green */

    /* Extended Brand Palette */
    --primary-green: #1a411d;         /* Main brand color */
    --secondary-green: #3e7042;       /* Secondary brand */
    --accent-green: #6a9c6d;          /* Accent color */
    --light-green: #6BA840;           /* Light interactions */
    --soft-green: #8BC34A;            /* Soft highlights */
    --pale-green: #E8F5E8;            /* Very light backgrounds */

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #828a97;
    --ultra-light-gray: #bebec5;
    --medium-gray: #E1E8ED;
    --text-gray: #4A5568;
    --dark-gray: #2D3748;
    --black: #1A202C;
    --border-light: rgba(43, 79, 26, 0.1);
    --border-medium: rgba(43, 79, 26, 0.2);
}

/* Global Styles */
body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--black);
}

.display-4 {
    font-weight: 700;
}

.display-5 {
    font-weight: 600;
}

/* Custom Utility Classes */
.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--border-medium);
}

.btn-success {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-outline-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
}

.text-light-green {
    color: var(--light-green) !important;
}

/* Ultra Modern Minimal Navigation */
.navbar {
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: none;
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
    transition: opacity 0.3s ease;
    font-weight: 600;
    color: var(--primary-green) !important;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 70px;
}

.navbar-brand:hover {
    opacity: 0.8;
    color: var(--primary-green) !important;
}

.navbar-nav {
    align-items: center;
    gap: 0.2rem;
}

.nav-link {
    font-weight: 400;
    color: var(--text-gray) !important;
    padding: 0.4rem 0.8rem !important;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.875rem;
    letter-spacing: 0px;
}

.nav-link::after,
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
    box-shadow: 0 2px 8px rgba(43, 79, 26, 0.3);
    border: none;
}

.nav-link.active {
    color: var(--primary-green) !important;
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

/* Dropdown toggle styles removed */
.dropdown-menu.show {
    display: flex;
}

/* Ha hoverrel nyitod, adj neki nagyobb specifikációt */
.dropdown:hover > .dropdown-menu {
    display: flex;      /* fontos! felülírja a Bootstrapet */
    height: auto;
    overflow: visible;
}
/* Bootstrap dropdown-item override-ok */
.dropdown-menu {
    /* Színek és padding változók felülírása */
    --bs-dropdown-link-color: var(--text-gray);
    --bs-dropdown-link-hover-color: var(--text-gray);
    --bs-dropdown-link-hover-bg: rgba(0,0,0,0.04);  /* finom hover */
    --bs-dropdown-link-active-bg: rgba(0,0,0,0.06); /* finom active */
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: .4rem;
}

/* Általános megjelenés */
.dropdown-item {
    background: transparent;         /* ne legyen alap kék */
    -webkit-tap-highlight-color: transparent; /* mobilon se villanjon kék */
    position: relative;
}

/* Hover */
.dropdown-item:hover {
    background: var(--bs-dropdown-link-hover-bg);
    color: var(--bs-dropdown-link-hover-color);
}

/* Active / .active */
.dropdown-item:active,
.dropdown-item.active {
    background: var(--bs-dropdown-link-active-bg) !important;
    color: var(--bs-dropdown-link-hover-color);
}

/* Fókusz – hozzáférhető, de nem rondít */
.dropdown-item:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    background: transparent; /* ne kékeljen fókusznál sem */
}

/* Ha bárhonnan nagyon erős specifikáció jönne: */
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item:active {
    background: var(--bs-dropdown-link-active-bg) !important;
    color: var(--bs-dropdown-link-hover-color) !important;
}


/* A többi maradhat */
.dropdown-menu {
    display: flex;              /* alapból is flex (zárt állapotban mindegy) */
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 600px;               /* legyen elég hely két oszlophoz */
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    background: var(--white);
    height: 0;
    overflow: hidden;
}

.dropdown-menu > li {
    flex: 0 0 50%;
    box-sizing: border-box;
    max-width: 300px;
}

.dropdown-item {
    display: flex;                /* flex, nem block */
    align-items: flex-start;      /* ikon és szöveg teteje egy vonalban */
    gap: 0.5rem;                  /* távolság ikon és szöveg között */
    padding: 0.4rem 1rem;
    font: 400 0.875rem/1.4 inherit;
    color: var(--text-gray);
    transition: all 0.2s ease;
    font-size: .875rem;
    text-decoration: none;        /* ha link, ne legyen aláhúzás */
}

.dropdown-item i {
    flex: 0 0 auto;               /* ikon fix méret */
    font-size: 1rem;              /* opcionális: ikont méretezheted */
    margin-top: 0.1rem;           /* kicsi igazítás a szöveghez */
    /* keret-stílus */
    background: rgba(0,0,0,0.05);      /* halvány háttér */
    border: 1px solid rgba(0,0,0,0.1); /* vékony keret */
    border-radius: 6px;                /* lekerekített sarkak */
    padding: 0.4rem;                   /* hogy négyzet legyen */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;                       /* fix méret, hogy mindig kocka legyen */
    height: 2rem;
}

.dropdown-item .text-holder {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;             /* fontos! hogy a flexboxban törhessen */
}

.dropdown-item .title {
    font-weight: 600;
    margin-bottom: 0 !important;
}

.dropdown-item .desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
    white-space: normal;      /* törhessen több sorba */
    word-break: break-word;   /* ha túl hosszú szó, akkor is törjön */
    font-weight: 400;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        top: 32px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 9999;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 5rem 2rem 2rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        display: block;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 100%;
        align-items: center;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        list-style: none;
    }

    /* Hide the original dropdown structure for mobile */
    .nav-item.dropdown {
        display: none !important;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: center;
    }

    .nav-link {
        padding: 1.2rem 0;
        color: var(--text-gray) !important;
        font-weight: 400;
        width: 100%;
        border-bottom: none !important;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        position: relative;
        text-align: center;
        letter-spacing: 0.3px;
        display: block;
        text-decoration: none;
    }

    .nav-link:hover {
        color: var(--primary-green) !important;
        text-decoration: none;
    }

    .nav-link.active {
        color: var(--primary-green) !important;
        font-weight: 700;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Mobile solutions section - displayed flat */
    .mobile-solutions {
        width: 100%;
        display: block;
        text-align: center;
    }

    .mobile-solutions-title {
        color: var(--text-gray) !important;
        font-weight: 400;
        width: 100%;
        border-bottom: none !important;
        transition: all 0.3s
        ease;
        font-size: 1.3rem;
        position: relative;
        text-align: center;
        letter-spacing: 0.3px;
        display: block;
        text-decoration: none;
        margin-bottom: .5rem;
    }

    .mobile-solution-item {
        display: block;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 400;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: .25rem 0 !important;
    }

    .mobile-solution-item:hover {
        color: var(--primary-green);
        text-decoration: none;
    }

    .mobile-solution-item.active {
        color: var(--primary-green);
        font-weight: 700;
    }

    /* Mobile navbar toggler improvements */
    .navbar-toggler {
        border: none;
        border-radius: 8px;
        padding: 0.6rem;
        transition: all 0.3s ease;
        background: transparent;
        position: relative;
        z-index: 10000;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background: rgba(43, 79, 26, 0.05);
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2843, 79, 26, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }

    /* Transform to X when menu is open */
    .navbar-collapse.show ~ .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2843, 79, 26, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }

    .navbar-collapse.show ~ .navbar-toggler {
        position: fixed;
        top: 2rem;
        right: 2rem;
        z-index: 10001;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(43, 79, 26, 0.2);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    /* Smooth entrance animation */
    .navbar-collapse.show .nav-item {
        animation: fadeInUp 0.4s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .navbar-collapse.show .mobile-solutions {
        animation: fadeInUp 0.4s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
        animation-delay: 0.3s;
    }

    .navbar-collapse.show .mobile-solution-item {
        animation: fadeInUp 0.3s ease-out forwards;
        opacity: 0;
        transform: translateY(10px);
    }

    .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.5s; }
    .navbar-collapse.show .nav-item:nth-child(7) { animation-delay: 0.55s; }
    .navbar-collapse.show .nav-item:nth-child(8) { animation-delay: 0.6s; }

    .navbar-collapse.show .mobile-solution-item:nth-child(2) { animation-delay: 0.35s; }
    .navbar-collapse.show .mobile-solution-item:nth-child(3) { animation-delay: 0.4s; }
    .navbar-collapse.show .mobile-solution-item:nth-child(4) { animation-delay: 0.45s; }
    .navbar-collapse.show .mobile-solution-item:nth-child(5) { animation-delay: 0.5s; }
    .navbar-collapse.show .mobile-solution-item:nth-child(6) { animation-delay: 0.55s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Minimal CTA Button */
.nav-cta {
    margin-left: 0.5rem;
}

.btn-nav-cta {
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-nav-cta:hover {
    background-color: transparent;
    color: var(--primary-green);
    box-shadow: none;
}

/* New Modern Hero Section */
.hero-section-modern {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-plant {
    position: absolute;
    color: var(--pale-green);
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-plant-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-plant-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-plant-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.hero-row {
    position: relative;
    z-index: 2;
}

.hero-content-modern {
    padding: 2rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

@media (min-width: 991.98px) {
    .section-badge {
        padding: 0.5rem .25rem;
    }
}

.section-badge .right-side {
    text-align: right;
}

/* Hero Badge for large hero */

.hero-title-modern {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

.hero-title-main {
    display: block;
    color: var(--primary-green);
}

.hero-title-accent {
    display: block;
    color: var(--accent-green);
    font-weight: 400;
    font-size: 0.7em;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-description-modern {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    color: var(--text-gray);
    gap: 0.5rem;
}

.feature-item h6 {
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

.feature-item small {
    line-height: 1.4;
}

.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary-modern {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(43, 79, 26, 0.3);
}

.btn-hero-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 79, 26, 0.4);
    color: white;
}

.btn-hero-outline-modern {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-outline-modern:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 79, 26, 0.3);
}

.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.hero-image-stack {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: white;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(43, 79, 26, 0.1) 100%);
    z-index: 1;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: cardFloat1 10s ease-in-out infinite;
}

.hero-card-2 {
    top: 80px;
    right: 0;
    z-index: 2;
    animation: cardFloat2 10s ease-in-out infinite 2s;
}

.hero-card-3 {
    bottom: 30px;
    left: 50px;
    z-index: 1;
    animation: cardFloat3 10s ease-in-out infinite 4s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.card-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.card-content p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
}

.hero-stats-floating {
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.read-more-buttons {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-buttons:hover {
    color: var(--dark-gray);
}

.hero-image-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.hero-image-2 {
    grid-column: 2;
    grid-row: 1;
}

.hero-image-3 {
    grid-column: 2;
    grid-row: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(43, 79, 26, 0.9) 0%,
        rgba(59, 102, 37, 0.85) 30%,
        rgba(77, 127, 48, 0.8) 70%,
        rgba(107, 168, 64, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    color: white;
}

.hero-title-accent {
    display: block;
    color: var(--light-green);
    font-weight: 300;
    font-size: 0.7em;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.stat-item {
    text-align: right;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.min-vh-90 {
    min-height: 90vh;
}

/* Hero hover effects */
.hero-section:hover .hero-image img {
    transform: scale(1.05);
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Hero variants for different pages - using logo-based colors */
.hero-section.office-plants {
    background: linear-gradient(135deg, rgba(43, 79, 26, 0.8) 0%, rgba(59, 102, 37, 0.7) 100%), url('../assets/office-plants-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.workspace-modern {
    background: linear-gradient(135deg, rgba(43, 79, 26, 0.8) 0%, rgba(77, 127, 48, 0.7) 100%), url('../assets/office-workspace-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.furniture-integrated {
    background: linear-gradient(135deg, rgba(59, 102, 37, 0.8) 0%, rgba(77, 127, 48, 0.7) 100%), url('../assets/office-plants-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.vertical-plants {
    background: linear-gradient(135deg, rgba(43, 79, 26, 0.8) 0%, rgba(107, 168, 64, 0.6) 100%), url('../assets/office-plants-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.modern-office {
    background: linear-gradient(135deg, rgba(77, 127, 48, 0.8) 0%, rgba(107, 168, 64, 0.7) 100%), url('../assets/office-workspace-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-gradient-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 50%, var(--light-green) 100%);
}

/* Color Palette Demo */
.color-palette {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.color-swatch.primary { background-color: var(--primary-green); }
.color-swatch.secondary { background-color: var(--secondary-green); }
.color-swatch.accent { background-color: var(--accent-green); }
.color-swatch.light { background-color: var(--light-green); }
.color-swatch.soft { background-color: var(--soft-green); }
.color-swatch.pale { background-color: var(--pale-green); color: var(--primary-green); text-shadow: none; }

/* Image and Gallery Styles */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--border-light);
    transition: all 0.3s ease;
    min-height: 400px;
    position: relative;
    background-size: auto 100%;
    background-position: center;
}

.gallery-card-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 80%,  rgba(0, 0, 0, 0.7) 100%);
}

.gallery-card h6 {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.4rem;
}

.gallery-card:hover {
    background-size: auto 110%;
    box-shadow: 0 10px 30px var(--border-medium);
}

.image-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--border-light);
    transition: all 0.3s ease;
}

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

.gallery-card img,
.image-card img {
    transition: transform 0.3s ease;
}

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

.min-vh-75 {
    min-height: 75vh;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Card Styles */
.card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green) !important;
}

.icon-box {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(45, 80, 22, 0.1);
}

/* EILO Badge */
.eilo-badge {
    transition: all 0.3s ease;
}

.eilo-badge:hover {
    transform: scale(1.05);
}

/* EILO Parallax Section */
.eilo-parallax-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.eilo-parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: url('../assets/office-workspace-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    z-index: 1;
}

.eilo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%,  rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.eilo-parallax-section .container {
    z-index: 3;
}

/* Mobile Parallax Adjustments */
@media (max-width: 768px) {
    .eilo-parallax-bg {
        background-attachment: scroll;
    }
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--border-gray);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Section Styles */
section {
    position: relative;
}

/* Footer Styles */
footer {
    background-color: var(--black) !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-green) !important;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-section .col-lg-4 {
        margin-top: 2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Modern Service Cards */
.modern-service-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-light) !important;
    background: white;
    position: relative;
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green) !important;
}

.modern-service-card:hover::before {
    transform: scaleX(1);
}

/* Statistical Service Cards */
.stat-service-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-light) !important;
    background: white;
    position: relative;
    overflow: hidden;
}

.stat-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green) !important;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--pale-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.stat-icon-wrapper-minimal {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 58px;
}

.stat-icon-wrapper-minimal i {
    font-size: 10rem;
    color: rgba(166, 166, 170, 0.23);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.stat-source {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.service-icon-modern {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-features {
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.maintenance-types {
    margin-top: 1rem;
}

.maintenance-type {
    padding: 0.75rem;
    background: var(--pale-green);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

/* Custom Shadows */
.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Border Radius Utilities */
.rounded-custom {
    border-radius: 15px;
}

.rounded-pill-custom {
    border-radius: 25px;
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Modern Hero Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-section-modern {
        padding: .5rem 0 1rem;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content-modern {
        text-align: left;
        padding: 1rem 0 .5rem;
    }

    .hero-visual {
        padding: 0;
    }

    .hero-features {
        align-items: center;
        margin: 0 auto;
    }

    .hero-buttons-modern {
        justify-content: center;
    }

    .hero-image-stack {
        height: 400px;
        margin-top: .5rem;
    }

    .hero-card {
        width: 220px;
        height: 160px;
    }

    .hero-card-1 {
        left: 70px;
    }

    .hero-card-2 {
        right: 20px;
    }

    .hero-card-3 {
        left: 40px;
    }

    .hero-stats-floating {
        position: static;
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        transform: none;
    }

    .stat-bubble {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
    }

    .floating-plant {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary-modern,
    .btn-hero-outline-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-image-stack {
        height: 300px;
    }

    .hero-card {
        width: 180px;
        height: 130px;
    }
}

/* Responsive Hero adjustments */
@media (max-width: 991.98px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
    }

    .stat-item {
        text-align: center;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

    .hero-image-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-image-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-image-3 {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 767.98px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
        justify-content: center;
    }
}

/* Hero Carousel Section */
.hero-carousel-section {
    padding: 2rem 0;
    background-color: white;
}

.hero-carousel-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: white;
    transition: box-shadow 0.5s ease;
}

.hero-carousel-container:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: subtleZoom 15s ease-in-out infinite;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.carousel-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    color: white;
}

.title-accent {
    font-family: "Montserrat", sans-serif;
    display: block;
    color: white;
    font-weight: 300;
    font-size: 0.7em;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@keyframes subtleZoom {
    0%, 100% {
        background-size: 105%;
    }
    50% {
        background-size: 110%;
    }
}

/* Mobile responsiveness for hero carousel */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 50vh;
    }

    .hero-carousel-container {
        max-height: 50vh;
    }

    .carousel-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

@media (max-width: 991.98px) {
    @keyframes subtleZoom {
        0%, 100% {
            background-size: auto 105%;
        }
        50% {
            background-size: auto 110%;
        }
    }
}

/* Professional Footer Styles */
.footer-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
}

.footer-main {
    padding: 4rem 0 2rem 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-badges {
    margin-top: 1rem;
}

.eilo-mini-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--light-green);
    width: 18px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive footer */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


.partners-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

/* Contact Page Hero Enhancements */
.hover-opacity-100:hover {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.hero-badge .badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-quick-info a:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Enhanced button styling for contact page */
.btn-light.btn-lg {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-light.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for contact hero */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll !important;
        min-height: 50vh;
    }

    .contact-quick-info {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* Modern Contact Form Styling */
.modern-contact-form {
    position: relative;
    margin: 2rem 0;
}

.contact-form-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.form-bg-decoration {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.form-bg-decoration::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0.8;
}

.form-header {
    position: relative;
    z-index: 2;
}

.form-icon .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(43, 79, 26, 0.3);
}

.form-icon .icon-circle i {
    font-size: 2rem;
    color: white;
}

.modern-form {
    position: relative;
    z-index: 2;
}

.modern-input {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-input:focus {
    border-color: var(--primary-green);
    box-shadow:
        0 0 0 3px rgba(43, 79, 26, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-floating > label {
    font-weight: 600;
    color: #6c757d;
    padding: 0.75rem 1.25rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-green);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.modern-checkbox {
    position: relative;
    padding-left: 2rem;
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.modern-checkbox .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modern-checkbox input:checked ~ label .checkmark {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.modern-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.modern-checkbox input:checked ~ label .checkmark:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modern-checkbox label {
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    line-height: 1.6;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    border-radius: 16px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 20px rgba(43, 79, 26, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(43, 79, 26, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
}

.btn-modern-primary:active {
    transform: translateY(-1px);
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .form-icon .icon-circle {
        width: 60px;
        height: 60px;
    }

    .form-icon .icon-circle i {
        font-size: 1.5rem;
    }

    .btn-modern-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Focus States for Accessibility */
.modern-input:focus,
.btn-modern-primary:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-modern-primary .fa-spinner {
    animation: buttonSpin 1s linear infinite;
}

/* Feature Cards and Icons */
.modern-feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 8px 30px rgba(26, 65, 29, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pale-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.modern-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    transform: scale(1.1);
}

.modern-feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list li i {
    font-size: 0.9rem;
}

/* Service Badge */
.service-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(26, 65, 29, 0.2);
}

.service-badge i {
    font-size: 1rem;
}

/* Link Styling for Feature Cards */
a.text-decoration-none:hover {
    text-decoration: none !important;
}

a.text-decoration-none .modern-feature-card h4 {
    color: var(--black);
    transition: color 0.3s ease;
}

a.text-decoration-none:hover .modern-feature-card h4 {
    color: var(--primary-green);
}

/* Modern Gallery Carousel Styles */
.gallery-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
}

.gallery-carousel:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.gallery-slider-image {
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 8s ease;
}

.gallery-carousel .carousel-item.active .gallery-slider-image {
    animation: subtleImageZoom 15s ease-in-out infinite;
}

@keyframes subtleImageZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Ultra-Minimal Carousel Controls */
.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.gallery-carousel:hover .carousel-control-prev,
.gallery-carousel:hover .carousel-control-next {
    opacity: 0.9;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.gallery-carousel .carousel-control-prev {
    left: 10px;
}

.gallery-carousel .carousel-control-next {
    right: 10px;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel .carousel-control-prev-icon::before {
    content: '‹';
    font-size: 28px;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-carousel .carousel-control-next-icon::before {
    content: '›';
    font-size: 28px;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Modern Carousel Indicators (Dots) */
.gallery-carousel .carousel-indicators {
    bottom: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.gallery-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1;
    margin: 0;
    text-indent: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-indicators .active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-carousel .carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Fixed Gallery Project Info - Outside Carousel */
.gallery-project-info {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.gallery-project-title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.gallery-project-subtitle {
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-slider-image {
        height: 350px;
    }

    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 1;
        visibility: visible;
    }

    .gallery-carousel .carousel-control-prev {
        left: 15px;
    }

    .gallery-carousel .carousel-control-next {
        right: 15px;
    }

    .gallery-project-title {
        font-size: 1.8rem;
    }

    .gallery-project-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-slider-image {
        height: 280px;
    }

    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .gallery-carousel .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
    }

    .gallery-project-title {
        font-size: 1.6rem;
    }

    .gallery-project-subtitle {
        font-size: 0.95rem;
    }
}

/* Parallax Hero Sections for Solution Pages */
.parallax-hero {
    position: relative;
    height: 30vh;
    min-height: 500px;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-content .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.parallax-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parallax-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.parallax-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Specific parallax backgrounds */
.parallax-kaspos {
    background-image: url('../assets/hero-lobby-planters.webp');
}

.parallax-butor {
    background-image: url('../assets/hero-office-integrated-plants.jpg');
}

.parallax-vertikalis {
    background-image: url('../assets/hero-vertical-green-wall.webp');
}

.parallax-kulteri {
    background-image: url('../assets/hero-green-office.jpeg');
}

.parallax-alternativ {
    background-image: url('../assets/hero-ceiling-green-wall.jpg');
}

/* Mobile parallax adjustments */
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        height: 50vh;
        min-height: 400px;
    }

    .parallax-content h1 {
        font-size: 2.2rem;
    }

    .parallax-content .lead {
        font-size: 1.1rem;
    }
}

/* Content section after parallax */
.solution-content {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: 3;
}

.partner-slide {
    padding: 0;
}

.splide__slide {
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        filter: grayscale(100%);
        transition: all 0.3s ease;
        cursor: pointer;

        &:hover {
            filter: grayscale(0%);
        }
    }
}

.map-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
}

.partner-slide li ul img {
    width: 80%;
}

.footer-logo {
    width: 50px;
}

.gallery-carousel-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    background: #eaeaea;

    @media (max-width: 768px) {
        height: 400px;
    }
}



