@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #6a6a6a;
    font-size: 14px;
    background-color: #eff2f1;
    padding-top: 80px; /* For fixed header */
}

/* ===== RESPONSIVE HEADER FIXES ===== */
.custom-navbar {
    background: #3b5d50 !important;
    padding: 15px 0;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.custom-navbar .navbar-brand {
    font-size: 28px;
    font-weight: 600;
}

.custom-navbar .navbar-brand > span {
    opacity: 0.4;
}

.custom-navbar .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

 /* HERO IMAGE FIX */
.hero-img-wrap img {
    width: 100%;
    max-width: 480px;       /* Reduce size on desktop */
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero-img-wrap img {
        max-width: 280px; /* smaller on mobile */
        margin-top: 20px;
    }
}

.hero-img-wrap img {
    max-height: 400px;
    object-fit: cover;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        background: #3b5d50;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .custom-navbar .custom-navbar-nav {
        text-align: center;
    }
    
    .custom-navbar .custom-navbar-nav li {
        margin: 8px 0;
    }
    
    .custom-navbar .custom-navbar-cta {
        justify-content: center;
        margin-top: 15px !important;
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .custom-navbar .custom-navbar-nav li {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.custom-navbar .custom-navbar-nav li a {
    font-weight: 500;
    color: #ffffff !important;
    opacity: 0.7;
    transition: 0.3s all ease;
    position: relative;
    padding: 8px 12px !important;
}

@media (min-width: 768px) {
    .custom-navbar .custom-navbar-nav li a:before {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 12px;
        right: 12px;
        background: #f9bf29;
        height: 3px;
        opacity: 1;
        visibility: visible;
        width: 0;
        transition: 0.15s all ease-out;
    }
}

.custom-navbar .custom-navbar-nav li a:hover {
    opacity: 1;
}

.custom-navbar .custom-navbar-nav li a:hover:before {
    width: calc(100% - 24px);
}

.custom-navbar .custom-navbar-nav li.active a {
    opacity: 1;
}

.custom-navbar .custom-navbar-nav li.active a:before {
    width: calc(100% - 24px);
}

.custom-navbar .custom-navbar-cta {
    margin-left: 0 !important;
    flex-direction: row;
}

@media (min-width: 768px) {
    .custom-navbar .custom-navbar-cta {
        margin-left: 40px !important;
    }
}

.custom-navbar .custom-navbar-cta li {
    margin-left: 0px;
    margin-right: 0px;
}

.custom-navbar .custom-navbar-cta li:first-child {
    margin-right: 15px;
}

.custom-navbar .custom-navbar-cta a {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s all ease;
}

.custom-navbar .custom-navbar-cta a:hover {
    background: rgba(255,255,255,0.1);
}

.custom-navbar .custom-navbar-cta img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ===== RESPONSIVE BODY PADDING ===== */
/* Specific fix for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .custom-navbar {
        padding: 10px 0;
    }
    
    .custom-navbar .navbar-brand {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px;
        font-size: 13px;
    }
    
    .custom-navbar .navbar-brand {
        font-size: 20px;
    }
}

/* ===== MAIN CONTENT ===== */
main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

/* ===== HERO SECTION RESPONSIVE FIXES ===== */
.hero {
    background: #3b5d50;
    padding: 2rem 0;
    margin-top: -1px !important; /* Pull up to eliminate any gap */
    position: relative;
}


.hero .intro-excerpt {
    position: relative;
    z-index: 4;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
}

@media (min-width: 992px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero .intro-excerpt {
        max-width: 450px;
    }
}

.hero h1 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1400px) {
    .hero h1 {
        font-size: 54px;
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.1rem;
    }
}

/* Hero image responsive fixes */
.hero .hero-img-wrap {
    position: relative;
    margin-top: 30px;
}

.hero .hero-img-wrap img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    max-width: 100%;
}

/* Reset all problematic absolute positioning on mobile */
@media (max-width: 991.98px) {
    .hero .hero-img-wrap img {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 auto;
    }
    
    .hero .hero-img-wrap:after {
        display: none; /* Hide decorative elements on mobile */
    }
}

@media (min-width: 768px) {
    .hero .hero-img-wrap {
        margin-top: 0;
    }
    
    .hero .hero-img-wrap img {
        right: 0px;
        left: -50px;
    }
}

@media (min-width: 992px) {
    .hero .hero-img-wrap img {
        left: 0px;
        top: -80px;
        position: absolute;
        right: -50px;
        max-width: 780px;
    }
}

@media (min-width: 1200px) {
    .hero .hero-img-wrap img {
        left: 0px;
        top: -80px;
        right: -100px;
    }
}

.hero .hero-img-wrap:after {
    content: "";
    position: absolute;
    width: 255px;
    height: 217px;
    background-image: url("../images/dots-light.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: -50px;
    top: -20px;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hero .hero-img-wrap:after {
        top: -40px;
        right: -100px;
    }
}

/* ===== BUTTON RESPONSIVE FIXES ===== */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    color: #ffffff;
    background: #2f2f2f;
    border-color: #2f2f2f;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }
}

.btn:hover {
    color: #ffffff;
    background: #222222;
    border-color: #222222;
    transform: translateY(-2px);
}

.btn:active,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn.btn-primary {
    background: #3b5d50;
    border-color: #3b5d50;
}

.btn.btn-primary:hover {
    background: #314d43;
    border-color: #314d43;
}

.btn.btn-secondary {
    color: #2f2f2f;
    background: #f9bf29;
    border-color: #f9bf29;
}

.btn.btn-secondary:hover {
    background: #f8b810;
    border-color: #f8b810;
}

.btn.btn-white-outline {
    background: transparent;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn.btn-white-outline:hover {
    border-color: white;
    color: #ffffff;
}

/* ===== SECTION STYLES WITH RESPONSIVE FIXES ===== */
.section-title {
    color: #2f2f2f;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        text-align: center;
    }
}

.product-section,
.why-choose-section,
.we-help-section,
.popular-product,
.testimonial-section,
.before-footer-section,
.blog-section,
.footer-section,
.untree_co-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .product-section,
    .why-choose-section,
    .we-help-section,
    .popular-product,
    .testimonial-section,
    .before-footer-section,
    .blog-section,
    .footer-section,
    .untree_co-section {
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    .product-section,
    .why-choose-section,
    .we-help-section,
    .testimonial-section,
    .blog-section {
        padding: 7rem 0;
    }
}

/* ===== PRODUCT SECTION RESPONSIVE ===== */
.product-section .product-item {
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 20px 15px 50px 15px;
    cursor: pointer;
    margin-bottom: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .product-section .product-item {
        margin-bottom: 0;
    }
}

.product-section .product-item .product-thumbnail {
    margin-bottom: 20px;
    position: relative;
    top: 0;
    transition: 0.3s all ease;
}

.product-section .product-item h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.product-section .product-item strong {
    font-weight: 800 !important;
    font-size: 18px !important;
}

.product-section .product-item h3,
.product-section .product-item strong {
    color: #2f2f2f;
    text-decoration: none;
}

.product-section .product-item .icon-cross {
    position: absolute;
    width: 35px;
    height: 35px;
    display: inline-block;
    background: #2f2f2f;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -17.5px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
}

.product-section .product-item .icon-cross img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-section .product-item:before {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: #dce5e4;
    height: 0%;
    z-index: -1;
    border-radius: 10px;
    transition: 0.3s all ease;
}

.product-section .product-item:hover .product-thumbnail {
    top: -10px;
}

.product-section .product-item:hover .icon-cross {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.product-section .product-item:hover:before {
    height: 100%;
}

/* ===== WHY CHOOSE SECTION RESPONSIVE ===== */
.why-choose-section .img-wrap {
    position: relative;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .why-choose-section .img-wrap {
        margin-bottom: 0;
    }
}

.why-choose-section .img-wrap:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 170px;
    background-image: url("../images/dots-yellow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-30%, -30%);
    z-index: -1;
}

.why-choose-section .img-wrap img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.feature {
    margin-bottom: 2rem;
}

.feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.feature .icon:before {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    background: rgba(59, 93, 80, 0.2);
    border-radius: 50%;
    right: -6px;
    bottom: 0;
}

.feature h3 {
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
}

/* ===== WE HELP SECTION RESPONSIVE ===== */
.we-help-section .imgs-grid {
    display: block;
    position: relative;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .we-help-section .imgs-grid {
        display: grid;
        grid-template-columns: repeat(27, 1fr);
        margin-bottom: 0;
    }
}

.we-help-section .imgs-grid:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 170px;
    background-image: url("../images/dots-green.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-30%, -30%);
    z-index: -1;
}

.we-help-section .imgs-grid .grid {
    position: relative;
    margin-bottom: 20px;
}

.we-help-section .imgs-grid .grid img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .we-help-section .imgs-grid .grid {
        margin-bottom: 0;
    }
    
    .we-help-section .imgs-grid .grid.grid-1 {
        grid-column: 1 / span 18;
        grid-row: 1 / span 27;
    }
    
    .we-help-section .imgs-grid .grid.grid-2 {
        grid-column: 19 / span 27;
        grid-row: 1 / span 5;
        padding-left: 20px;
    }
    
    .we-help-section .imgs-grid .grid.grid-3 {
        grid-column: 14 / span 16;
        grid-row: 6 / span 27;
        padding-top: 20px;
    }
}

/* ===== CUSTOM LIST RESPONSIVE ===== */
.custom-list {
    width: 100%;
}

.custom-list li {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

@media (min-width: 576px) {
    .custom-list li {
        display: inline-block;
        width: calc(50% - 20px);
    }
}

.custom-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #3b5d50;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ===== POPULAR PRODUCT RESPONSIVE ===== */
.popular-product {
    padding: 0 0 3rem 0;
}

@media (min-width: 768px) {
    .popular-product {
        padding: 0 0 5rem 0;
    }
}

@media (min-width: 992px) {
    .popular-product {
        padding: 0 0 7rem 0;
    }
}

.popular-product .product-item-sm {
    margin-bottom: 2rem;
}

.popular-product .product-item-sm h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 5px;
}

.popular-product .product-item-sm a {
    text-decoration: none;
    color: #2f2f2f;
    transition: 0.3s all ease;
}

.popular-product .product-item-sm a:hover {
    color: rgba(47, 47, 47, 0.5);
}

.popular-product .product-item-sm p {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px;
}

.popular-product .product-item-sm .thumbnail {
    margin-right: 15px;
    flex: 0 0 80px;
    position: relative;
}

@media (min-width: 768px) {
    .popular-product .product-item-sm .thumbnail {
        flex: 0 0 120px;
    }
}

.popular-product .product-item-sm .thumbnail:before {
    content: "";
    position: absolute;
    border-radius: 15px;
    background: #dce5e4;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (min-width: 768px) {
    .popular-product .product-item-sm .thumbnail:before {
        width: 98px;
        height: 98px;
    }
}

/* ===== TESTIMONIAL SECTION RESPONSIVE ===== */
.testimonial-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .testimonial-section {
        padding: 3rem 0 5rem 0;
    }
}

@media (min-width: 992px) {
    .testimonial-section {
        padding: 3rem 0 7rem 0;
    }
}

.testimonial-slider-wrap {
    position: relative;
}

.testimonial-slider-wrap .tns-inner {
    padding-top: 20px;
}

.testimonial-slider-wrap .item .testimonial-block blockquote {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-slider-wrap .item .testimonial-block blockquote {
        line-height: 32px;
        font-size: 18px;
        text-align: left;
    }
}

.testimonial-slider-wrap .item .testimonial-block .author-info {
    text-align: center;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .testimonial-slider-wrap .item .testimonial-block .author-info {
        text-align: left;
    }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
    margin-bottom: 15px;
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
    max-width: 70px;
    border-radius: 50%;
}

.testimonial-slider-wrap .item .testimonial-block .author-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 5px;
}

.testimonial-slider-wrap #testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 100%;
    display: none;
}

@media (min-width: 768px) {
    .testimonial-slider-wrap #testimonial-nav {
        display: block;
    }
}

.testimonial-slider-wrap #testimonial-nav > span {
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(59, 93, 80, 0.1);
    color: #2f2f2f;
    transition: 0.3s all ease;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-slider-wrap #testimonial-nav > span {
        width: 58px;
        height: 58px;
        line-height: 58px;
    }
}

.testimonial-slider-wrap #testimonial-nav > span:hover {
    background: #3b5d50;
    color: #ffffff;
}

.testimonial-slider-wrap #testimonial-nav .prev {
    left: 10px;
}

.testimonial-slider-wrap #testimonial-nav .next {
    right: 10px;
}

.testimonial-slider-wrap .tns-nav {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider-wrap .tns-nav button {
    background: none;
    border: none;
    display: inline-block;
    position: relative;
    width: 0 !important;
    height: 7px !important;
    margin: 2px;
}

.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus,
.testimonial-slider-wrap .tns-nav button:hover {
    outline: none;
    box-shadow: none;
    background: none;
}

.testimonial-slider-wrap .tns-nav button:before {
    display: block;
    width: 7px;
    height: 7px;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    border-radius: 50%;
    transition: 0.3s all ease;
    background-color: #d6d6d6;
}

.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
    background-color: #3b5d50;
}

/* ===== BLOG SECTION RESPONSIVE ===== */
.blog-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .blog-section {
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    .blog-section {
        padding: 7rem 0 12rem 0;
    }
}

.blog-section .post-entry {
    margin-bottom: 3rem;
}

.blog-section .post-entry a {
    text-decoration: none;
}

.blog-section .post-entry .post-thumbnail {
    display: block;
    margin-bottom: 20px;
}

.blog-section .post-entry .post-thumbnail img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    transition: 0.3s all ease;
}

.blog-section .post-entry .post-content-entry {
    padding: 0 10px;
}

.blog-section .post-entry .post-content-entry h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2f2f2f;
}

.blog-section .post-entry .post-content-entry .meta {
    font-size: 14px;
    color: #6a6a6a;
}

.blog-section .post-entry .post-content-entry .meta a {
    font-weight: 600;
    color: #3b5d50;
}

.blog-section .post-entry:hover .post-thumbnail img,
.blog-section .post-entry:focus .post-thumbnail img {
    opacity: 0.7;
    transform: scale(1.05);
}

/* ===== FOOTER RESPONSIVE FIXES ===== */
.footer-section {
    padding: 3rem 0;
    background: #ffffff;
}

@media (min-width: 768px) {
    .footer-section {
        padding: 5rem 0;
    }
}

.footer-section .relative {
    position: relative;
}

.footer-section a {
    text-decoration: none;
    color: #2f2f2f;
    transition: 0.3s all ease;
}

.footer-section a:hover {
    color: rgba(47, 47, 47, 0.5);
}

.footer-section .subscription-form {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

@media (min-width: 992px) {
    .footer-section .subscription-form {
        margin-top: 0;
        margin-bottom: 4rem;
    }
}

.footer-section .subscription-form h3 {
    font-size: 18px;
    font-weight: 500;
    color: #3b5d50;
    margin-bottom: 1rem;
}

.footer-section .subscription-form .form-control {
    height: 50px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-section .subscription-form .form-control {
        margin-bottom: 0;
    }
}

.footer-section .subscription-form .form-control:active,
.footer-section .subscription-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 93, 80, 0.1);
    border-color: #3b5d50;
}

.footer-section .subscription-form .btn {
    border-radius: 10px !important;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-section .subscription-form .btn {
        width: auto;
    }
}

.footer-section .sofa-img {
    display: none; /* Hide on mobile */
}

@media (min-width: 992px) {
    .footer-section .sofa-img {
        display: block;
        position: absolute;
        top: -200px;
        z-index: 1;
        right: 0;
    }
    
    .footer-section .sofa-img img {
        max-width: 300px;
    }
}

@media (min-width: 1200px) {
    .footer-section .sofa-img img {
        max-width: 380px;
    }
}

.footer-section .links-wrap {
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .footer-section .links-wrap {
        margin-top: 54px;
    }
}

.footer-section .links-wrap ul li {
    margin-bottom: 8px;
}

.footer-section .footer-logo-wrap .footer-logo {
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    color: #3b5d50;
    display: block;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-section .footer-logo-wrap .footer-logo {
        font-size: 32px;
    }
}

.footer-section .custom-social li {
    margin: 5px;
    display: inline-block;
}

.footer-section .custom-social li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background: #dce5e4;
    color: #3b5d50;
    border-radius: 50%;
    transition: 0.3s all ease;
}

.footer-section .custom-social li a:hover {
    background: #3b5d50;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-section .border-top {
    border-color: #dce5e4 !important;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-section .border-top.copyright {
    font-size: 14px !important;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section .border-top.copyright {
        text-align: left;
    }
}

/* ===== FORM STYLES ===== */
.form-control {
    height: 50px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
    width: 100%;
}

@media (max-width: 576px) {
    .form-control {
        height: 45px;
        font-size: 13px;
    }
}

.form-control:active,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 93, 80, 0.1);
    border-color: #3b5d50;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;
    color: #6c757d;
}

.form-control::-moz-placeholder {
    font-size: 14px;
    color: #6c757d;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    color: #6c757d;
}

.form-control:-moz-placeholder {
    font-size: 14px;
    color: #6c757d;
}

textarea.form-control {
    height: auto !important;
    min-height: 120px;
    resize: vertical;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: #3b5d50 !important;
}

.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

.mb-mobile-4 {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .mb-mobile-4 {
        margin-bottom: 0;
    }
}

/* ===== CONTAINER FIXES ===== */
.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== FIX FOR SPECIFIC COMPONENTS ===== */
.site-blocks-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.site-blocks-table table {
    width: 100%;
    min-width: 600px;
}

.site-blocks-table .product-thumbnail {
    width: 80px;
}

@media (min-width: 768px) {
    .site-blocks-table .product-thumbnail {
        width: 120px;
    }
}

.site-blocks-table .btn {
    padding: 6px 12px;
    font-size: 13px;
}

.site-blocks-table thead th {
    padding: 20px 15px;
    text-align: center;
    border-width: 0px !important;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
}

.site-blocks-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
}

.site-blocks-table tbody tr:first-child td {
    border-top: 1px solid #3b5d50 !important;
}

.service {
    line-height: 1.5;
    margin-bottom: 2rem;
}

.service .service-icon {
    border-radius: 10px;
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3b5d50;
    margin-right: 20px;
    color: #ffffff;
    font-size: 1.2rem;
}

.thankyou-icon {
    position: relative;
    color: #3b5d50;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.thankyou-icon:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 93, 80, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ===== ADDITIONAL RESPONSIVE FIXES FOR BLADE FILES ===== */

/* Step numbers for process section */
.step-number {
    width: 50px;
    height: 50px;
    background: #3b5d50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px auto;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Card improvements */
.card {
    border: none !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Accordion improvements */
.accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(59, 93, 80, 0.1);
    color: #3b5d50;
}

.accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

/* Alert improvements */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

/* Form improvements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 0.5rem;
}

/* Service icons improvements */
.service {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service:hover {
    background: rgba(59, 93, 80, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #3b5d50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Grid improvements for mobile */
@media (max-width: 768px) {
    .row.g-4 > [class*="col-"] {
        margin-bottom: 1rem;
    }
    
    .display-6 {
        font-size: 2.5rem;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
}

/* Hero section improvements for contact page */
.hero .intro-excerpt h1 {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero .intro-excerpt h1 {
        font-size: 3rem;
    }
}

/* Button group improvements */
.d-flex.flex-wrap.gap-2 {
    gap: 0.5rem !important;
}

/* TikTok button improvements */
.btn-dark {
    background: #000000;
    border-color: #000000;
}

.btn-dark:hover {
    background: #333333;
    border-color: #333333;
}

/* Price cards improvements */
.border.rounded.p-3.mb-3 {
    transition: all 0.3s ease;
}

.border.rounded.p-3.mb-3:hover {
    border-color: #3b5d50 !important;
    transform: translateY(-2px);
}

/* FAQ section improvements */
.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border: none;
    margin-bottom: 0.5rem;
}

.accordion-button {
    border-radius: 10px !important;
}

/* Contact form improvements */
.block {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .block {
        padding: 1.5rem;
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* Horizontal service layout improvements */
.service.horizontal {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .service.horizontal {
        flex-direction: row;
        text-align: left;
    }
}

.service.horizontal .service-icon {
    margin-right: 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service.horizontal .service-icon {
        margin-right: 1rem;
        margin-bottom: 0;
    }
}

/* Lead text improvements */
.lead {
    font-size: 1.1rem;
    color: #6a6a6a;
}

@media (min-width: 768px) {
    .lead {
        font-size: 1.25rem;
    }
}

/* Section padding improvements */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
    .py-5 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Text center on mobile, left on desktop */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Margin utilities for mobile */
.mb-mobile-4 {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .mb-mobile-4 {
        margin-bottom: 0;
    }
}

/* Custom shadow for cards */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Mobile optimization for Process Section */
@media (max-width: 768px) {
    .product-section {
        padding: 2rem 0 !important;
    }
    
    .process-intro {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .process-intro .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-intro p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .product-item {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-item p {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Reduce overall section padding */
    .product-section .container {
        padding: 0 0.5rem;
    }
    
    /* Better grid spacing */
    .row.align-items-stretch {
        margin: 0 -0.5rem;
    }
    
    .row.align-items-stretch > [class*="col-"] {
        padding: 0 0.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .product-section {
        padding: 1.5rem 0 !important;
    }
    
    .product-item {
        padding: 1.25rem 0.875rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 991px) {
    .product-section {
        padding: 3rem 0 !important;
    }
    
    .product-item {
        padding: 1.75rem 1.25rem !important;
    }
}

/* Ensure consistent heights on mobile */
@media (max-width: 768px) {
    .product-item {
        min-height: auto !important;
        height: auto !important;
    }
}