/********** Template CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: 20px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 1rem;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.glass-nav.nav-scrolled.sticky-top {
    top: 0;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

/* Parallax single-page refresh helpers */
.section-padding {
    padding: 6rem 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    background: #F3F6F1;
    color: var(--dark);
}

.topbar {
    background: linear-gradient(90deg, rgba(18, 31, 16, 0.92), rgba(18, 31, 16, 0.75));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: .85rem;
    letter-spacing: .02em;
}

.topbar a {
    transition: opacity .3s ease;
}

.topbar a:hover {
    opacity: .7;
}

.floating-brand {
    position: fixed;
    top: 28px;
    left: 48px;
    z-index: 1040;
    display: flex;
    align-items: center;
    padding: 0;
}

.floating-brand__link {
    display: inline-flex;
    align-items: center;
}

.glass-nav {
    background: transparent !important;
    border: none;
    box-shadow: none;
    padding-top: .75rem;
    z-index: 1045;
    transition: background .4s ease, box-shadow .4s ease, top .4s ease;
}

.glass-nav .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 999px;
    padding: .5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 25px 45px rgba(18, 31, 16, 0.18);
    margin: 0 auto 0 auto;
    margin-left: 200px;
    max-width: 1100px;
    transition: background .3s ease, box-shadow .3s ease, border .3s ease;
    will-change: background, box-shadow;
}

@media (max-width: 991.98px) {
    .glass-nav .container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.96);
    }
}

.glass-nav.nav-scrolled {
    background: transparent !important;
}

.glass-nav.nav-scrolled .container {
    background: rgba(255, 255, 255, 0.98);
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(18, 31, 16, 0.12);
}

.glass-nav .navbar-brand {
    padding: .25rem 0;
}

.brand-logo {
    display: block;
    height: 130px;
    width: auto;
}

@media (min-width: 992px) {
    .glass-nav .navbar-nav {
        margin-left: 0 !important;
    }
}

@media (max-width: 1199.98px) {
    .floating-brand {
        display: none;
    }

    .glass-nav {
        background: transparent !important;
        padding-top: 0;
    }

    .glass-nav .container {
        justify-content: space-between;
        gap: .75rem;
        flex-wrap: wrap;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0 1.25rem;
        max-width: none;
        border-radius: 0;
    }

    .glass-nav .navbar-nav {
        padding: 1rem 1.25rem;
    }

    .glass-nav .navbar-nav .nav-link {
        padding: .65rem 0;
        border-bottom: 1px solid rgba(26, 43, 23, 0.08);
        font-size: .92rem;
        letter-spacing: .04em;
        text-align: right;
    }

    .glass-nav .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }

    .navbar.sticky-top {
        top: 0;
    }

    .navbar-toggler {
        border-color: rgba(26, 43, 23, 0.24) !important;
        color: rgba(26, 43, 23, 0.7);
    }

    .navbar-expand-lg .navbar-toggler {
        display: inline-block;
    }

    .navbar-expand-lg .navbar-collapse {
        display: none !important;
        width: 100%;
    }

    .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        margin-top: .5rem;
        padding: .5rem 0;
    }

    .brand-logo {
        height: 70px;
    }
}

.glass-nav .navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(18, 31, 16, 0.78);
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: color .3s ease;
}

.glass-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .35rem;
    height: 2px;
    background: var(--secondary);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease, opacity .3s ease;
}

.glass-nav .navbar-nav .nav-link:hover,
.glass-nav .navbar-nav .nav-link.active {
    color: var(--primary);
}

.glass-nav .navbar-nav .nav-link:hover::after,
.glass-nav .navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-toggler {
    border-radius: 50px;
    padding: .35rem .65rem;
    border-color: rgba(26, 43, 23, 0.16) !important;
    color: rgba(26, 43, 23, 0.85);
    background-color: transparent;
}

.navbar-toggler-icon {
    width: 1.6rem;
    height: 1.2rem;
    background-image: linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
    background-size: 100% 2px, 100% 2px, 100% 2px;
    background-position: center calc(25%), center, center calc(75%);
    background-repeat: no-repeat;
}

.section-label {
    display: inline-block;
    margin-bottom: .75rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(91, 140, 81, 0.12);
    color: var(--primary);
}

.product-card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 43, 23, 0.08);
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__body h5 {
    font-weight: 600;
    margin-bottom: .75rem;
}

.product-card__body p {
    margin-bottom: 0;
    color: rgba(64, 74, 61, 0.8);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 70px rgba(26, 43, 23, 0.14);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    padding: 8rem 0 6rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 31, 16, 0.65), rgba(18, 31, 16, 0.35));
    z-index: 1;
}

.hero-stats div {
    min-width: 140px;
}

.hero-stats h3 {
    font-weight: 700;
}

.hero-stats p {
    color: rgba(255, 255, 255, 0.75);
}

.hero-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 70px rgba(12, 22, 10, 0.45);
}

.hero-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.hero-card__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: .5rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(12, 22, 10, 0.2);
}

.hero-card__label {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
}

.feature-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 24px 55px rgba(26, 43, 23, 0.12);
    transition: transform .4s ease, box-shadow .4s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 70px rgba(26, 43, 23, 0.18);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
    color: rgba(64, 74, 61, 0.85);
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 1.75rem;
    background: rgba(91, 140, 81, 0.18);
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 43, 23, 0.08);
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 80px rgba(26, 43, 23, 0.14);
}

.service-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    padding: 1.75rem;
}

.service-card__body h4 {
    font-weight: 600;
    margin-bottom: .75rem;
}

.service-card__body p {
    margin-bottom: 0;
    color: rgba(64, 74, 61, 0.8);
}

.parallax-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 41, 22, 0.72);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.lightbox-grid a {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(12, 22, 10, 0.3);
}

.lightbox-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.lightbox-grid a:hover img {
    transform: scale(1.06);
}

.about-section {
    background: #F5F7F3;
}

.about-stack {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.about-stack__primary,
.about-stack__secondary {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(18, 31, 16, 0.25);
}

.about-stack__primary img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-stack__secondary {
    position: absolute;
    width: 58%;
    right: -40px;
    bottom: -40px;
}

.about-stack__secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-stack__badge {
    position: absolute;
    top: 28px;
    left: -32px;
    padding: .5rem 1.25rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: .12em;
}

.about-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .75rem;
    color: rgba(64, 74, 61, 0.85);
}

.about-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-pill {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 140px;
    box-shadow: 0 18px 40px rgba(26, 43, 23, 0.12);
}

.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
}

.stat-label {
    font-size: .85rem;
    color: rgba(64, 74, 61, 0.7);
}

.team-card {
    background: #FFFFFF;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 36px 80px rgba(12, 22, 10, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-card__body {
    padding: 1.75rem;
}

.team-card__role {
    display: inline-block;
    margin: .35rem 0 1rem;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--secondary);
}

.team-card p {
    color: rgba(64, 74, 61, 0.85);
    margin-bottom: 0;
}

.testimonial-section {
    background: #FDFBF7;
}

.testimonial-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 80px rgba(26, 43, 23, 0.12);
    min-height: 250px;
}

.testimonial-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(91, 140, 81, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.testimonial-card__quote {
    font-size: 1.05rem;
    color: rgba(18, 31, 16, 0.88);
    margin-bottom: 1.5rem;
}

.testimonial-card__meta .name {
    display: block;
    font-weight: 600;
}

.testimonial-card__meta .role {
    font-size: .85rem;
    color: rgba(64, 74, 61, 0.7);
}

.testimonial-carousel .owl-dots .owl-dot span {
    background: rgba(32, 61, 29, 0.2);
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: var(--secondary);
}

.contact-section .overlay {
    background: rgba(17, 28, 15, 0.78);
}

.contact-card {
    background: rgba(18, 31, 16, 0.8);
    color: #FFFFFF;
    padding: 2.25rem;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(12, 22, 10, 0.4);
}

.contact-card .section-label {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.75);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.25rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-list i {
    font-size: 1.1rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background .3s ease;
}

.contact-social a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 45px 90px rgba(12, 22, 10, 0.18);
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: .9rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 12px;
    border: 1px solid rgba(26, 43, 23, 0.12);
    padding: .85rem 1rem;
}

@media (max-width: 991.98px) {
    .about-stack__secondary {
        right: 0;
        bottom: -32px;
    }

    .about-stack__badge {
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .about-stack {
        max-width: 420px;
    }

    .about-stack__primary img {
        height: 360px;
    }

    .about-stack__secondary {
        position: relative;
        width: 70%;
        margin: 1.5rem auto 0;
    }

    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 7rem 0 5rem;
    }

    .hero-stats {
        gap: 2rem !important;
    }

    .topbar {
        display: none !important;
    }

    .glass-nav .container {
        margin: 0 1.25rem;
        padding: 1rem 1.25rem;
    }

    .brand-logo {
        height: 68px;
    }

    .floating-brand {
        display: none;
    }

    .glass-nav .navbar-nav .nav-link {
        font-size: .9rem;
        letter-spacing: .035em;
    }

    .glass-nav .navbar-brand {
        margin-right: .75rem;
        padding: .5rem 0;
    }

    .glass-nav {
        padding: .75rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-stats div {
        min-width: 120px;
    }

    .service-card__image {
        height: 200px;
    }

    .glass-nav .container {
        padding: .85rem 1rem;
        margin: 0 1rem;
    }

    .glass-nav .navbar-nav {
        padding: 1rem;
    }

    .brand-logo {
        height: 64px;
    }
}