/* Bharat Metals Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    position: relative;
}

p {
    font-family: 'Lato', sans-serif !important;
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.floating-buttons button#backToTop {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #71717177;
    background-color: rgba(255, 255, 255, 0.779);
    backdrop-filter: blur(5px);
}


.section {
    padding: calc(30px + 2vw) 0;
}

.section__head {
    margin-bottom: calc(15px + 4vw);
}

.section__head h2 {
    font-size: calc(22px + 1.5vw);
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(90deg, #585858, #363636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section__tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.section__tag h5 {
    font-size: calc(16px + 0.7vw);
    font-family: 'Ysabeau SC', sans-serif;
    background: linear-gradient(90deg, #565656, #494949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.3s;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: green;
}

.toast.error {
    background: red;
}

/* Header Styles */
.topbar {
    background-color: #000000d2;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
}

.topbar .tb-left a,
.topbar .tb-right a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 12px;
}

.topbar .dot {
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    margin: 0 10px;
}

.social-icons a {
    color: white;
    margin: 0 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ccc;
}





/* Navigation Styles */
.navbar {
    background-color: #ffffffcc !important;
    backdrop-filter: blur(7px) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0;
    flex-direction: column;
}



@media (min-width:992px) {
    .navbar-expand-lg ul.navbar-nav.mb-2.mb-lg-0.main-nav {
        flex-direction: row;
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .mob-none {
        display: none !important;
    }

    .tab-none {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .mob-none {
        display: block !important;
    }

    .tab-none {
        display: none !important;
    }

}

@media (min-width:992px) {
    .desk-none {
        display: block !important;
    }

    .tab-none {
        display: block !important;
    }
}


.brand-logo img {
    max-height: 60px;
}



.navbar-nav .nav-link {
    color: rgb(53, 53, 53) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: #545454 !important;
}

.dropdown-menu {
    background-color: #1a1a1a;
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #333;
    color: white;
}

.link:hover{
    background-color: ;
}





/* Button Light Theme */
.btn-light {
    background: linear-gradient(90deg, #ffffff 0%, #efefef 50%, #ffffff 100%);
    color: #1a1a1a;
    border: solid 1px rgb(178, 178, 178);
    padding: 10px 15px 10px 25px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-light .thin-arrow-container {
    height: 25px;
    width: 25px;
    background: linear-gradient(90deg, #000000 0%, #131313 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}


.btn-light:hover {
    background: linear-gradient(90deg, #000000 0%, #131313 50%, #000000 100%);
    color: white;
    transition: all 0.3s ease;
    border-color: #dadadab4;
}

.btn-light:hover .thin-arrow-container {
    transform: rotate(0deg);
    background: linear-gradient(90deg, #ffffff 0%, #efefef 50%, #ffffff 100%);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Button Light Theme */



/* Button Dark Theme */
.btn-dark {
    background: linear-gradient(90deg, #000000 0%, #131313 50%, #000000 100%);
    color: white;
    border: solid 1px rgba(234, 234, 234, 0.575);
    padding: 10px 15px 10px 25px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-family: 'Ubuntu', sans-serif;
    max-width: fit-content;
}

.btn-dark .thin-arrow-container {
    height: 25px;
    width: 25px;
    background: linear-gradient(90deg, #ffffff 0%, #efefef 50%, #ffffff 100%);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}


.btn-dark:hover {
    background: linear-gradient(90deg, #ffffff 0%, #efefef 50%, #ffffff 100%);
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-color: #787878;
}

.btn-dark:hover .thin-arrow-container {
    transform: rotate(0deg);
    background: linear-gradient(90deg, #000000 0%, #131313 50%, #000000 100%);
    color: white;
    transition: all 0.3s ease;
}

/* Button Dark Theme */














/* Hero Banner Styles */
.hero-banner {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.banner-swiper {
    height: 100%;
}

.swiper-slide {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
}

/* Slide Backgrounds */
.slide-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    margin-bottom: calc(10px + 10vw);
}

.main-content {
    color: white;
}

.sub-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.arrow-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.sub-heading span {
    color: #eaeaea;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.main-title {
    font-size: calc(28px + 1.7vw);
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(90deg, #ffffff, #e7e7e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    color: #dedede;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}

.trusted-by {
    margin-bottom: 40px;
}

.trusted-by span {
    color: #dedede;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.trusted-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trusted Small Carousel */
.trusted-small-carousal {
    width: 100%;
    margin-top: 15px;
}

.trusted-swiper {
    width: 100%;
    height: 60px;
}

.trusted-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.trusted-logo {
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    margin: 0 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}




/* Upcoming Items */
.upcoming-items {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.upcoming-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.card-bg-image {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.upcoming-card h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-arrow {
    display: flex;
    justify-content: flex-end;
    color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-top: -25px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}


/* Footer Styles */
.footer-section {
    background: #111;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-section .social-icons {
    margin-left: auto;
}

.container--footer {
    position: relative;
}

.container--footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/home/cta-bg.webp') no-repeat center top / 1180px auto;
    opacity: 0.06;
    pointer-events: none;
}

.footer-top-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-brand-main {
    margin-bottom: 20px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-icon-footer {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shape-footer {
    width: 25px;
    height: 25px;
    background-color: #1a1a1a;
    border-radius: 5px;
}

.brand-text-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name-footer {
    color: white;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
}

.brand-subtitle {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-name-footer h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: 2px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.partner-logo {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-subtext {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
}

.update-description {
    color: white;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-subscribe .input-group {
    margin-bottom: 20px;
}

.footer-subscribe .footer-input {
    position: relative;
}

.footer-subscribe .form-control {
    background-color: transparent;
    border: 1px solid #555;
    color: white;
    padding: 14px 60px 14px 16px;
    border-radius: 8px;
}

.footer-subscribe .form-control::placeholder {
    color: #999;
}

.footer-subscribe .btn-subscribe {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-subscribe .btn-subscribe:hover {
    background: #eaeaea;
}



.contact-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.contact-item .icon {
    width: 20px;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    background-color: #2b2b2b87;
    padding: 20px 0;
    margin-top: 40px;
    backdrop-filter: blur(1px);
}

.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .upcoming-items {
        margin-top: 40px;
    }

    .company-name-footer h1 {
        font-size: 2rem;
    }

    .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }

    .hero-banner {
        height: 100vh;
    }

    .swiper-slide {
        height: 100vh;
    }

    .brand-logo {
        flex-direction: column;
        gap: 5px;
    }

    .brand-name {
        font-size: 16px;
    }
}

/* Products Section */
.section--products {
    background-color: #f8f9fa;
    overflow: hidden;
}

.section--products .section__head {
    margin-bottom: 0;
}


.section--new-products {
    background-color: #f8f9fa;
    overflow: hidden;
}

.section__head {
    margin-bottom: 50px;
}





.section__tag h5 strong {
    color: #e74c3c;
    font-weight: 700;
}








/* New Products Swiper */
.new-products-swiper {
    padding: 40px 0;
    overflow: visible;
}

.new-products-swiper .swiper-wrapper {
    align-items: stretch;
}

.new-products-swiper .swiper-slide {
    height: auto;
    padding: 0 15px;
}

.new-product-card {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.new-product-card__image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-product-card__badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.725);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    z-index: 2;
}

.new-product-card__badge span {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new-product-card__footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.473);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.new-product-card__text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.new-product-card__arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.new-product-card:hover .new-product-card__arrow {
    background-color: #ffffff;
    color: #333;
}

.new-product-card__arrow svg {
    width: 18px;
    height: 18px;
}

.new-products-swiper .swiper-button-next,
.new-products-swiper .swiper-button-prev {
    color: #333;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none;
}

.new-products-swiper .swiper-button-next:hover,
.new-products-swiper .swiper-button-prev:hover {
    background: #333;
    color: white;
}

.new-products-swiper .swiper-button-next:after,
.new-products-swiper .swiper-button-prev:after {
    font-size: 18px;
}

@media (max-width: 768px) {
    .new-product-card {
        min-height: 350px;
    }

    .new-product-card__image {
        min-height: 350px;
    }

    .new-product-card__badge {
        top: 15px;
        padding: 6px 15px;
    }

    .new-product-card__badge span {
        font-size: 12px;
    }

    .new-product-card__text {
        font-size: 14px;
    }

    .new-product-card__arrow {
        width: 25px;
        height: 25px;
    }
}

/* Featured Products Swiper */
.featured-products-swiper {
    padding: 40px 0;
    overflow: visible;
}

.featured-products-swiper .swiper-slide {
    margin: 0 calc(30px + 1vw);
}



.featured-products-swiper .swiper-wrapper {
    align-items: center;
}

.product-card {
    background: transparent !important;
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

/* Active Center Slide Styling */
.swiper-slide-active-center .product-card {
    transform: scale(1.25);
    z-index: 10;
}

.swiper-slide-active-center {
    position: relative;
}





/* Scale down non-active slides */
.featured-products-swiper .swiper-slide:not(.swiper-slide-active-center) .product-card {
    transform: scale(0.9);
    opacity: 0.7;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-info {
    padding: calc(15px + 1vw);
    background-color: transparent !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: solid 1px #dfdfdf;
    margin-right: 25px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 14px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.stock-status {
    margin-bottom: 10px;
}

.in-stock {
    color: #27ae60;
    font-size: 14px;
    font-weight: 500;
}

.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.out-of-stock{
    color: rgb(236, 46, 46);
    font-size: 14px;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.buy-now-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.buy-now-btn:hover {
    background: #333;
    transform: translateX(2px);
}

.buy-now-btn i {
    width: 20px;
    height: 20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Swiper Navigation */
.featured-products-swiper .swiper-button-next,
.featured-products-swiper .swiper-button-prev {
    color: #333 !important;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-top: -22px;
}

.featured-products-swiper .swiper-button-next:after,
.featured-products-swiper .swiper-button-prev:after {
    font-size: 18px;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #f3f3f39c;
        padding: 20px;
        margin-top: 10px;
        border: solid 1px #e0e0e0;
    }

    .dropdown-menu {
        background-color: #f7f7f7;
        color: #000;
    }

    li.nav-item .btn-light {
        max-width: fit-content;
    }

    .dropdown-item {
        color: rgb(90, 90, 90);
        padding: 10px 20px;
        transition: background-color 0.3s ease;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #bababa;
    }

    ul.dropdown-menu.show {
        border: none;
    }

    .section--products {
        padding: 60px 0;
    }

    .section__head h2 {
        font-size: 2rem;
    }

    .section__tag {
        flex-direction: column;
        gap: 10px;
    }

}










.section--cta .container {
    background: linear-gradient(rgba(214, 214, 214, 0.4), rgba(207, 207, 207, 0.4)),
        url('../images/home/cta-bg.webp') no-repeat center center / cover;
    color: #fff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: calc(15px + 1vw) calc(15px + 4vw);
    border-radius: calc(20px + 2vw);
}

.section--cta h2 {
    font-size: calc(22px + 1.5vw);
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(90deg, #585858, #363636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section--cta p {
    font-family: 'Unbounded', sans-serif;
    color: #585858;
}

.cta--btn {
    margin-top: 20px;
    max-width: fit-content;
    display: flex;
}











.section--about .section__tag {
    justify-content: start;
}

/* What We Do Section */
.section--whatwedo {
    position: relative;
    padding: 80px 0;
}

.container.wwd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.whatwedo-wrapper {
    position: relative;
    min-height: 520px;
}

.whatwedo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 38vw, 520px);
    height: clamp(280px, 38vw, 520px);
    background: url('../images/home/what-we-do-card-bg.png') no-repeat center center / contain;
    opacity: 0.62;
    pointer-events: none;
}

.whatwedo-card {
    background: #ffffffa5;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 28px 28px 34px;
    text-align: center;
    position: relative;
}

.whatwedo-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #3a3a3a;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.whatwedo-card__title span {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
}

.whatwedo-card__desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 14px;
    max-width: 640px;
}

.whatwedo-bubble {
    position: absolute;
    width: clamp(120px, 16vw, 180px);
    height: clamp(120px, 16vw, 180px);
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    outline: 2px solid rgba(0, 0, 0, 0.06);
}

.whatwedo-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatwedo-bubble--tl {
    top: 40px;
    left: 6%;
}

.whatwedo-bubble--tr {
    top: 40px;
    right: 6%;
}

.whatwedo-bubble--bl {
    bottom: 40px;
    left: 6%;
}

.whatwedo-bubble--br {
    bottom: 40px;
    right: 6%;
}

@media (max-width: 991px) {
    .section--whatwedo {
        padding: 60px 0;
    }

    .whatwedo-wrapper {
        min-height: 460px;
    }

    .whatwedo-bubble--tl {
        top: 20px;
        left: 4%;
    }

    .whatwedo-bubble--tr {
        top: 20px;
        right: 4%;
    }

    .whatwedo-bubble--bl {
        bottom: 20px;
        left: 4%;
    }

    .whatwedo-bubble--br {
        bottom: 20px;
        right: 4%;
    }
}

@media (max-width: 576px) {
    .whatwedo-bubble {
        display: none;
    }
}













.contact-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: calc(20px + 1vw);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}


.contact-form label {
    margin-bottom: 7px;
    margin-top: 12px;
}












/* Testimonials */
.section--testimonials {
    position: relative;
}

.section--testimonials .swiper-slide {
    height: 100% !important;
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/home/cta-bg.webp') no-repeat center 30% / 900px auto;
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.testimonial-card__icon span {
    font-size: 46px;
    line-height: 1;
    color: #cfcfcf;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__body {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.8;
    padding: calc(10px + 0.6vw);
    border-top: solid 1px #ededed;
}

.testimonial-card__footer {
    position: absolute;
    right: 20px;
    bottom: 14px;
    color: #cfcfcf;
    font-size: 28px;
}

/* FAQ */
.section--faq {}

.faq-accordion {
    margin: 0 auto;
    max-width: calc(900px + 4.5vw);
}

.faq-item+.faq-item {
    margin-top: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 16px 18px;
    font-weight: 600;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif !important;
}

.faq-number {
    color: #666;
}

.faq-answer {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-top: 0;
    padding: 12px 18px 16px;
    color: #666;
    font-size: 14px;
    display: none;
    font-family: 'Lato', sans-serif !important;
}

@media (max-width: 767px) {
    .section--testimonials {
        padding: 60px 0 30px;
    }

    .testimonial-card {
        margin-top: 10px;
    }
}

/* Testimonials Swiper overrides */
.testimonials-swiper {
    padding-top: 10px;
}

.testimonials-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.testimonials-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #bdbdbd;
    opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #333;
}








.cgta-newsletter input {
    background: transparent;
    border: none;
    color: #ffffff;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Lato', sans-serif;
}

.cgta-newsletter input:focus {
    color: #000000;
}

















/* -----------  Inner Pages  ----------- */



.section-inner-banner {
    padding-top: calc(70px + 4vw);
}

/* -----------  Customization Pages  ----------- */

/* Customization Hero Section */
.section--customization-hero {
    margin-top: calc(20px + 4vw);
    padding: calc(100px + 5vw) 0;
    padding-bottom: calc(40px + 2vw);
    background:
        linear-gradient(135deg, #f8f9fa 0%, rgba(255, 255, 255, 0) 100%),
        url('../images/elevator/elevator-customization-banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.customization-main-title {
    font-size: calc(28px + 2vw);
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(90deg, #585858, #363636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.customization-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.hero-cta-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

.no-worry-text {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: calc(15px + 2.5vw);
    text-align: center;
}

/* Customization Intro Card */
.customization-intro-card {
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(255, 255, 255, 0) 100%),
        url('../images/elevator/cta-circular-bg-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}


.customization-intro-content h3 {
    font-size: calc(24px + 1vw);
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

.steps-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

.steps-badge-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 150px; */
    /* height: 150px; */
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    /* margin: 20px 0; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

.steps-number-large {
    font-size: 28px;
    font-family: 'Unbounded', sans-serif;
}

.customization-heading {
    font-size: calc(24px + 1.5vw);
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.steps-image-wrapper {
    max-width: 300px;
    margin: 0 auto;
}

.steps-image-wrapper img {
    border-radius: 50%;
}

.customization-intro-image img {
    border-radius: 15px;
}

/* Product Options Section */
.section--product-options {
    background: #f8f9fa;
}

.option-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.option-card-image {
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.option-card-content {
    padding: 25px;
}

.option-card-content h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.option-card-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
}

/* 3D Selection Section */
.section--3d-selection {
    background: white;
}

.elevation-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.elevation-placeholder:hover {
    border-color: #333;
    background: #f0f0f0;
}

.elevation-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
}

.elevation-placeholder p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Start Designing Section */
.section--start-designing {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
}

.start-designing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.start-designing-card h3 {
    font-size: calc(24px + 1vw);
    font-family: 'Unbounded', sans-serif;
    color: white;
    margin-bottom: 15px;
}

.start-designing-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.design-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

/* Customization Step Pages */
.section--customization-step {
    padding-top: calc(100px + 4vw);
    padding-bottom: calc(40px + 2vw);
    background: #f8f9fa;
}

/* Progress Bar */
.customization-progress {
    margin-bottom: 50px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-item.completed .step-number {
    background: #28a745;
    color: white;
}

.step-item.completed .step-number::after {
    content: '✓';
    font-size: 24px;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.step-item.active .step-label {
    color: #333;
    font-weight: 600;
}

.progress-bar-container {
    width: 100%;
    max-width: 600px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #333 0%, #555 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Step Content */
.step-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Model Cards */
.model-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.model-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.model-card.active {
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.model-card {
    position: relative;
}

.model-card.active::before {
    content: '✓ Selected';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #333;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.model-image {
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.model-info {
    padding: 25px;
}

.model-info h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.model-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.model-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.feature-card.active {
    border-color: #333;
    background: #f8f9fa;
}

.feature-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-info {
    padding: 20px;
}

.feature-info h5 {
    font-size: 18px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 5px;
}

.feature-info p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Feature Option Cards */
.feature-option-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-option-card:hover {
    border-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-option-card .form-check-label {
    cursor: pointer;
    width: 100%;
}

.feature-option-card .form-check-label strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.feature-option-card .form-check-label p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Customization Sections */
.customization-section {
    margin-top: 40px;
}

.section-subtitle {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Step Navigation */
.step-navigation {
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    display: flex;
}

/* Review Summary */
.review-summary {
    margin-top: 40px;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.summary-title {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    padding-top: 30px;
    margin-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.summary-label {
    font-weight: 600;
    color: #666;
    font-size: 16px;
}

.summary-value {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    text-align: right;
}

.summary-value.price {
    font-size: 24px;
    color: #333;
}

.summary-divider {
    height: 2px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h4 {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: #666;
    margin-bottom: 30px;
}

.customization-form .form-group {
    margin-bottom: 20px;
}

.customization-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.customization-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.customization-form .form-control:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.1);
}

/* Download Section */
.download-section {
    margin-top: 50px;
}

.download-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid #e0e0e0;
}

.download-icon {
    font-size: 60px;
    color: #333;
    margin-bottom: 20px;
}

.download-card h4 {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.download-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .customization-main-title {
        font-size: calc(22px + 1.5vw);
    }

    .customization-intro-card {
        padding: 25px;
    }

    .step-content {
        padding: 30px 20px;
    }

    .progress-steps {
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .summary-card,
    .contact-form-card {
        padding: 25px;
    }

    .download-card {
        padding: 30px;
    }
}

/* -----------  Customization Page New Sections  ----------- */

.section-title-large {
    font-size: calc(18px + 1.5vw);
    font-family: 'Unbounded', sans-serif;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section--door-styles .section__tag {
    justify-content: flex-start;
}

/* Door Styles Section */
.section--door-styles {
    background: #f8f9fa;
}

.door-styles-content h2 {
    margin-bottom: 20px;
}

.door-styles-visual {
    padding: 20px;
}

.door-styles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.door-style-item {
    position: relative;
}

.door-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.door-placeholder:hover {
    border-color: #333;
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.door-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
}

.door-placeholder p {
    color: #666;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

/* Smart Panel Section */
.section--smart-panel {
    background: white;
}

.panel-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.panel-image-item {
    position: relative;
}

.panel-placeholder {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel-placeholder:hover {
    border-color: #333;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.panel-placeholder i {
    font-size: 36px;
    color: #999;
    margin-bottom: 10px;
}

.panel-placeholder p {
    color: #666;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.panel-display-item {
    width: 100%;
}

.panel-display-placeholder {
    background: #8B4513;
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel-display-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.panel-display-placeholder p {
    margin: 0;
    font-weight: 500;
}

.panel-content-box {
    background: #d4edda;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #28a745;
}

.panel-content-box h2 {
    color: #155724;
}

.panel-content-box p {
    color: #155724;
    line-height: 1.8;
}

/* Hall Doors Section */
.section--hall-doors {
    background: #f8f9fa;
}

.hall-doors-content-box {
    background: #d4edda;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #28a745;
}

.hall-doors-content-box h2 {
    color: #155724;
}

.hall-doors-content-box p {
    color: #155724;
    line-height: 1.8;
}

.hall-doors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hall-door-item {
    position: relative;
}

.hall-door-placeholder {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hall-door-placeholder:hover {
    border-color: #333;
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hall-door-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
}

.hall-door-placeholder p {
    color: #666;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

/* Product Service Section */
.section--product-service {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-placeholder:hover {
    border-color: #333;
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-placeholder i {
    font-size: 60px;
    color: #999;
    margin-bottom: 20px;
}

.service-placeholder p {
    color: #666;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

/* No Confusion Section */
.section--no-confusion {
    background: #f0f0f0;
}

.confusion-illustration {
    text-align: center;
}

.illustration-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 100px 50px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.illustration-placeholder:hover {
    border-color: #333;
    background: #f8f9fa;
}

.illustration-placeholder i {
    font-size: 80px;
    color: #999;
    margin-bottom: 20px;
}

.illustration-placeholder p {
    color: #666;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.no-confusion-content h2 {
    color: #333;
}

.no-confusion-content .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Responsive Styles for Customization */
@media (max-width: 768px) {
    .customization-main-title {
        font-size: calc(22px + 1.5vw);
    }

    .customization-heading {
        font-size: calc(20px + 1vw);
    }

    .steps-badge-large {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }

    .steps-number-large {
        font-size: 22px;
    }

    .section-title-large {
        font-size: calc(18px + 1vw);
    }

    .door-styles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .panel-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hall-doors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .panel-content-box,
    .hall-doors-content-box {
        padding: 25px;
    }

    .illustration-placeholder {
        padding: 60px 30px;
        min-height: 300px;
    }
}

/* -----------  Blog Page Styles  ----------- */

.section--blog-hero {
    padding-top: calc(100px + 4vw);
    padding-bottom: calc(40px + 2vw);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Headers */
.section-header-with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: calc(24px + 1vw);
    font-family: 'Unbounded', sans-serif;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #555;
}

/* Featured Post Section */
.section--featured-post {
    background: white;
}

.featured-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.featured-blog-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-blog-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    font-size: 14px;
}

.blog-title {
    font-size: calc(24px + 1vw);
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #555;
    gap: 12px;
}

/* Blog Sidebar Card */
.blog-sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.blog-sidebar-card h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

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

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-links-list a:hover {
    background: #f8f9fa;
    color: #333;
    padding-left: 15px;
}

.quick-links-list i {
    font-size: 12px;
    color: #999;
}

/* Latest Posts Section */
.section--latest-posts {
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-overlay-btn {
    background: white;
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-overlay-btn:hover {
    transform: scale(1.05);
    color: #333;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-small {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
}

.blog-meta-small span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #555;
    gap: 12px;
}

/* Categories Section */
.section--blog-categories {
    background: white;
}

.category-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    border-color: #333;
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.category-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.category-card h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Popular Posts Section */
.section--popular-posts {
    background: #f8f9fa;
}

.popular-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.popular-post-image {
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-card:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popular-post-content h4 {
    font-size: 18px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.popular-post-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Tags Section */
.section--blog-tags {
    background: white;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag-item {
    background: #f8f9fa;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-item:hover {
    background: #333;
    color: white;
    border-color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Newsletter Section */
.section--blog-newsletter {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-card h3 {
    font-size: 28px;
    font-family: 'Unbounded', sans-serif;
    color: white;
    margin-bottom: 15px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    border-radius: 25px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 25px;
    white-space: nowrap;
}

/* Archive Section */
.section--blog-archive {
    background: #f8f9fa;
}

.archive-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.archive-item {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.archive-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.archive-year {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    font-weight: 700;
    min-width: 80px;
}

.archive-months {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-grow: 1;
}

.archive-months a {
    background: #f8f9fa;
    color: #666;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.archive-months a:hover {
    background: #333;
    color: white;
    border-color: #333;
    text-decoration: none;
}

/* Sidebar Widgets */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

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

.recent-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    text-decoration: none;
    color: inherit;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: transform 0.3s ease;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.recent-post-content h5 {
    font-size: 16px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content span {
    font-size: 12px;
    color: #999;
}

/* Responsive Styles for Blog */
@media (max-width: 768px) {
    .section-header-with-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .featured-blog-image {
        height: 250px;
    }

    .featured-blog-content {
        padding: 25px;
    }

    .blog-title {
        font-size: calc(20px + 1vw);
    }

    .blog-card-image {
        height: 200px;
    }

    .popular-post-image {
        min-height: 150px;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .archive-item {
        flex-direction: column;
        gap: 15px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}


/* -----------  Product Detail Page Styles  ----------- */

.section--product-hero {
    background: #fafafa;
}

.product-breadcrumb {
    margin-bottom: 20px;
}

.product-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.product-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #999;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-gallery {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.product-main-image {
    border-radius: 15px;
    overflow: hidden;
    background: #f7f7f7;
    padding: 40px;
    text-align: center;
}

.product-main-image img {
    max-height: 420px;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.product-thumbnails img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 10px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.product-thumbnails .thumbnail-item.active img,
.product-thumbnails .thumbnail-item:hover img {
    border-color: #333;
}

.product-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.product-status {
    text-transform: uppercase;
    font-weight: 700;
}

.product-status.in-stock {
    color: #27ae60;
}

.product-detail-title {
    font-size: 32px;
    font-family: 'Unbounded', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-short-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.product-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-badge {
    background: #ffe4e1;
    color: #d35400;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 10px;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.divider {
    height: 1px;
    width: 100%;
    background: #eee;
    margin: 25px 0;
}

.product-options label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    color: #444;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-dot.active,
.color-dot:hover {
    border-color: #333;
}

.size-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.size-btn {
    border: 1px solid #ccc;
    padding: 10px 18px;
    border-radius: 30px;
    background: white;
    font-weight: 600;
    cursor: pointer;
}

.size-btn.active,
.size-btn:hover {
    background: #111;
    color: white;
    border-color: #111;
}

.product-cta {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.product-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.assurance-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    align-items: flex-start;
}

.assurance-item i {
    font-size: 24px;
    color: #333;
}

.assurance-item h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.assurance-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.section--product-highlights .highlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.highlight-card i {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-size: 18px;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 10px;
}

.section--product-specs {
    background: #f8f9fa;
}

.spec-highlight-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.spec-highlight-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.spec-highlight-list li::before {
    content: '\\2022';
    position: absolute;
    left: 0;
    color: #111;
    font-size: 20px;
    line-height: 1;
}

.spec-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.product-spec-table th {
    width: 35%;
    color: #777;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.product-spec-table td {
    font-weight: 600;
    color: #333;
}

.section--product-services {
    background: white;
}

.service-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 10px;
}

.service-link {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section--product-description {
    background: #f8f9fa;
}

.description-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.description-card h3 {
    font-size: 26px;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 15px;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.description-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.description-list li::before {
    content: '\\2713';
    position: absolute;
    left: 0;
    color: #27ae60;
}

.description-image img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.section--product-reviews {
    background: white;
}

.review-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    height: 100%;
}

.review-rating {
    display: flex;
    gap: 5px;
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.review-card p {
    color: #555;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.reviewer .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.section--related-products {
    background: #f8f9fa;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-image {
    position: relative;
    padding: 30px;
    background: #f7f7f7;
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.related-image .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.related-image .tag-dark {
    background: #111;
    color: white;
}

.related-content {
    padding: 20px 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-content h4 {
    font-size: 18px;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 8px;
}

.related-content p {
    font-size: 14px;
    color: #777;
    flex-grow: 1;
}

.related-content .price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.related-link {
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

@media (max-width: 991px) {
    .product-assurance {
        grid-template-columns: 1fr;
    }

    .product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-cta {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .product-info-card,
    .product-gallery,
    .description-card {
        padding: 25px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-main-image img {
        max-height: 320px;
    }

    .highlight-card,
    .service-card,
    .review-card {
        padding: 25px;
    }
}


/* -----------  About Us Page Styles  ----------- */

.mission-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.mission-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.stats-wrapper {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    padding: 60px 40px;
    border-radius: 20px;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: calc(36px + 2vw);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* -----------  Contact Us Page Styles  ----------- */

.section--contact-hero {
    padding-top: calc(100px + 4vw);
    padding-bottom: calc(40px + 2vw);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.contact-info-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 22px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #555;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* -----------  Kitchen Page Styles  ----------- */

.feature-card-kitchen {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon-kitchen {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.feature-card-kitchen h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.feature-card-kitchen p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.kitchen-type-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.kitchen-type-image {
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.kitchen-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kitchen-type-card:hover .kitchen-type-image img {
    transform: scale(1.05);
}

.kitchen-type-content {
    padding: 30px;
}

.kitchen-type-content h4 {
    font-size: 22px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.kitchen-type-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.kitchen-type-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.kitchen-type-link:hover {
    color: #555;
}

/* -----------  Interior Page Styles  ----------- */

.interior-service-card {
    background: white;
    /* border-radius: 15px; */
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.service-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.interior-service-card h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.interior-service-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.interior-gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.interior-gallery-item:hover {
    transform: translateY(-5px);
}

.interior-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.interior-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    margin: 0;
}

/* -----------  Elevators Page Styles  ----------- */

.elevator-type-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.elevator-type-image {
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.elevator-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.elevator-type-card:hover .elevator-type-image img {
    transform: scale(1.05);
}

.elevator-type-content {
    padding: 30px;
}

.elevator-type-content h4 {
    font-size: 22px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.elevator-type-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.elevator-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.elevator-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.elevator-features li i {
    color: #28a745;
    font-size: 12px;
}

.elevator-type-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.elevator-type-link:hover {
    color: #555;
}

.elevator-feature-box {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon-elevator {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.elevator-feature-box h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.elevator-feature-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {

    .mission-card,
    .contact-info-card,
    .feature-card-kitchen,
    .interior-service-card,
    .elevator-feature-box {
        padding: 30px 20px;
    }

    .stats-wrapper {
        padding: 40px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .kitchen-type-content,
    .elevator-type-content {
        padding: 20px;
    }
}

/* -----------  Policy Pages Styles  ----------- */

.section--policy-content {
    padding-top: calc(40px + 2vw);
    padding-bottom: calc(40px + 2vw);
    background: #f8f9fa;
}

.policy-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h3 {
    font-size: 28px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.policy-section h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.policy-section a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #555;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

/* -----------  Certifications Page Styles  ----------- */

.section--certifications {
    padding-top: calc(40px + 2vw);
    padding-bottom: calc(40px + 2vw);
}

.certifications-intro {
    margin-bottom: 50px;
}

.certifications-intro .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.certification-icon {
    font-size: 60px;
    color: #333;
    margin-bottom: 20px;
}

.certification-card h3 {
    font-size: 24px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.certification-type {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.certification-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.certification-details p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.certification-details strong {
    color: #333;
}

.section--quality-commitment {
    padding-top: 0;
    padding-bottom: calc(40px + 2vw);
}

.quality-commitment-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.quality-commitment-card h3 {
    font-size: 28px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commitment-item i {
    font-size: 24px;
    color: #28a745;
    margin-top: 5px;
    flex-shrink: 0;
}

.commitment-item h4 {
    font-size: 20px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.commitment-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.section--certification-verification {
    padding-top: 0;
    padding-bottom: calc(40px + 2vw);
}

.verification-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.verification-card h3 {
    font-size: 28px;
    font-family: 'Unbounded', sans-serif;
    color: #333;
}

.verification-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.verification-card a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.verification-card a:hover {
    color: #555;
}

/* Responsive Styles for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }

    .policy-section h3 {
        font-size: 24px;
    }

    .policy-section h4 {
        font-size: 18px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certification-card {
        padding: 30px 20px;
    }

    .quality-commitment-card,
    .verification-card {
        padding: 30px 20px;
    }
}

/* -----------  Contact Modal Styles  ----------- */

.modal-left {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-benefits {
    margin-top: 20px;
}

.benefit-item {
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.contact-info-box {
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0;
}

.contact-info-box a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #555 !important;
}

.modal-right .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.modal-right .input-with-icon .input-group-text {
    background: #f8f9fa;
    border-right: none;
    color: #666;
}

.modal-right .input-with-icon .form-control,
.modal-right .input-with-icon .form-select {
    border-left: none;
    padding-left: 0;
}

.modal-right .input-with-icon .form-control:focus,
.modal-right .input-with-icon .form-select:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.1);
}

#model-continue-btn {
    display: flex !important;
}

.modal-right textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.upcoming-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.upcoming-card:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 991px) {
    .modal-left {
        padding: 30px 20px !important;
    }

    .contact-benefits {
        margin-top: 15px;
    }

    .benefit-item {
        padding: 12px;
    }
}
















/* Highlight selected card - same as hover but persistent */
.feature-card input[type='checkbox']:checked+.feature-image,
.feature-card input[type='radio']:checked+.feature-image {
    border: 2.5px solid #565656;
    box-shadow: 0 0 0 3px #56565633;
    background: #f3fafd;
}

.model-card input[type='radio']:checked+.model-image {
    border: 2.5px solid #565656;
    box-shadow: 0 0 0 3px #56565633;
    background: #f3fafd;
}

/* Fallback for if .active is toggled as well */
.feature-card.active .feature-image {
    border: 2.5px solid #565656;
    background: #f3fafd;
    box-shadow: 0 0 0 3px #56565633;
}

.model-card.active .model-image {
    border: 2.5px solid #565656;
    background: #f3fafd;
    box-shadow: 0 0 0 3px #56565633;
}







.customization-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: calc(20px + 1vw);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}


.form--card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: calc(20px + 1vw);
    max-width: 800px;
    margin: 0 auto;
    position: relative;

}









form#elevator-design-form {
    margin-top: calc(2.5vw + 30px);
    padding: calc(10px + 2vw) !important;
}

form#elevator-design-form .section__head h2 {
    font-size: calc(15px + 1.5vw);

}

/* Hamburger Toggle Styling */
.hamburger-toggle {
    display: inline-block;
    cursor: pointer;
}

.hamburger {
    width: 36px;
    height: 31px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 20px;
    background: #111;
    margin: 0 0 6px 0;
    border-radius: 2px;
    transition: all 0.36s cubic-bezier(0.32, 0.08, 0.24, 1);
    position: relative;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #111;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    background: #111;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #111;
}

/* Make sure navbar-toggler background is transparent */
.navbar-toggler {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 12px;
    margin-left: 10px;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}