/* common css start */

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    min-height: 100vh;
}

/* Mobile scroll fix */
@media (max-width: 991px) {
    html {
        height: auto;
        min-height: 100%;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    /* Prevent Google Translate from affecting layout */
    body.translated-ltr,
    body.translated-rtl {
        top: 0 !important;
        position: relative !important;
    }
    .skiptranslate {
        height: 0 !important;
        overflow: hidden !important;
    }
}

h2 {
    font-weight: 700;
    font-size: 2.2rem;
}

@media only screen and (max-width:767px) {
    h2 {
        font-size: 1.5rem;
    }
    h3{
        font-size: 1.3rem;
        font-weight: 500;
    }
}

.error {
    color: #dc3545;
}

.ul-list {
    list-style: none;
    padding: 0;
}

.ant-pagination-item {
    font-size: 26px
}

.ant-pagination .ant-pagination-next .ant-pagination-item-link,
.ant-pagination .ant-pagination-prev .ant-pagination-item-link {
    font-size: 22px !important;
    color: green !important;
    font-weight: 700
}

.ant-pagination .ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination .ant-pagination-disabled:hover .ant-pagination-item-link {
    color: rgba(0, 100, 0, .25) !important
}

.ant-pagination .ant-pagination-item-active a {
    color: green !important
}

.ant-pagination .ant-pagination-item-active {
    border-color: green !important
}

.ant-pagination .ant-pagination-item a {
    color: #006400 !important
}

header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1a1f25 0%, #2d3436 50%, #3d4450 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.5), transparent);
}

header .navbar {
    padding: 0;
}

/* Desktop Header Utility Bar - DESKTOP ONLY */
.desktop-header-bar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Only show on desktop screens 992px and above */
@media (min-width: 992px) {
    .desktop-header-bar {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
        background: linear-gradient(90deg, #228B22 0%, #2d8a2d 100%);
        padding: 8px 0 !important;
        font-size: 14px;
    }
}

/* Explicit mobile hide for all screens under 992px */
@media (max-width: 991.98px) {
    .desktop-header-bar,
    .desktop-header-bar * {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
}

.desktop-header-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-header-bar-left {
    display: flex;
    gap: 25px;
    color: white;
}

.desktop-header-bar-left a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}

.desktop-header-bar-left a:hover {
    opacity: 0.85;
}

.desktop-header-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.header-trust-badge svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/* Desktop Nav Links Styling */
@media (min-width: 992px) {
    header .navbar {
        padding: 0 10px;
    }
    
    .navbar-nav a.nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.2px;
        padding: 28px 8px !important;
        position: relative;
        transition: all 0.3s ease;
        text-transform: uppercase;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    /* Nav icons in main menu */
    .nav-icon {
        width: 16px;
        height: 16px;
        fill: rgba(255,255,255,0.7);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .navbar-nav a.nav-link:hover .nav-icon {
        fill: #32CD32;
    }
    
    .navbar-nav a.nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #228B22, #32CD32);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .navbar-nav a.nav-link:hover {
        color: #fff !important;
    }
    
    .navbar-nav a.nav-link:hover::after {
        width: 60%;
    }
    
    /* Dropdown menu styling - Premium Design */
    .nav-item.dropdown ul.dropdown-menu {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        border: none;
        border-radius: 12px;
        padding: 6px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 0;
        min-width: 240px;
        overflow: hidden;
    }
    
    .nav-item.dropdown ul.dropdown-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #228B22, #32CD32, #228B22);
    }
    
    .nav-item.dropdown ul.dropdown-menu li {
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .nav-item.dropdown ul.dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-item.dropdown ul.dropdown-menu li a {
        color: #2d3436 !important;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        border-radius: 4px;
        margin: 0 4px;
        text-decoration: none;
    }
    
    /* Dropdown icons */
    .dropdown-icon {
        width: 18px;
        height: 18px;
        fill: #228B22;
        flex-shrink: 0;
        transition: all 0.3s ease;
        opacity: 0.8;
    }
    
    .nav-item.dropdown ul.dropdown-menu li a:hover {
        background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(50, 205, 50, 0.15) 100%);
        color: #228B22 !important;
        transform: translateX(4px);
    }
    
    .nav-item.dropdown ul.dropdown-menu li a:hover .dropdown-icon {
        fill: #228B22;
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Hide desktop nav icons on mobile */
@media (max-width: 991px) {
    .nav-icon {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }
    
    .nav-link svg.nav-icon {
        display: none !important;
    }
    
    .dropdown-icon {
        width: 18px;
        height: 18px;
        fill: #228B22;
    }
    
    /* Header logo styling */
    .nav-item.header-logo img {
        filter: drop-shadow(0 0 20px rgba(34, 139, 34, 0.3));
        transition: all 0.3s ease;
    }
    
    .nav-item.header-logo:hover img {
        filter: drop-shadow(0 0 30px rgba(34, 139, 34, 0.5));
        transform: scale(1.02);
    }
    
}

.hero-bg-overlay {
    background-color: rgba(0, 0, 0, .473);
    z-index: 1;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: end;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.bg-white {
    background: #ffffff;
}

.bg-alabaster {
    background-color: rgb(234, 239, 228);
}

.footer-inner-shadow {
    box-shadow: inset 0 1px 15px #b5b5b5
}

.footer-image-style {
    display: flex;
    justify-content: center;
    gap: 20px 30px
}

.footer-image-style img {
    width: 80px;
    height: 75.06px
}

@media only screen and (max-width:600px) {
    .footer-image-style {
        display: flex;
        flex-wrap: wrap
    }
}

.navigation-style {
    display: flex;
    align-items: center;
    justify-content: center
}

.navigation-style .heade-button-style {
    position: relative;
    background-color: transparent;
    color: #2b2b2b;
    border-radius: 2px;
    margin: 5px;
    text-decoration: none;
    border: 1px solid #272727;
    padding: 12px 30px;
    transition: .5s;
    z-index: 1
}

.navigation-style .heade-button-style:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 1px;
    background-color: transparent;
    transform: scale(0);
    transition: .5s;
    z-index: -1
}

.navigation-style .heade-button-style:hover:after {
    background-color: #363636;
    transform: scale(1)
}

.navigation-style .heade-button-style:hover {
    color: #fff
}

.navigation-style a {
    font-family: Noto Sans, sans-serif;
    justify-items: center;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    color: #1b1b1b
}

.mobile-navigation {
    display: flex !important;
    justify-content: space-between;
    align-items: center
}

.mobile-navigation .btn {
    padding: 0;
}

.mobile-navigation .btn .anticon-menu {
    line-height: 0;
}

.mobile-menu-nav-link a {
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 15px
}

.mobile-navigation .mobile-menu-innerdiv a img,
.mobile_navigation .mobile_menu_innerdiv a img {
    width: 180px;
    height: 69px
}

.mobile-navigation,
.mobile_navigation {
    height: 85px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2d3436 0%, #4a5568 100%);
}

@media only screen and (max-width:768px) {
    .mobile-navigation .mobile-menu-innerdiv a img,
    .mobile_navigation .mobile_menu_innerdiv a img {
        width: 132px;
        height: 69px
    }

    .mobile-navigation,
    .mobile_navigation {
        height: 85px
    }
}

.hero-section {
    position: relative;
    min-height: 500px
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 560px;
    }
}

.hero-section .hero-bg-image {
    color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section-common {
    position: relative;
}

.hero-section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px rgba(44, 44, 44, .205)
}

.hero-section-shop-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0 40px
}

.hero-section-shop-button {
    position: relative;
    background-color: transparent;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    margin: 5px;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 30px;
    transition: .5s;
    z-index: 1
}

.hero-section-shop-button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    background-color: transparent;
    transform: scale(0);
    transition: .5s;
    z-index: -1
}

.hero-section-shop-button:hover:after {
    background-color: #fff;
    transform: scale(1)
}

.hero-section-shop-button:hover {
    color: #000
}

@media only screen and (max-width:768px) {
    .hero-section-title {
        font-size: 2.2rem
    }

    .hero-section-shop-button {
        font-size: 18px;
        font-weight: 700;
        padding: 6px 20px
    }
}

@media only screen and (max-width:462px) {
    .hero-section-title {
        font-size: 1.8rem
    }

    .hero-section-shop-button-container {
        display: block
    }

    .hero-section-shop-button {
        display: block;
        text-align: center
    }
}

@media only screen and (max-width:380px) {
    .hero-section-title {
        font-size: 1.6rem
    }
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .356);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 40px 20px 40px 20px;
    padding: .5rem
}

.contact-button p {
    margin: 0
}

.contact-button span a:hover {
    color: green !important;
    transition: .5s
}

.experience-section-contactus-button {
    position: relative;
    color: #2c2c2c;
    font-size: 22px;
    font-weight: 700;
    margin: 5px;
    text-decoration: none;
    border: 1px solid #4a4a4a;
    padding: 10px 30px;
    transition: .5s;
    z-index: 1
}

.experience-section-contactus-button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #242424;
    transition: .5s;
    z-index: -1
}

.experience-section-contactus-button:hover:after {
    width: 100%
}

.experience-section-contactus-button:hover {
    color: #fff
}

.experience-image-container {
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px
}

.experience-image-container img {
    width: 100%;
    height: 120px
}

.experience-image-container h3 {
    text-align: center;
    color: #4e4e4e;
    font-size: 1.5rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

@media only screen and (max-width:768px) {
    .experience-image-container img {
        height: auto;
        max-height: 250px
    }
}

.benefit-card-container {
    transition: .5s
}

.benefit-card-container:hover {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 1px 1px 10px 1px #505050;
    transition: .5s
}

.team-service-button {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    color: #121212
}

.team-service-button:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background-color: #121212;
    transition: .5s
}

.team-service-button:hover:after {
    width: 0
}

.multi-carousel-list {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative
}

.multi-carousel-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    position: relative;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, transition
}

.multiple-carousel-arrow {
    position: absolute;
    outline: 0;
    transition: all .5s;
    border-radius: 35px;
    z-index: 1000;
    border: 0;
    background: rgba(0, 0, 0, .5);
    min-width: 43px;
    min-height: 43px;
    opacity: 1;
    cursor: pointer
}

.multiple-carousel-arrow:hover {
    background: rgba(0, 0, 0, .8)
}

.multiple-carousel-arrow:before {
    font-size: 20px;
    color: #fff;
    display: block;
    font-family: revicons;
    text-align: center;
    z-index: 2;
    position: relative
}

.multiple-carousel-arrow:disabled {
    cursor: default;
    background: rgba(0, 0, 0, .5)
}

.multiple-carousel-arrow--left {
    left: calc(4% + 1px)
}

.multiple-carousel-arrow--left:before {
    content: "\e824"
}

.multiple-carousel-arrow--right {
    right: calc(4% + 1px)
}

.multiple-carousel-arrow--right:before {
    content: "\e825"
}

.multi-carousel-dot-list {
    position: absolute;
    bottom: 0;
    display: flex;
    left: 0;
    right: 0;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.multi-carousel-dot button {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1;
    box-shadow: none;
    transition: background .5s;
    border: 2px solid grey;
    padding: 0;
    margin: 0 6px 0 0;
    outline: 0;
    cursor: pointer
}

.multi-carousel-dot button:hover:active,
.multi-carousel-dot--active button {
    background: #080808
}

.multi-carousel-item {
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@media(-ms-high-contrast:active), (-ms-high-contrast:none) {
    .multi-carousel-item {
        flex-shrink: 0 !important
    }

    .multi-carousel-track {
        overflow: visible !important
    }
}

[dir=rtl].multi-carousel-list {
    direction: rtl
}

.rtl.multiple-carousel-arrow--right {
    right: auto;
    left: calc(4% + 1px)
}

.rtl.multiple-carousel-arrow--right:before {
    content: "\e824"
}

.rtl.multiple-carousel-arrow--left {
    left: auto;
    right: calc(4% + 1px)
}

.rtl.multiple-carousel-arrow--left:before {
    content: "\e825"
}

.testimonial-carousel-card-container {
    margin: 10px
}

.testimonial-carousel-card-container h4 {
    font-size: 1.5rem
}

.common-hero-hero-container {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.common-hero-title-container h1 {
    text-align: center;
    font-weight: 700;
    font-size: calc(1.375rem + 1.5vw);
    color: #fff;
}

.common-hero-bg-image {
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 100%;
    object-fit: cover;
}

.common-hero_hero-bg-overlay {
    position: absolute;
    align-items: center;
    width: 100%;
    height: 100%;
}

.shop-plants-card-plant-container {
    border-radius: 50px;
    overflow: hidden;
    height: 100%;
}
@media (max-width:767px){
    .shop-plants-card-plant-container img{
        width: 100%;
        height: auto;
    }
}

.shop-plants-card-title {
    font-size: 18px;
    color: #579404;
}

.expertise-card-expertise-title {
    position: relative;
}

.image-sizes img {
    width: 100%;
    min-height: 320px;
    max-height: 320px;
    object-fit: cover;
}

.expertise-image-sizes img {
    width: 100%;
    height: auto;
    min-height: 416px;
    border-radius: 10px;
}

.ant-col {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    box-sizing: border-box;
}

.benefit-card-container {
    transition: .5s;
}

.ant-progress {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 14px;
    line-height: 1.5714285714285714;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    display: inline-block;
}

.ant-progress-line {
    position: relative;
    width: 100%;
    font-size: 14px;
}

.mobile-navigation .offcanvas {
    z-index: 9999;
}

.mobile-navigation .mobile_menu_nav_link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation .mobile_menu_nav_link a {
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 15px;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    transition: color 0.3s;
    -webkit-text-decoration-skip: objects;
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.testimonials-carousel h4 {
    font-size: 1.5rem;
}

.testimonials-carousel .rating-star {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.testimonials-carousel .rating-star li {
    display: inline-block;
}

.testimonials-carousel .card-img {
    height: 180px;
}

.testimonials-carousel .card-img img {
    width: 100%;
    height: auto;
}

.testimonials-carousel .card {
    --bs-card-border-color: transperant;
    background: rgba(248, 249, 250, 1);
    min-height: 535px;
}

.testimonials-carousel.owl-carousel .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-carousel.owl-carousel .owl-nav button:hover {
    opacity: 1;
}

.testimonials-carousel.owl-carousel .owl-nav .owl-prev {
    background-image: url(../images/icons/left-fill-black-arrow.svg);
    left: 50px;
}

.testimonials-carousel.owl-carousel .owl-nav .owl-next {
    background-image: url(../images/icons/right-fill-black-arrow.svg);
    right: 50px;
}

@media only screen and (max-width:767px) {
    .testimonials-carousel .card {
        min-height: 460px;
    }

}

/* common css end */



/* gallry css start */

.gallery-popup {
    border: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
    gap: 30px;
}

.gallery-popup a {
    display: block;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
    outline: none;
}

.gallery-popup a img {
    height: 100%;
    transition: all 300ms ease;
}

.gallery-popup a img:hover {
    transform: scale(1.05);
}

.gallery-popup .gallery-popup-bg {
    width: 100%;
    height: 200px;
    background-size: cover;
    transform: scale(1, 1);
    transition: all 300ms ease;
}

.gallery-popup .gallery-popup-bg:hover {
    transform: scale(1.1, 1.1);
}

.gallery-popup .gallery-popup-bg svg {
    position: absolute;
    top: 48%;
    left: 45%;
    color: #fff;
    font-size: 24px;
    z-index: 22;
    opacity: 0;
    transition: .5s;
}

.gallery-popup .gallery-popup-bg:hover svg {
    opacity: 1;
}

.gallery-popup .gallery-popup-bg .gallary-bg-overlay {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .425);
    transition: .5s;
    opacity: 0;
}

.gallery-popup .gallery-popup-bg .gallary-bg-overlay:hover {
    opacity: 1;
}

@media(max-width: 991px) {

    .gallery-popup {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-popup .gallery-popup-bg {
        height: 150px;
    }
}

@media(max-width: 500px) {

    .gallery-popup {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* gallry css end */



/* contact us css start */

.contact-us-form {
    background-color: #d7ddd0;
    box-shadow: 10px 10px 2px green;
}

.contact-us-form-input {
    height: 40px;
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
}

.contact-us-form textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-us-form-captcha-input {
    margin-top: 15px;
    width: 200px;
    border: 1px solid #dcdcdc;
    padding: 5px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-us-form-submit-button {
    position: relative;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 5px;
    padding: 8px 30px;
    transition: .5s;
    z-index: 1;
}

.contact-us-form-submit-button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #070707;
    transform: scale(0);
    transition: .5s;
    z-index: -1;
}

.contact-us-form-submit-button:hover {
    color: #0c0c0c;
}

.contact-us-form-submit-button:hover:after {
    background-color: #fff;
    transform: scale(1);
}

.contact-us-form .form-heading {
    text-align: center;
}

.contact-us-form .form-heading h2 {
    font-size: 40px;
    font-weight: 700;
}

.contact-us-form select.form-select {
    height: 40px;
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 8px;
    border-radius: 10px;
}

.captcha_div .error {
    display: block;
}

:focus-visible {
    outline: none;
}

.contact-us-form select.form-select:hover,
.contact-us-form select.form-select:focus {
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25);
}

.contact-us-form h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
}

/* contact us css end */



/* faq css start */

.faq-accordion {
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-border-radius: 10px;
}

.faq-accordion button.accordion-button {
    background-color: #E5EAE0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
    font-size: 14px;
    line-height: 1.5714285714285714;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-item {
    border: 1px solid #d9d9d9;
    color: rgba(0, 0, 0, 0.88);
    font-size: 14px;
    line-height: 1.5714285714285714;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

/* faq css end */



/* calculator page css start */

.calculator-form select.form-select:hover,
.calculator-form select.form-select:focus {
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25);
}

.calculator-form .form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.calculator-form select.form-select {
    height: 40px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
}

/* calculator page css end */



/* product page css start */

.product-page .select.form-select {
    height: 40px;
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 8px;
    border-radius: 10px;
}

.product-page select.form-select:hover,
.product-page select.form-select:focus {
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25);
}

.product-page .form-control:focus {
    box-shadow: none;
}

.product-page .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.product-detail-view .tab-pane {
    background: #eaefe4 !important;
}

.product-detail-view .tab-pane .table {
    margin-bottom: 0;
}

.product-detail-view .tab-pane .table tr th,
.product-detail-view .tab-pane .table tr td {
    width: 50%;
}

.product-detail-view .nav-link.active {
    background: #eaefe4;
    font-weight: 700;
}

.product-detail-view .nav-link {
    font-weight: 700;
    color: #80c41c;
}

.product-detail-view .tab-pane .contact-us-form-submit-button {
    position: relative;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 5px;
    padding: 8px 30px;
    transition: .5s;
    z-index: 1;
}

.product-detail-view .tab-pane .contact-us-form-submit-button:hover {
    color: #0c0c0c;
}

.product-detail-view .tab-pane .contact-us-form-submit-button:hover:after {
    background-color: #fff;
    transform: scale(1);
}

.product-detail-view .tab-pane .contact-us-form-submit-button:after {

    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #070707;
    transform: scale(0);
    transition: .5s;
    z-index: -1;
}

.product-carousel {
    position: relative;
}

.product-carousel a {
    text-decoration: none;
}

.product-carousel .owl-item .item img {
    height: 250px;
    width: 250px;
}

.product-carousel .owl-item .item h3 {
    color: #000;
}

.product-carousel.owl-carousel .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.product-carousel.owl-carousel .owl-nav button:hover {
    opacity: 1;
}

.product-carousel.owl-carousel .owl-nav .owl-prev {
    background-image: url(../images/icons/left-fill-black-arrow.svg);
    left: 0;
}

.product-carousel.owl-carousel .owl-nav .owl-next {
    background-image: url(../images/icons/right-fill-black-arrow.svg);
    right: 0;
}


/* product page css end */



/* product catalog page css start */

.catalog-search-bar .input-group {
    width: auto;
}

.catalog-search-bar .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* product catalog page css end */



/* thank you page css start */

.thank-you-msg {
    padding: 48px 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    box-sizing: border-box;
}

.thank-you-icon {
    margin-bottom: 24px;
    text-align: center;
}

.thank-you-title {
    color: rgba(0, 0, 0, 0.88);
    font-size: 24px;
    line-height: 1.3333333333333333;
    margin-block: 8px;
    text-align: center;
}

.thank-you-subtitle {
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
    line-height: 1.5714285714285714;
    text-align: center;
}

.thank-you-button {
    margin: 24px 0 0 0;
    text-align: center;
}

.thankyou-back-button {
    border: 1px solid #d9d9d9;
    padding: 6px 15px;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
}

.thankyou-back-button:hover {
    border-color: #4096ff;
    color: #4096ff;
}

/* thank you page css end */


/* progress bar*/
.ant-progress {
    font-size: 14px;
    box-sizing: border-box;
}

.ant-progress::before,
.ant-progress::after {
    box-sizing: border-box;
}

.ant-progress [class^="ant-progress"],
.ant-progress [class*=" ant-progress"] {
    box-sizing: border-box;
}

.ant-progress [class^="ant-progress"]::before,
.ant-progress [class*=" ant-progress"]::before,
.ant-progress [class^="ant-progress"]::after,
.ant-progress [class*=" ant-progress"]::after {
    box-sizing: border-box;
}

.ant-progress {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 14px;
    line-height: 1.5714285714285714;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    display: inline-block;
}

.ant-progress-rtl {
    direction: rtl;
}

.ant-progress-line {
    position: relative;
    width: 100%;
    font-size: 14px;
}

.ant-progress .ant-progress-outer {
    display: inline-block;
    width: 100%;
}

.ant-progress.ant-progress-show-info .ant-progress-outer {
    margin-inline-end: calc(-2em - 8px);
    padding-inline-end: calc(2em + 8px);
}

.ant-progress .ant-progress-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 100px;
}

.ant-progress .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #1677ff;
}

.ant-progress .ant-progress-success-bg,
.ant-progress .ant-progress-bg {
    position: relative;
    background: #1677ff;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.ant-progress .ant-progress-bg {
    overflow: hidden;
    background: linear-gradient(to right, rgb(16, 142, 233), rgb(135, 208, 104));
    --progress-line-stroke-color: linear-gradient(to right, #108ee9, #87d068);
    height: 8px;
}

.ant-progress .ant-progress-bg::after {
    content: "";
    background: inherit;
    background: var(--progress-line-stroke-color);
    height: 100%;
    width: calc(1 / var(--progress-percent) * 100%);
    display: block;
}

.ant-progress .ant-progress-success-bg {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    background-color: #52c41a;
}

.ant-progress .ant-progress-text {
    display: inline-block;
    width: 2em;
    margin-inline-start: 8px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 1;
    white-space: nowrap;
    text-align: start;
    vertical-align: middle;
    word-break: normal;
}

.ant-progress .ant-progress-text .anticon {
    font-size: 14px;
}

.ant-progress.ant-progress-status-active .ant-progress-bg::before {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    border-radius: 100px;
    opacity: 0;
    animation-name: ant-progress-LTR-active;
    animation-duration: 2.4s;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-iteration-count: infinite;
    content: "";
}

@keyframes ant-progress-LTR-active {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0.1;
    }

    20% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0.5;
    }

    to {
        transform: translateX(0) scaleX(1);
        opacity: 0;
    }
}

.ant-progress.ant-progress-rtl.ant-progress-status-active .ant-progress-bg::before {
    animation-name: ant-progress-RTL-active;
}

@keyframes ant-progress-RTL-active {
    0% {
        transform: translateX(100%) scaleX(0);
        opacity: 0.1;
    }

    20% {
        transform: translateX(100%) scaleX(0);
        opacity: 0.5;
    }

    to {
        transform: translateX(0) scaleX(1);
        opacity: 0;
    }
}


.ant-progress.ant-progress-status-exception .ant-progress-bg {
    background-color: #ff4d4f;
}

.ant-progress.ant-progress-status-exception .ant-progress-text {
    color: #ff4d4f;
}

.ant-progress.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #ff4d4f;
}

.ant-progress.ant-progress-status-success .ant-progress-bg {
    background-color: #52c41a;
}

.ant-progress.ant-progress-status-success .ant-progress-text {
    color: #52c41a;
}

.ant-progress.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #52c41a;
}

.ant-progress .ant-progress-circle-trail {
    stroke: rgba(0, 0, 0, 0.06);
}

.ant-progress.ant-progress-circle .ant-progress-inner {
    position: relative;
    line-height: 1;
    background-color: transparent;
}

.ant-progress.ant-progress-circle .ant-progress-text {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 1em;
    line-height: 1;
    white-space: normal;
    text-align: center;
    transform: translateY(-50%);
}

.ant-progress.ant-progress-circle .ant-progress-text .anticon {
    font-size: 1.1666666666666667em;
}

.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
    color: #ff4d4f;
}

.ant-progress-circle.ant-progress-status-success .ant-progress-text {
    color: #52c41a;
}

.ant-progress-inline-circle {
    line-height: 1;
}

.ant-progress-inline-circle .ant-progress-inner {
    vertical-align: bottom;
}

.ant-progress .ant-progress-steps {
    display: inline-block;
}

.ant-progress .ant-progress-steps-outer {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ant-progress .ant-progress-steps-item {
    flex-shrink: 0;
    min-width: 2px;
    margin-inline-end: 2px;
    background-color: rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.ant-progress .ant-progress-steps-item-active {
    background-color: #1677ff;
}

.ant-progress-small.ant-progress-line,
.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
    font-size: 12px;
}







.pagination {
    text-align: center;
    margin-top: 20px;
    justify-content: center;
}

.pagination button {
    margin: 0 5px;
    cursor: pointer;
    outline: 0;
    border-radius: 6px;
    border: 1px solid transparent;
    background: none;
    color: #006400;
    min-width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 30px;
}

.pagination button:hover {
    background: rgba(0, 0, 0, 0.06);
}

.pagination button.active {

    border: 1px solid #006400;

}

.gallery-popup .hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}


.btn-effect {
    position: relative;
    color: #2c2c2c;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #4a4a4a;
    padding: 10px 30px;
    transition: .5s;
    z-index: 1;
}

.btn-effect:hover {
    color: #fff;
}

.btn-effect:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #242424;
    transition: .5s;
    z-index: -1;
}

.btn-effect:hover:after {
    width: 100%;
}




.nav-item.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
}

@media (min-width: 992px) {
    .nav-item.dropdown-menu {
        right: 0;
        left: auto;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        width: 250px;
        z-index: 1000;
    }

    .nav-item.dropdown .dropdown-menu.show {
        margin: 0;
        width: 250px;
    }

    .navbar-nav .nav-item>a.nav-link {
        padding: 44px 10px;
    }

    .mobile_menu_innerdiv,
    .mobile-social-header {
        display: none;
    }

    .mobile-spanish-logo {
        display: none;
    }
}

.navbar-nav>li>.nav-item.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-nav a.nav-link {
    font-size: 18px;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-item.dropdown ul.dropdown-menu li a:hover {
    color: #9ab973;
}

.nav-item.dropdown ul.dropdown-menu {
    background: #FFFFFF;
    border: 0;
    border-radius: 0;
    padding: 10px 10px 10px 10px;
}

.nav-item.dropdown ul.dropdown-menu li {
    padding: 10px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav a.nav-link {
        font-size: 16px;
    }
}

@media (max-width:991px) {

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #2d3436 0%, #4a5568 100%);
        width: 100%;
    }
    
    /* Add padding to body to account for fixed header */
    body {
        padding-top: 85px !important;
    }

    header .navbar {
        height: 85px;
        background: transparent;
        margin: 0;
        padding: 0 12px;
        width: 100%;
    }

    .navbar-toggler {
        border: 0;
        padding: 8px;
        box-shadow: none;
        background: rgba(255,255,255,0.15);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        box-shadow: none;
        background: rgba(255,255,255,0.25);
    }

    .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler[aria-expanded=true] {
        z-index: 999999;
        background: linear-gradient(135deg, #2d3436 0%, #4a5568 100%);
        width: 100%;
        max-width: 320px;
        border: 0;
        display: flex;
        padding: 12px 16px;
        position: fixed;
        height: 60px;
        align-items: center;
        border-bottom: none;
        left: 0;
        border-radius: 0;
    }

    .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
        width: 1em;
        height: 1em;
    }

    .navbar-nav .nav-item.header-logo {
        order: 1;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-item.header-logo img {
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .navbar-nav .nav-item {
        order: 2;
        width: 100%;
        text-align: left;
        margin: 2px 0;
    }

    .navigation-style a {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 600;
        color: #1a3c24;
        text-decoration: none;
        padding: 14px 16px;
        border-radius: 12px;
        transition: all 0.2s ease;
        background: transparent;
        position: relative;
    }

    .navigation-style a:hover,
    .navigation-style a:active {
        background: linear-gradient(135deg, rgba(34,139,34,0.1) 0%, rgba(34,139,34,0.05) 100%);
        color: #228B22;
        transform: translateX(4px);
    }

    .navigation-style a:active {
        transform: scale(0.98) translateX(4px);
    }

    .navigation-style .nav-link::before {
        content: '';
        display: inline-flex;
        width: 36px;
        height: 36px;
        background-color: #228B22;
        background-image: linear-gradient(135deg, #228B22 0%, #2d6a41 100%);
        border-radius: 10px;
        flex-shrink: 0;
        background-size: 20px 20px;
        background-repeat: no-repeat;
        background-position: center;
        box-shadow: 0 2px 8px rgba(34,139,34,0.3);
    }

    /* Home icon - 1st item */
    .navbar-nav > .nav-item:nth-child(1) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
    }
    /* Products icon - 2nd item */
    .navbar-nav > .nav-item:nth-child(2) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z'/%3E%3C/svg%3E");
    }
    /* Services icon - 3rd item */
    .navbar-nav > .nav-item:nth-child(3) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
    }
    /* Projects icon - 4th item */
    .navbar-nav > .nav-item:nth-child(4) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
    }
    /* About icon - 6th item (5th is logo) */
    .navbar-nav > .nav-item:nth-child(6) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
    }
    /* Calculators icon - 7th item */
    .navbar-nav > .nav-item:nth-child(7) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2zm4 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2zm-8 8H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V7h2v2z'/%3E%3C/svg%3E");
    }
    /* FAQs icon - 8th item */
    .navbar-nav > .nav-item:nth-child(8) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z'/%3E%3C/svg%3E");
    }
    /* Turf News icon - 9th item */
    .navbar-nav > .nav-item:nth-child(9) .nav-link::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM14 17H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
    }

    .nav-item.dropdown ul.dropdown-menu li {
        padding: 0;
    }

    .nav-item.dropdown .dropdown-menu.show {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        background: linear-gradient(180deg, #f0f7f0 0%, #e8f5e8 100%);
        border-radius: 12px;
        margin: 4px 0 8px 48px;
        padding: 8px !important;
        border: 1px solid rgba(34,139,34,0.15);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
        animation: dropdownSlide 0.25s ease-out;
    }

    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-item.dropdown ul.dropdown-menu {
        padding: 8px;
    }

    .nav-item.dropdown .dropdown-menu a {
        font-size: 14px;
        font-weight: 500;
        color: #2d5a3d;
        padding: 12px 14px;
        border-radius: 8px;
        background: rgba(255,255,255,0.6);
        margin: 2px 0;
        border: 1px solid transparent;
    }

    .nav-item.dropdown .dropdown-menu a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #228B22;
        border-radius: 50%;
        flex-shrink: 0;
        margin-right: 4px;
    }

    .nav-item.dropdown .dropdown-menu a:hover,
    .nav-item.dropdown .dropdown-menu a:active {
        background: white;
        border-color: rgba(34,139,34,0.2);
        color: #1a5f2a;
        box-shadow: 0 2px 8px rgba(34,139,34,0.1);
    }

    .navigation-style.show {
        position: fixed;
        z-index: 1000;
        max-width: 320px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        top: 0;
        bottom: 0;
        left: 0;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15);
        width: 320px;
        transform: translateX(0);
    }

    .navigation-style.show>.navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: linear-gradient(180deg, #ffffff 0%, #f8fdf8 100%);
        pointer-events: auto;
        padding: 70px 12px 100px 12px;
    }
    
    /* Menu backdrop for closing when tapping outside */
    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .menu-backdrop.show {
        display: block;
    }
    
    /* Close button at top of menu */
    .navigation-style.show::before {
        content: '✕';
        position: fixed;
        top: 15px;
        left: 270px;
        width: 40px;
        height: 40px;
        background: #2d3436;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        z-index: 10001;
        cursor: pointer;
        pointer-events: auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .navigation-style.show>.navbar-nav::-webkit-scrollbar {
        width: 4px;
    }

    .navigation-style.show>.navbar-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .navigation-style.show>.navbar-nav::-webkit-scrollbar-thumb {
        background: rgba(34,139,34,0.3);
        border-radius: 4px;
    }

    .nav-item.dropdown>a::after {
        display: inline-block;
        content: "";
        border: none;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23228B22' viewBox='0 0 24 24'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
        background-size: contain;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
    }

    .nav-item.dropdown.show>a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mobile_navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 8px;
    }

    .mobile_navigation .mobile_menu_innerdiv img {
        height: 60px;
        width: auto;
    }

    .open-menu {
        overflow: hidden;
        position: relative;
    }

    .open-menu:after {
        background: rgba(0, 0, 0, 0.5);
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        backdrop-filter: blur(2px);
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .mobile-social-header {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 320px;
        max-width: 320px;
        background: linear-gradient(135deg, #2d3436 0%, #4a5568 100%);
        padding: 12px 16px;
        display: none;
        justify-content: center;
        gap: 16px;
        z-index: 1001;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .open-menu .mobile-social-header {
        display: flex;
    }

    .mobile-social-header a {
        text-decoration: none;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .mobile-social-header a:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-2px);
    }

    .mobile-social-header a img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

    .mobile-spanish-logo {
        display: none !important;
    }
}

/* Page Loading Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5f2a 0%, #228B22 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-loader.active {
    display: flex;
    opacity: 1;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #4ade80;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

#google_translate_element {
    display: none;
}

iframe.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.section-image{
    color: transparent;
    width: 100%;
    height: 100%;
}
.border-radius-left{
    border-radius: 100px 50px;
}
.border-radius-right{
    border-radius: 50px 100px;
}
@media (max-width:992px){
    .section-image{
        height: auto;
    }
}

.floating-cta-bar {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.floating-cta-bar.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta-bar ul {
    display:flex;
    list-style: none;
    margin: 0;
    background: #018001;
    border-radius: 10px 10px 0 0;
    padding: 0;
    box-shadow: 0px 0px 6px 2px #79856b;
}

.floating-cta-bar ul li {
    flex: 1 1 30%;
    border-right: 1px solid #8dab6a;
    padding: 4px 10px;
    text-align: center;
}
.floating-cta-bar ul li:last-child {
    border-right: 0;
}
.floating-cta-bar ul li a{
    text-decoration: none;
    color: #fff;
} 
.floating-cta-bar ul li svg {
    width: 10px;
    height: 10px;
    color: #fff;
    fill: #fff;
}
.floating-cta-bar ul li span {
    display: block;
    margin-top: 2px;
    font-size: 9px;
}
@media (max-width:991px) {
    .floating-cta-bar {
        display: none !important;
    }
}
.captcha_div{
    margin-top: 10px;
}
.data-calc-container{
    background-color: #d7ddd0;
}
.calc-box {
    
    position: relative;
    margin-bottom: 20px;
}
.calc-box:nth-last-child(-n+2) {
    margin-bottom: 0;
}
.calc-box:first-child .remove_area_box {
    display: none;
}
.calc-box-submit-button {
    position: relative;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 5px;
    padding: 8px 30px;
    transition: .5s;
    z-index: 1;
    border:1px solid #000;
}
.reset_calculation {
    padding: 8px 30px;
}

.calc-box-submit-button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #070707;
    transform: scale(0);
    transition: .5s;
    z-index: -1;
}

.calc-box-submit-button:hover {
    color: #0c0c0c;
}

.calc-box-submit-button:hover:after {
    background-color: #fff;
    transform: scale(1);
}

.add-more-area {
    font-size: 16px;
    text-align: center;
    background: #000;
    color:#fff;
}
a.remove_area_box {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #939393;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove_area_box svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}


#chat-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 10px;
}

#chat-box {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background: #f9f9f9;
}

#chat-container input, 
#chat-container button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
}

#chat-container button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    cursor: pointer;
}

#chat-container button:hover {
    background-color: #4a148c;
}

.cta-buttons ul li.support-icon a {
    background-color: transparent !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
}

.cta-buttons ul li.support-icon svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
}

.cta-buttons ul li.support-icon span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(180deg, #1a3c24 0%, #0d1f12 100%);
    color: #fff;
    padding: 3.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
.footer-brand img {
    height: 115px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: #228B22;
    transform: translateY(-3px);
}
.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer-column h4 {
    color: #9ab973;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 0.6rem;
}
.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-column ul li a:hover {
    color: #9ab973;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #9ab973;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.footer-contact-item a:hover {
    color: #9ab973;
}
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
}
.footer-badges img {
    height: 72px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.footer-badges a:hover img {
    opacity: 1;
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1rem 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.footer-bottom a {
    color: #9ab973;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
.footer-translate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-translate img {
    height: 24px;
    width: auto;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.footer-translate img:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    .footer-brand p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
    }
    .footer-brand {
        grid-column: span 3;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-badges {
        justify-content: center;
        padding: 1.25rem 0;
        margin-top: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .modern-footer {
        padding: 2rem 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    .footer-brand {
        grid-column: span 3;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .footer-brand img {
        height: 85px;
    }
    .footer-brand p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column h4 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .footer-column ul li {
        margin-bottom: 0.3rem;
    }
    .footer-column ul li a {
        font-size: 0.7rem;
    }
    .footer-contact-item {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        justify-content: center;
    }
    .footer-contact-item svg {
        width: 12px;
        height: 12px;
    }
    .footer-cta-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    .footer-badges {
        justify-content: center;
        padding: 1rem 0;
        margin-top: 1rem;
        gap: 0.75rem;
    }
    .footer-badges img {
        height: 45px;
    }
    .footer-bottom {
        padding: 0.75rem 0;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }
    .footer-column h4 {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    .footer-column ul li a {
        font-size: 0.65rem;
    }
    .footer-contact-item {
        font-size: 0.65rem;
        flex-direction: column;
        gap: 0.15rem;
    }
    .footer-contact-item svg {
        display: none;
    }
    .footer-badges img {
        height: 38px;
    }
}

.footer-cta-btn {
    display: inline-block;
    background: #228B22;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: background 0.2s ease;
}
.footer-cta-btn:hover {
    background: #1a6b1a;
    color: white;
}

/* Language Banner for Spanish Browsers */
.language-banner {
    background: linear-gradient(135deg, #1a5f2a 0%, #228B22 100%);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1100;
}
.language-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.language-banner-icon {
    font-size: 1.5rem;
}
.language-banner-text {
    font-weight: 500;
    font-size: 0.95rem;
}
.language-banner-btn {
    background: white;
    color: #1a5f2a;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.language-banner-btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}
.language-banner-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.language-banner-close:hover {
    opacity: 1;
}

/* Header Language Toggle Button */
.header-language-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
}
.language-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a5f2a 0%, #228B22 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}
.language-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}
.language-toggle-btn .lang-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    color: #1a5f2a;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}
.language-toggle-btn .lang-text {
    display: block;
}
.language-toggle-btn.is-spanish .lang-icon {
    background: #c41e3a;
    color: white;
}

@media (max-width: 991px) {
    .header-language-toggle {
        top: auto;
        bottom: 80px;
        right: 15px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .header-language-toggle.hidden-on-scroll {
        opacity: 0;
        pointer-events: none;
        transform: translateX(20px);
    }
    .language-toggle-btn .lang-text {
        display: none;
    }
    .language-toggle-btn {
        padding: 0.75rem;
        border-radius: 50%;
    }
    .language-toggle-btn .lang-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .language-banner-content {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .language-banner-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Hide Google Translate feedback/review popups */
.goog-te-banner-frame,
.goog-te-ftab-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.skiptranslate iframe,
body > .skiptranslate {
    display: none !important;
    visibility: hidden !important;
}
.goog-te-spinner-pos {
    display: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    display: none !important;
}

/* Modern Product Page Styles */
.product-modern {
    padding: 30px 0 60px;
}
.product-modern .breadcrumb-nav {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.product-modern .breadcrumb-nav a {
    color: #80c41c;
    text-decoration: none;
    font-weight: 500;
}
.product-modern .breadcrumb-nav a:hover {
    text-decoration: underline;
}
.product-modern .breadcrumb-nav span {
    color: #666;
}
.product-modern .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
@media (max-width: 991px) {
    .product-modern .product-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.product-modern .product-image-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8f9fa 0%, #e8f5d9 100%);
    border-radius: 16px;
    padding: 20px;
}
@media (max-width: 991px) {
    .product-modern .product-image-section {
        min-height: auto;
    }
}
.product-modern .product-main-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    object-fit: cover;
    flex: 1;
}
.product-modern .product-info-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.product-modern .product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #80c41c, #5a9e0f);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-modern .product-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}
.product-modern .specs-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-modern .specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
@media (max-width: 576px) {
    .product-modern .specs-grid {
        grid-template-columns: 1fr;
    }
}
.product-modern .spec-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 18px;
    border-left: 4px solid #80c41c;
}
.product-modern .spec-card .spec-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-modern .spec-card .spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}
.product-modern .spec-card.spec-hidden {
    display: none;
}
.product-modern .specs-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 25px;
    background: #fff;
    border: 2px solid #80c41c;
    border-radius: 8px;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-modern .specs-expand-btn:hover {
    background: #80c41c;
    color: #fff;
}
.product-modern .specs-expand-btn .expand-icon {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}
.product-modern .product-gallery-link {
    position: relative;
    display: block;
    cursor: pointer;
}
.product-modern .gallery-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    transition: background 0.3s ease;
}
.product-modern .product-gallery-link:hover .gallery-indicator {
    background: #80c41c;
}
.product-modern .product-cta {
    background: linear-gradient(135deg, #f0f7e6, #e8f5d9);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.product-modern .product-cta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.product-modern .product-cta p {
    color: #555;
    margin-bottom: 18px;
}
.product-modern .btn-quote {
    display: inline-block;
    background: linear-gradient(135deg, #80c41c, #5a9e0f);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 196, 28, 0.3);
}
.product-modern .btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 196, 28, 0.4);
    color: #fff;
}
.product-modern .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #80c41c;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}
.product-modern .btn-back:hover {
    color: #5a9e0f;
    gap: 12px;
}

/* Free quote — footer follows content (override body 100vh / -webkit-fill-available) */
html.free-quote-page,
body.free-quote-page {
    min-height: auto !important;
    height: auto !important;
}
@media (max-width: 991px) {
    html.free-quote-page,
    body.free-quote-page {
        min-height: auto !important;
        height: auto !important;
        min-height: unset !important;
    }
}
body.free-quote-page .quote-page-wrapper {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    flex: none !important;
}
