body{
    background:#f5f5f5;
}

.section-title{
    margin-top:50px;
    margin-bottom:20px;
    font-weight:bold;
}

/*------------------------------------
Hero Section
------------------------------------*/

.hero-wrapper{

    width:100%;

    margin-top:0;

}

.hero-section{

    position:relative;

    overflow:hidden;

    width:100%;

    min-height:560px;

    background:#111;

    border-radius:0;

    box-shadow:none;

}

.hero-image{

    width:100%;

    height:650px;

    display:block;

    object-fit:cover;

    transition:transform .7s ease;

}

.hero-section:hover .hero-image{

    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    background:
    linear-gradient(

        90deg,

        rgba(0,0,0,.86) 0%,

        rgba(0,0,0,.55) 38%,

        rgba(0,0,0,.18) 70%,

        rgba(0,0,0,.0) 100%

    );

}

.hero-content{

    max-width:560px;

    color:#fff;

    padding:45px;

    background:rgba(12,12,12,.42);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:28px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:40px;

    background:rgba(220,53,69,.15);

    border:1px solid rgba(220,53,69,.40);

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:4.1rem;

    font-weight:800;

    line-height:1.02;

    margin-bottom:25px;

    color:#fff;

    letter-spacing:-1px;

}

.hero-content p{

    font-size:1.08rem;

    line-height:2;

    color:rgba(255,255,255,.88);

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.hero-btn-primary{

    min-width:210px;

    height:58px;

    border-radius:50px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-btn-primary:hover{

    transform:translateY(-8px);

}

.hero-btn-secondary{

    min-width:210px;

    height:58px;

    border-radius:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.hero-btn-secondary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-4px);

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:10px;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:.95rem;

    color:#fff;

    font-weight:600;

}

.hero-feature i{

    color:#ff4d5a;

    font-size:18px;

}

/*------------------------------------
Our Services
------------------------------------*/

.service-card{

    background:#fff;

    border-radius:16px;

    padding:28px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.service-icon{

    width:64px;

    height:64px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#f8f9fa;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#dc3545;

    transition:.3s;

}

.service-card:hover .service-icon{

    background:#dc3545;

    color:#fff;

    transform:scale(1.15);

}

.service-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.7;

}

.services-title::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#dc3545;

    margin:15px auto 0;

    border-radius:20px;

}

/*------------------------------------
Hero Responsive
------------------------------------*/

@media (max-width:991px){

    .hero-section{

        min-height:auto;

    }

    .hero-image{

        height:520px;

    }

    .hero-content{

        padding:40px 20px;

        max-width:100%;

    }

    .hero-content h1{

        font-size:3rem;

    }

}

@media (max-width:768px){

    .hero-image{

        height:580px;

    }

    .hero-overlay{

        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.88)
        );

    }

    .hero-content{

        text-align:center;

        padding:30px;

    }

    .hero-content h1{

        font-size:2.4rem;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

        gap:18px;

    }

}

/*--------------------------------------
Premium Navbar
--------------------------------------*/

.navbar-premium{

    background:#181b1f;

    height:96px;

    padding:0;

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.navbar-logo{

    width:190px;

    height:auto;

    display:block;

}

.navbar-brand{

    display:flex;

    align-items:center;

    width:220px;

    flex:0 0 220px;

}

.navbar-center{

    flex:1;

    display:flex;

    justify-content:center;

}

.navbar-premium > .container{

    height:96px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.05;

}

.brand-title{

    font-size:1.15rem;

    font-weight:800;

    color:#fff;

    letter-spacing:.3px;

}

.brand-subtitle{

    font-size:.72rem;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#b9b9b9;

}

.navbar-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:4px;

    flex-wrap:nowrap;

}

.nav-link{

    position:relative;

    font-weight:600;

    padding:.75rem .75rem !important;

    white-space:nowrap;

    display:flex;

    align-items:center;

    transition:.3s;

}

.nav-link:hover{

    color:#fff !important;

}

.nav-link.active{

    color:#fff !important;

}

.nav-link.active::after{

    content:"";

    position:absolute;

    left:16px;

    right:16px;

    bottom:6px;

    height:3px;

    background:#dc3545;

    border-radius:50px;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*--------------------------------------
Navbar Actions
--------------------------------------*/

.navbar-actions{

    width:260px;

    flex:0 0 260px;

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

/*--------------------------------------
Search Box
--------------------------------------*/

.navbar-search{

    width:240px;

    min-width:220px;

    flex-shrink:1;

}

.navbar-search-btn{

    position:absolute;

    top:50%;

    right:8px;

    transform:translateY(-50%);

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    background:transparent;

    color:#9ea3a8;

    cursor:pointer;

    transition:.25s;

}

.navbar-search-btn:hover{

    color:#dc3545;

    background:transparent;

}

.navbar-search-wrapper{

    position:relative;

    width:100%;

}

.navbar-search-input{

    width:100%;

    height:48px;

    padding-left:18px;

    padding-right:56px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.12);

    background:#23272b;

    color:#fff;

    outline:none;

}

.navbar-search-input::placeholder{

    color:#9ea3a8;

}

.navbar-search-input:focus{

    border-color:#dc3545;

    box-shadow:0 0 0 3px rgba(220,53,69,.15);

}

/*--------------------------------------
Navbar Icons
--------------------------------------*/

.navbar-icon{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    transition:.30s;

    background:rgba(255,255,255,.05);

}

.navbar-icon:hover{

    background:#dc3545;

    color:#fff;

    transform:translateY(-3px);

}

.navbar-premium > .container{

    max-width:1400px;

}

/*--------------------------------------
Premium Product Card
--------------------------------------*/

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    border:none;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.15);

}

.product-image-wrapper{

    position:relative;

    overflow:hidden;

}

.home-product-image{

    width:100%;
    height:240px;

    object-fit:contain;

    padding:18px;

    background:#fff;

    transition:.45s;

}

.product-card:hover .home-product-image{

    transform:scale(1.08);

}

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#dc3545;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

}

.product-body{

    padding:24px;

}

.product-chip{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    background:#fff4f5;

    color:#dc3545;

    border:1px solid rgba(220,53,69,.20);

    font-size:12px;

    font-weight:700;

    margin-bottom:14px;

}

.product-title{

    font-size:1.35rem;

    font-weight:700;

    margin-bottom:12px;

    min-height:60px;

}

.product-description{

    color:#6c757d;

    line-height:1.8;

    min-height:72px;

}

.product-footer{

    margin-top:20px;

}

.product-price{

    font-size:1.8rem;

    font-weight:800;

    color:#212529;

}

.product-stock{

    margin-top:8px;

    font-size:15px;

    font-weight:600;

    color:#198754;

}

.product-stock i{

    margin-right:6px;

}

.product-btn{

    height:52px;

    border-radius:50px;

    background:#dc3545;

    color:#fff;

    font-weight:700;

    border:none;

    transition:.30s;

}

.product-btn:hover{

    background:#bb2d3b;

    color:#fff;

    transform:translateY(-3px);

}

.product-card .btn{

    width:100%;

    border-radius:40px;

    height:48px;

    font-weight:700;

    transition:.30s;

}

.product-card .btn:hover{

    transform:translateY(-3px);

    box-shadow:

        0 12px 28px rgba(220,53,69,.30);

}

/*--------------------------------------
Featured Products Header
--------------------------------------*/

.featured-header{

    margin-bottom:35px;

}

.featured-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(220,53,69,.08);

    border:1px solid rgba(220,53,69,.25);

    color:#dc3545;

    font-size:12px;

    font-weight:700;

    letter-spacing:3px;

}

.featured-title{

    font-size:48px;

    font-weight:800;

    margin-top:20px;

    margin-bottom:18px;

}

.featured-title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#dc3545;

    border-radius:20px;

    margin:18px auto 0;

}

.featured-subtitle{

    max-width:700px;

    margin:auto;

    color:#6c757d;

    line-height:1.9;

    font-size:18px;

}

/*--------------------------------------
Our Services Header
--------------------------------------*/

.services-header{

    margin-bottom:35px;

}

.services-badge{

    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(220,53,69,.08);
    border:1px solid rgba(220,53,69,.25);
    color:#dc3545;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;

}

.services-title{

    font-size:48px;
    font-weight:800;
    margin-top:20px;
    margin-bottom:18px;

}

.services-title::after{

    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#dc3545;
    border-radius:20px;
    margin:18px auto 0;

}

.services-description{

    max-width:700px;
    margin:auto;
    color:#6c757d;
    line-height:1.7;
    font-size:17px;

}

/*--------------------------------------
Product Search
--------------------------------------*/

.product-search{

    margin:60px 0 80px;

}

/*--------------------------------------
Premium Footer
Compact & Modern
--------------------------------------*/

.footer-premium{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-top:32px;
    padding:32px 0 16px;
    background:#181b1f;
    color:#fff;
}

/*--------------------------------------
Footer Main Layout
--------------------------------------*/

.footer-main{
    display:grid;
    grid-template-columns:1.35fr .8fr .9fr 1.15fr;
    gap:42px;
    align-items:start;
}

.footer-company,
.footer-column,
.footer-contact-column{
    min-width:0;
}

/*--------------------------------------
Footer Logo
--------------------------------------*/

.footer-logo{
    width:180px;
    max-width:100%;
    display:block;
    margin-bottom:14px;
}

/*--------------------------------------
Footer Description
--------------------------------------*/

.footer-description{
    max-width:320px;
    margin:0 0 16px;
    color:#aeb4bb;
    font-size:14px;
    line-height:1.7;
}

/*--------------------------------------
Footer Headings
--------------------------------------*/

.footer-premium h5{
    margin:0 0 14px;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

/*--------------------------------------
Footer Links
--------------------------------------*/

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

.footer-links li{
    margin-bottom:8px;
    color:#aeb4bb;
    font-size:14px;
}

.footer-links a{
    color:#aeb4bb;
    text-decoration:none;
    transition:
        color .25s ease,
        padding-left .25s ease;
}

.footer-links a:hover{
    color:#dc3545;
    padding-left:5px;
}

/*--------------------------------------
Footer Contact
--------------------------------------*/

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

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin-bottom:9px;
    color:#aeb4bb;
    font-size:14px;
    line-height:1.5;
}

.footer-contact i{
    width:16px;
    flex-shrink:0;
    margin-top:2px;
    color:#dc3545;
}

/*--------------------------------------
Footer Social
--------------------------------------*/

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#23272b;
    border:1px solid rgba(255,255,255,.06);

    color:#fff;
    text-decoration:none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.footer-social a:hover{
    background:#dc3545;
    color:#fff;
    transform:translateY(-3px);
}

.footer-social .social-icon svg{
    width:18px;
    height:18px;
    fill:currentColor;
    display:block;
}

.footer-social .social-icon{
    display:flex;
    align-items:center;
    justify-content:center;
}

/*--------------------------------------
Footer Bottom
--------------------------------------*/

.footer-divider{
    margin:24px 0 12px;
    border:0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom{
    text-align:center;
    color:#858d96;
    font-size:12px;
    line-height:1.5;
}

/*--------------------------------------
Responsive Footer
--------------------------------------*/

@media (max-width:991px){

    .footer-premium{
        margin-top:30px;
        padding:32px 0 16px;
    }

    .footer-main{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:32px 40px;
    }

    .footer-description{
        max-width:500px;
    }

    .footer-links{
        margin-bottom:0;
    }

}

@media (max-width:767px){

    .footer-premium{
        margin-top:25px;
        padding:30px 0 14px;
        text-align:center;
    }

    .footer-main{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-logo{
        width:160px;
        margin:0 auto 14px;
    }

    .footer-description{
        margin:0 auto 16px;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-premium h5{
        margin-bottom:12px;
    }

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

    .footer-contact li{
        justify-content:center;
        margin-bottom:9px;
        font-size:13px;
    }

    .footer-bottom{
        font-size:11px;
    }

}

/*--------------------------------------
Payment Method
--------------------------------------*/

.payment-method{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.payment-card{

    display:block;

    cursor:pointer;

    margin:0;

}

.payment-card input{

    display:none;

}

.payment-content{

    border:1px solid #dee2e6;

    border-radius:10px;

    padding:15px 18px;

    transition:.25s;

    background:#fff;

}

.payment-title{

    font-weight:600;

    margin-bottom:4px;

}

.payment-card:hover .payment-content{

    border-color:#dc3545;

}

.payment-card input:checked + .payment-content{

    border:2px solid #dc3545;

    background:#fff5f5;

}

@media (min-width: 992px){

    .order-summary{

        position: sticky;

        top: 120px;

    }

}

/*--------------------------------------
Core Commerce Design System
--------------------------------------*/

.section-padding{

    padding:70px 0;

}

.section-padding-sm{

    padding:50px 0;

}

.section-padding-lg{

    padding:90px 0;

}

.section-header{

    margin-bottom:45px;

}

.section-title{

    margin-top:18px;

    margin-bottom:18px;

}

.section-subtitle{

    max-width:720px;

    margin:0 auto;

    line-height:1.8;

}

@media (max-width:991px){

    .section-padding{

        padding:55px 0;

    }

}

@media (max-width:767px){

    .section-padding{

        padding:40px 0;

    }

}

/*--------------------------------------
Service Cards
--------------------------------------*/

.service-card{

    transition:all .30s ease;

    overflow:hidden;

}

.service-card img{

    transition:transform .40s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.service-card:hover img{

    transform:scale(1.05);

}
/*--------------------------------------
Service Description
--------------------------------------*/

.service-description{

    min-height: 72px;

}

/*--------------------------------------
Service Detail Sections
--------------------------------------*/

.service-section-title{

    position:relative;

    padding-bottom:10px;

    margin-bottom:20px;

}

.service-section-title::after{

    content:'';

    width:60px;

    height:3px;

    background:#dc3545;

    position:absolute;

    left:0;

    bottom:0;

}

.service-info-card{

    border:1px solid #e9ecef;

    border-radius:10px;

    transition:.25s;

}

.service-info-card:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.service-poster{

    transition:.35s;

}

.service-poster:hover{

    transform:scale(1.02);

}
/*--------------------------------------
Homepage Refinement / Mobile-First
--------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.service-card-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card .p-4 {
    display: flex;
    flex-direction: column;
}

.service-card .service-description {
    flex: 1;
}

.featured-products-section {
    padding-top: 40px;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.home-product-image-link {
    position: relative;
    display: block;
    background: #fff;
    text-decoration: none;
}

.home-product-image {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: contain;
    padding: 20px;
    transition: transform .35s ease;
}

.home-product-card:hover .home-product-image {
    transform: scale(1.04);
}

.home-product-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 5px 11px;
    border-radius: 30px;
    background: #dc3545;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.home-product-badge-light {
    background: #fff4f5;
    color: #dc3545;
    border: 1px solid rgba(220,53,69,.18);
}

.home-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.home-product-body .product-chip {
    align-self: flex-start;
    margin-bottom: 10px;
}

.home-product-title {
    min-height: 48px;
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
}

.home-product-description {
    min-height: 48px;
    margin-bottom: 14px;
    color: #6c757d;
    font-size: .88rem;
    line-height: 1.6;
}

.home-product-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 16px;
}

.home-product-old-price {
    color: #8a8f94;
    font-size: .78rem;
    text-decoration: line-through;
}

.home-product-price {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 800;
}

.home-product-stock {
    white-space: nowrap;
    font-size: .76rem;
    font-weight: 700;
}

.home-product-stock i {
    margin-right: 3px;
}

.home-product-button {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    font-weight: 600;
}

.section-action-button {
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
}

.home-cta-section {
    padding: 20px 0 80px;
}

.home-cta-card {
    position: relative;
    overflow: hidden;
    padding: 58px 32px;
    border-radius: 24px;
    background:
        linear-gradient(120deg, rgba(15,15,15,.98), rgba(35,35,35,.94));
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.home-cta-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(220,53,69,.18);
}

.home-cta-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 14px;
    color: #ff6672;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-cta-card h2,
.home-cta-card p,
.home-cta-actions {
    position: relative;
    z-index: 1;
}

.home-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.home-cta-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.home-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.home-cta-actions .btn {
    min-width: 170px;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 700;
}

@media (max-width: 1199px) {

    .navbar-premium {
        height: 82px;
    }

    .navbar-premium > .container {
        height: 82px;
    }

    .navbar-brand {
        width: 150px;
        flex-basis: 150px;
    }

    .navbar-logo {
        width: 145px;
    }

    .navbar-actions {
        width: 210px;
        flex-basis: 210px;
    }

    .navbar-search {
        width: 200px;
        min-width: 180px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: .5rem !important;
        padding-right: .5rem !important;
        font-size: .88rem;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

}

@media (max-width: 991.98px) {

    .navbar-premium {
        height: auto;
        min-height: 72px;
    }

    .navbar-premium > .container {
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
    }

    .navbar-brand {
        width: auto;
        flex: 0 0 auto;
    }

    .navbar-logo {
        width: 135px;
    }

    .navbar-collapse {
        width: 100%;
        padding: 10px 0 16px;
    }

    .navbar-center {
        display: block;
        width: 100%;
    }

    .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-link {
        width: 100%;
        padding: .7rem .9rem !important;
        border-radius: 8px;
        font-size: .95rem;
    }

    .nav-link.active::after {
        left: .9rem;
        right: auto;
        bottom: 4px;
        width: 30px;
        height: 2px;
    }

    .navbar-actions {
        width: 100%;
        flex: none;
        margin-top: 8px;
    }

    .navbar-search {
        width: 100%;
        min-width: 0;
    }

    .navbar-search-input {
        height: 44px;
    }

    .hero-image {
        height: 560px;
    }

    .hero-content {
        max-width: 560px;
        padding: 32px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .service-card-image {
        height: 230px;
    }

}

@media (max-width: 767.98px) {

    .section-padding {
        padding: 42px 0;
    }

    .services-header,
    .featured-header {
        margin-bottom: 28px;
    }

    .services-title,
    .featured-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.15;
    }

    .services-description,
    .featured-subtitle {
        max-width: 92%;
        font-size: .95rem;
        line-height: 1.7;
    }

    .services-badge,
    .featured-badge {
        padding: 8px 16px;
        font-size: .65rem;
        letter-spacing: 2px;
    }

    .hero-section {
        min-height: 0;
    }

    .hero-image {
        height: 640px;
        object-position: 62% center;
    }

    .hero-overlay {
        align-items: center;
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.52) 0%,
            rgba(0,0,0,.78) 42%,
            rgba(0,0,0,.94) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 26px 20px;
        border-radius: 20px;
        text-align: center;
        background: rgba(10,10,10,.48);
    }

    .hero-badge {
        margin-bottom: 18px;
        padding: 8px 13px;
        font-size: .62rem;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        margin-bottom: 16px;
        font-size: clamp(2.25rem, 10vw, 3rem);
        letter-spacing: -.5px;
    }

    .hero-content p {
        margin-bottom: 22px;
        font-size: .92rem;
        line-height: 1.7;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        min-width: 0;
        height: 50px;
        font-size: .95rem;
    }

    .hero-features {
        justify-content: center;
        gap: 10px 14px;
    }

    .hero-feature {
        font-size: .76rem;
    }

    .hero-feature i {
        font-size: 15px;
    }

    .service-card {
        border-radius: 14px;
        padding: 0;
    }

    .service-card-image {
        height: 220px;
    }

    .service-card .p-4 {
        padding: 20px !important;
    }

    .service-card h5 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: .88rem;
    }

    .home-product-image {
        height: 220px;
    }

    .home-product-body {
        padding: 18px;
    }

    .home-product-title {
        min-height: auto;
    }

    .home-product-description {
        min-height: auto;
    }

    .home-product-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .home-cta-section {
        padding: 10px 0 48px;
    }

    .home-cta-card {
        padding: 42px 20px;
        border-radius: 18px;
    }

    .home-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-cta-actions .btn {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .navbar-premium > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-logo {
        width: 120px;
    }

    .navbar-toggler {
        padding: 5px 7px;
    }

    .hero-image {
        height: 660px;
    }

    .hero-content {
        padding: 22px 16px;
    }

    .hero-content h1 {
        font-size: 2.15rem;
    }

    .hero-content p {
        font-size: .86rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-feature {
        justify-content: center;
    }

    .service-card-image,
    .home-product-image {
        height: 210px;
    }

    .home-product-badge {
        top: 10px;
        left: 10px;
        font-size: .68rem;
    }

}

.breadcrumb-home {
    color: #dc3545 !important;
    text-decoration: none;
}

.breadcrumb-home:hover {
    color: #b02a37 !important;
}
