:root {
    --primary-red: #c02026;
    --dark-red: rgb(167, 42, 59);
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* ============ HEADER ============ */
.top-bar {
    background: linear-gradient(90deg, #111318, #1a1d24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    position: relative;
    z-index: 99;
}

.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.topbar-left span {
    color: #fff;
}

.topbar-left span:hover {
    color: var(--primary-red);
}

.topbar-left a,
.topbar-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.topbar-left a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.topbar-left i,
.topbar-time i {
    width: 30px;
    height: 30px;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.3s;
}

.topbar-left a:hover i {
    background: var(--primary-red);
    color: #fff;
    transform: rotate(8deg);
}

/* RIGHT SIDE */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-text {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* SOCIAL */
.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
}

.top-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.25);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px) {

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

    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media(max-width:576px) {

    .topbar-left {
        gap: 14px;
    }

    .topbar-left a,
    .topbar-time {
        font-size: 12px;
    }

    .follow-text {
        display: none;
    }

    .top-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

.main-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 75px;
    transition: all 0.3s;
}

.nav-link {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark) !important;
    padding: 15px !important;
    position: relative;
    transition: all 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-link:hover::before {
    width: 50%;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* ================= DROPDOWN ================= */

.custom-dropdown{
    position: relative;
}

.custom-dropdown-menu{
    border: none;
    border-radius: 20px;
    padding: 18px 0;
    min-width: 340px;
    margin-top: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: #fff;
    overflow: hidden;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.custom-dropdown-menu .dropdown-item{
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.3s;
    position: relative;
}

.custom-dropdown-menu .dropdown-item:hover{
    background: rgba(192,32,38,0.08);
    color: var(--primary-red);
    padding-left: 36px;
}

.custom-dropdown-menu .dropdown-item::before{
    content:'';
    position:absolute;
    left:20px;
    top:50%;
    width:0;
    height:2px;
    background:var(--primary-red);
    transform:translateY(-50%);
    transition:0.3s;
}

.custom-dropdown-menu .dropdown-item:hover::before{
    width:8px;
}

/* DESKTOP HOVER DROPDOWN */

@media(min-width:992px){

    .custom-dropdown:hover .dropdown-menu{
        display:block;
    }

}

/* MOBILE */

@media(max-width:991px){

    .custom-dropdown-menu{
        min-width:100%;
        box-shadow:none;
        border-radius:12px;
        margin-top:10px;
        border:1px solid #eee;
    }

    .custom-dropdown-menu .dropdown-item{
        white-space:normal;
        line-height:1.5;
    }

}

/* ============ HERO SLIDER ============ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 100vh;
    position: relative;
    display: flex !important;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(162, 51, 70, 0.8) 50%,
            rgba(10, 10, 10, 0.92) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(196, 30, 58, 0.02) 2px, rgba(196, 30, 58, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(196, 30, 58, 0.02) 2px, rgba(196, 30, 58, 0.02) 4px);
    background-size: 50px 50px;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding: 50px 0 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse-effect 2s ease-in-out infinite;
}

@keyframes pulse-effect {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(196, 30, 58, 0);
    }
}

.hero-badge-text {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    /* background: linear-gradient(135deg, var(--primary-red) 0%, #ff4d6d 100%); */
    background-color: #be2222;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 50px;
}

.btn-hero-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.5);
}

.btn-hero-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-red);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats-bar {
    display: flex;
    gap: 45px;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-visual-panel {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.showcase-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.showcase-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float-badge 6s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.badge-top {
    top: 25px;
    left: -25px;
}

.badge-bottom {
    bottom: 25px;
    right: -25px;
    animation-delay: 3s;
}

.showcase-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.showcase-badge h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.showcase-badge p {
    font-size: 11px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: 30px;
    gap: 8px;
}

.carousel-indicators button {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background: var(--primary-red);
    width: 70px;
}

/* ============ SECTION STYLES ============ */
.section {
    padding: 60px 0;
    position: relative;
}

.section-white {
    background: white;
}

.section-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.our-products-section {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.our-client-section {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.section-dark {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 20px;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 58, 0.15);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 680px;
    line-height: 1.8;
    font-weight: 400;
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ============ ABOUT SECTION ============ */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: 30px;
    background: white;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.experience-badge h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 8px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 0;
}

.about-content {
    padding-left: 50px;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    /* line-height: 1.8; */
    margin-bottom: 13px;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-list li:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============ PRODUCTS SECTION ============ */
.product-card {
    background: white;
    border-radius: 18px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 22px;
    transition: all 0.4s;
}

.product-card:hover .product-icon {
    background: var(--primary-red);
    color: white;
    transform: rotateY(360deg);
}

.product-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 22px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: gap 0.3s;
}

.product-link:hover {
    gap: 12px;
}

/* ============ CREATIVE STATS SECTION ============ */
.stats-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-tech-bg {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(196, 30, 58, 0.02) 0px, rgba(196, 30, 58, 0.02) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(196, 30, 58, 0.02) 0px, rgba(196, 30, 58, 0.02) 1px, transparent 1px, transparent 40px);
}

.stats-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glow-float 12s ease-in-out infinite;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.25) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
    bottom: -180px;
    left: -120px;
    animation-delay: 6s;
}

@keyframes glow-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.stats-container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 50px 28px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(196, 30, 58, 0.15);
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-red);
    box-shadow: 0 25px 70px rgba(196, 30, 58, 0.3);
}

.stat-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-red);
    border-right-color: var(--primary-red);
    opacity: 0;
    transition: all 0.5s;
}

.stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    transform: scale(1.12) rotate(360deg);
    box-shadow: 0 0 40px rgba(196, 30, 58, 0.5);
}

.stat-card:hover .stat-icon-wrapper::before {
    opacity: 1;
    animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-icon-wrapper i {
    font-size: 44px;
    color: var(--primary-red);
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.stat-card:hover .stat-number {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4d6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 16px auto;
    border-radius: 10px;
    transition: all 0.4s;
}

.stat-card:hover .stat-divider {
    width: 80px;
    background: linear-gradient(90deg, var(--primary-red), white, var(--primary-red));
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.stat-card:hover .stat-label {
    color: white;
    letter-spacing: 2px;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: white;
    border-radius: 18px;
    padding: 42px 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.quote-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.rating {
    margin-bottom: 22px;
}

.rating i {
    color: #FFB800;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============ CLIENTS ============ */
.clients-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.client-logo {
    min-width: 200px;
    height: 110px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px;
    padding: 10px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.client-logo i {
    font-size: 44px;
    color: #999;
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logo:hover i {
    color: var(--primary-red);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============ BLOG ============ */
.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* height: 100%; */
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

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

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

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

.blog-category {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-red);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--primary-red);
    margin-right: 4px;
}

.blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 15px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 12px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 10px;
}

.footer-logo img {
    height: 80px;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 12px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 15px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-red);
    margin-right: 0;
    transition: all 0.3s;
}

.footer-links a:hover::before {
    width: 18px;
    margin-right: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--primary-red);
    font-size: 16px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 28px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .hero-stats-bar {
        flex-direction: column;
        gap: 25px;
    }

    .hero-stat::after {
        display: none;
    }

    .stat-number {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }

    .section {
        padding: 70px 0;
    }

    .stat-number {
        font-size: 48px;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}

/* ============================================
   INNER PAGES STYLES - CUSTOM DESIGNS
   Added by: Developer
   Date: May 25, 2026
   ============================================ */

/* ============ PAGE BANNER ============ */
.page-banner {
    background:
        linear-gradient(rgba(54, 53, 53, 0.88), rgba(54, 53, 53, 0.88)),
        url('../images/bread-new.webp') center center/cover no-repeat;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(192, 32, 38, 0.03) 2px, rgba(192, 32, 38, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(192, 32, 38, 0.03) 2px, rgba(192, 32, 38, 0.03) 4px);
    background-size: 50px 50px;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-banner .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--primary-red);
}

.page-banner .breadcrumb-item.active {
    color: white;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============ ABOUT PAGE ============ */
.about-detail-section {
    padding: 100px 0;
    background: white;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 35px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(192, 32, 38, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.exp-badge h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.exp-badge p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0 0 0;
    letter-spacing: 0.5px;
}

.section-label {
    display: inline-block;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 6px 20px;
    background: rgba(192, 32, 38, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(192, 32, 38, 0.15);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.vm-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(192, 32, 38, 0.1), rgba(192, 32, 38, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s;
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    transform: rotateY(360deg);
}

.vm-icon i {
    font-size: 36px;
    color: var(--primary-red);
    transition: color 0.4s;
}

.vm-card:hover .vm-icon i {
    color: white;
}

.vm-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list li i {
    color: var(--primary-red);
    font-size: 18px;
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    background-size: 50px 50px;
}

.counter-box {
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
}

.counter-box:hover .counter-icon {
    background: white;
    transform: scale(1.1);
}

.counter-icon i {
    font-size: 36px;
    color: white;
    transition: color 0.4s;
}

.counter-box:hover .counter-icon i {
    color: var(--primary-red);
}

.counter-num {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.faq-contact-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 35px 30px;
    border-radius: 18px;
    border-left: 4px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.faq-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-contact-icon i {
    font-size: 32px;
    color: white;
}

.faq-contact-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.faq-contact-info p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.faq-contact-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-contact-link:hover {
    gap: 12px;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-accordion .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 25px 30px;
    background: white;
    color: var(--text-dark);
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c02026'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    background: #fafafa;
}

/* ============ BLOG PAGE ============ */
.blog-listing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.blog-meta i {
    color: var(--primary-red);
    margin-right: 5px;
}

.blog-card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.blog-card-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: var(--primary-red);
}

.blog-card-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 15px;
}

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

.sidebar-widget {
    background: white;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
}

.sidebar-widget h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

.category-list {
    list-style: none;
    padding: 0;
}

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

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.category-list a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateX(5px);
}

.cat-count {
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-content h4 a:hover {
    color: var(--primary-red);
}

.recent-post-date {
    font-size: 13px;
    color: var(--text-gray);
}

.recent-post-date i {
    color: var(--primary-red);
    margin-right: 5px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 18px;
    background: #f8f9fa;
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background: var(--primary-red);
    color: white;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 60px;
}

.page-link-custom {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link-custom:hover,
.page-link-custom.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/* ============ BLOG DETAIL PAGE ============ */
.blog-detail-section {
    padding: 100px 0;
    background: white;
}

.blog-detail-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-detail-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(192, 32, 38, 0.03) 2px, rgba(192, 32, 38, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(192, 32, 38, 0.03) 2px, rgba(192, 32, 38, 0.03) 4px);
    background-size: 50px 50px;
}

.blog-detail-header-content {
    position: relative;
    z-index: 2;
}

.blog-detail-cat {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    flex-wrap: wrap;
}

.blog-detail-meta i {
    color: var(--primary-red);
    margin-right: 8px;
}

.blog-featured-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-featured-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-content {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.blog-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 18px;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 25px;
    color: var(--text-gray);
}

.blog-content ul,
.blog-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(192, 32, 38, 0.05), rgba(192, 32, 38, 0.02));
    border-left: 4px solid var(--primary-red);
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
}

.blog-highlight p {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

/* Author Bio */
.author-bio {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.author-info {
    display: flex;
    /* gap: 25px; */
    /* align-items: center; */
    flex-direction: column;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Share Section */
.share-section {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.share-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25d366;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
}

.comments-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
}

.comment-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.comment-author-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
}

.comment-date {
    font-size: 14px;
    color: var(--text-gray);
}

.comment-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
}

.reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
}

/* Comment Form */
.comment-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.comment-form h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 32, 38, 0.3);
}

/* Related Posts */
.related-posts {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.related-post-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.related-post-img {
    height: 220px;
    overflow: hidden;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.related-post-content {
    padding: 25px;
}

.related-post-cat {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.related-post-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-content h4 a:hover {
    color: var(--primary-red);
}

.related-post-meta {
    font-size: 14px;
    color: var(--text-gray);
}

.related-post-meta i {
    color: var(--primary-red);
    margin-right: 5px;
}

/* ============ CONTACT PAGE ============ */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-cards {
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
    transform: rotateY(360deg);
}

.contact-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.contact-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--dark-red);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form>p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 35px;
}

.contact-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.contact-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(192, 32, 38, 0.1);
}

.contact-form .btn-submit {
    width: 100%;
}

/* Office Hours */
.office-hours {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.office-hours h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--primary-red);
    font-weight: 600;
}

/* Map Section */
.map-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* ============ GALLERY PAGE ============ */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-title {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary-red);
    color: white;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: var(--primary-red);
    color: white;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 18px;
}


/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail-section {
    padding: 50px 0;
    background: white;
}

.product-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-detail-info {
    position: sticky;
    top: 100px;
}

.product-detail-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.product-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.stars {
    color: #FFB800;
    font-size: 18px;
}

.rating-text {
    color: var(--text-gray);
    font-size: 14px;
}

.product-detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.product-detail-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
}

.product-detail-features {
    margin-bottom: 35px;
}

.product-detail-features h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.product-detail-features li i {
    color: var(--primary-red);
    font-size: 16px;
}

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

.btn-request-quote {
    flex: 1;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 32, 38, 0.4);
    color: white;
}

.btn-contact {
    flex: 1;
    padding: 18px 35px;
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

/* Product Specs Tab */
.product-specs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.specs-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.tab-content-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px;
    text-align: left;
    color: var(--text-dark);
    background: #f8f9fa;
}

.specs-table td {
    padding: 18px;
    color: var(--text-gray);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .page-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .blog-sidebar {
        position: static;
        top: auto;
        margin-top: 50px;
    }

    .gallery-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .exp-badge {
        bottom: 20px;
        right: 20px;
        padding: 25px 30px;
    }

    .exp-badge h3 {
        font-size: 36px;
    }

    .counter-num {
        font-size: 40px;
    }

    .vm-card {
        padding: 35px 25px;
    }

    .blog-detail-title {
        font-size: 32px;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px;
    }

    .gallery-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

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

    .product-detail-price {
        font-size: 36px;
    }

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

    .tab-content-wrapper {
        padding: 30px 20px;
    }
}

/* END OF INNER PAGES CSS */

/* ============ BLOG LISTING PAGE - FIXED CLASSES ============ */
/* Renamed to avoid conflict with homepage blog section */

.blog-listing-page {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.4s;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-post-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 35px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.blog-post-meta i {
    color: var(--primary-red);
    margin-right: 5px;
}

.blog-post-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.blog-post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-content h3 a:hover {
    color: var(--primary-red);
}

.blog-post-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s;
}

.blog-post-link:hover {
    gap: 15px;
    color: var(--primary-red);
}

/* product detail feature tab */
.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-title i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c02026, #a72a3b);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-title h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(192, 32, 38, 0.08);
    transform: translateX(5px);
}

.feature-item i {
    color: #c02026;
    margin-top: 4px;
    font-size: 14px;
}

.protection-box {
    background: linear-gradient(135deg, #fff5f5, #fff);
}

@media(max-width:767px) {

    .feature-box {
        padding: 25px;
    }

    .feature-title h4 {
        font-size: 22px;
    }

    .feature-list-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= INQUIRY MODAL ================= */

.inquiry-modal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.inquiry-modal .modal-header {
    background: linear-gradient(135deg, #c02026, #a72a3b);
    padding: 25px;
    border: none;
    color: #fff;
}

.inquiry-modal .modal-header h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.inquiry-modal .modal-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

.inquiry-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.inquiry-modal .modal-body {
    padding: 20px;
    background: #fff;
}

.inquiry-modal label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #111;
}

.inquiry-modal .form-control {
    height: 45px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 12px 18px;
    font-size: 15px;
    box-shadow: none;
    transition: 0.3s;
}

.inquiry-modal textarea.form-control {
    height: 100px;
    resize: none;
}

.inquiry-modal .form-control:focus {
    border-color: #c02026;
    box-shadow: 0 0 0 4px rgba(192, 32, 38, 0.1);
}

.submit-inquiry-btn {
    width: 100%;
    border: none;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c02026, #a72a3b);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.submit-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 32, 38, 0.3);
}

@media(max-width:767px) {

    .inquiry-modal .modal-body {
        padding: 25px;
    }

    .inquiry-modal .modal-header {
        padding: 25px;
    }

    .inquiry-modal .modal-header h3 {
        font-size: 26px;
    }

}

/* =================PRODUCT FAQ SECTION ================= */

.product-faq-section {
    padding: 70px 0;
    background:
        linear-gradient(180deg, #fefefe 0%, #c94545 100%);
    position: relative;
    overflow: hidden;
}

.product-faq-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(192, 32, 37, 0.102);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.faq-heading {
    margin-bottom: 70px;
}

.faq-subtitle {
    display: inline-block;
    background: rgba(192, 32, 38, 0.1);
    color: #c02026;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.faq-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
}

.faq-heading p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 17px;
}

/* LEFT CARD */

.faq-side-card {
    background: linear-gradient(135deg, #c02026, #a72a3b);
    border-radius: 30px;
    padding: 50px;
    color: #fff;
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.faq-side-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.faq-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.faq-icon-circle i {
    font-size: 38px;
}

.faq-side-card h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.faq-side-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.faq-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.faq-contact-item i {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-item span {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

.faq-contact-item h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.faq-contact-item a {
    text-decoration: none;
    color: #fff;
}

.faq-contact-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #c02026;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ACCORDION */

.custom-faq-accordion .accordion-item {
    border: none;
    border-radius: 24px !important;
    overflow: hidden;
    margin-bottom: 24px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.custom-faq-accordion .accordion-button {
    background: #fff;
    padding: 28px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #c02026, #a72a3b);
    color: #fff;
}

.custom-faq-accordion .accordion-button::after {
    filter: brightness(0);
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-faq-accordion .accordion-body {
    padding: 28px 30px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.9;
}

/* MOBILE */

@media(max-width:991px) {

    .faq-side-card {
        position: relative;
        top: 0;
    }

    .faq-heading h2 {
        font-size: 38px;
    }

}

@media(max-width:767px) {

    .product-faq-section {
        padding: 70px 0;
    }

    .faq-heading {
        margin-bottom: 45px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-side-card {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .faq-side-card h3 {
        font-size: 28px;
    }

    .custom-faq-accordion .accordion-button {
        font-size: 16px;
        padding: 22px;
    }

    .custom-faq-accordion .accordion-body {
        padding: 22px;
    }

}


.product-image-main img {
    height: 400px;
    object-fit: contain;
}