/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --secondary: #52b788;
    --accent: #f4a261;
    --accent-dark: #e76f51;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 40px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: var(--white) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

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

.nav-link.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
}

.nav-link.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent);
}

.hero .lead {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero .btn-hero {
    background: var(--accent);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}

.hero .btn-hero:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 162, 97, 0.5);
}

.hero .btn-hero i {
    margin-right: 10px;
}

/* Hero Stats */
.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 50px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-stats .stat p {
    opacity: 0.8;
    margin: 0;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--gray);
    font-size: 1.2rem;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    margin: 0;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover i {
    transform: scale(1.1);
}

.product-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.product-card .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 8px 25px;
    transition: var(--transition);
}

.product-card .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--light);
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card i {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-card .stars {
    color: #f4c542;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark);
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-card .client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .client .name {
    font-weight: 700;
    margin: 0;
}

.testimonial-card .client .title {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-section .btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

footer .social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
}

footer .social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .btn-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* ========================================
   NAVBAR
======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(19, 27, 66, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 30px rgba(19, 27, 66, 0.12);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(45, 106, 79, 0.08);
}

.nav-link.active {
    color: var(--primary) !important;
    background: rgba(45, 106, 79, 0.1);
}

.btn-quote {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.btn-quote:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.3);
}

.btn-quote i {
    margin-right: 8px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Swiper */
.hero-swiper {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide 1 - Dark Blue Background */
.hero-slide-1 {
    background: linear-gradient(135deg, #0f1a4d 0%, #1a2a6c 50%, #2d4a8a 100%);
}

/* Slide 2 - Light Background with Pattern */
.hero-slide-2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Slide 3 - Dark Gradient */
.hero-slide-3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Slide Overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-slide-2::before {
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}

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

/* Hero Text Styles */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-title .highlight {
    color: #f4a261;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(244, 162, 97, 0.3);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Slide 2 - Dark text */
.hero-slide-2 .hero-title {
    color: #0f1a4d;
}

.hero-slide-2 .hero-badge {
    color: #0f1a4d;
    background: rgba(15, 26, 77, 0.08);
    border-color: rgba(15, 26, 77, 0.1);
}

.hero-slide-2 .hero-subtitle {
    color: #555;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #f4a261;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 25px rgba(244, 162, 97, 0.4);
}

.btn-primary-custom:hover {
    background: #e76f51;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(244, 162, 97, 0.5);
    color: white;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.hero-slide-2 .btn-secondary-custom {
    color: #0f1a4d;
    border-color: rgba(15, 26, 77, 0.2);
}

.hero-slide-2 .btn-secondary-custom:hover {
    background: rgba(15, 26, 77, 0.05);
    border-color: #0f1a4d;
    color: #0f1a4d;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 5px;
}

.hero-slide-2 .hero-stats .stat-number {
    color: #0f1a4d;
}

.hero-slide-2 .hero-stats .stat-label {
    color: #666;
}

.hero-slide-2 .hero-stats {
    border-top-color: rgba(15, 26, 77, 0.1);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Image Decorations */
.hero-image-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: rgba(244, 162, 97, 0.1);
    top: -50px;
    right: -50px;
    animation: pulse 4s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: rgba(45, 106, 79, 0.1);
    bottom: -30px;
    left: -30px;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

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

/* Swiper Pagination */
.hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f4a261;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: space-between;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}
/* ========================================
   PRODUCTS PREVIEW
======================================== */
.products-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f1a4d;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.product-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f1a4d;
    margin-bottom: 10px;
}

.product-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.btn-outline:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
    gap: 12px;
}

.btn-outline i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
.products-preview {
        padding: 50px 0;
    }
    
    .product-card {
        padding: 25px 20px;
    }
}
/* ========================================
   PRODUCTS SECTION WITH TABS
======================================== */
.products-tabs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-tabs-section .section-header {
    margin-bottom: 50px;
}

/* Tabs Navigation */
.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.product-tab-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.2);
}

.product-tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}

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

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Card (Grid) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.product-item-image {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-item-image img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-item-image .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item-body {
    padding: 20px 20px 25px;
    text-align: center;
}

.product-item-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1a4d;
    margin-bottom: 8px;
}

.product-item-body p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.product-item-body .btn-quote-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-item-body .btn-quote-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.3);
    color: white;
}

.product-item-body .btn-quote-sm i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.product-item-body .btn-quote-sm:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-tabs-section {
        padding: 50px 0;
    }
    
    .product-tabs-nav {
        gap: 10px;
    }
    
    .product-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        flex: 1;
        text-align: center;
        min-width: 80px;
    }
    
    .product-item-image img {
        height: 140px;
    }
}
/* Add to style.css */
.product-item .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(45, 106, 79, 0.3);
}

.product-item .badge.best-value {
    background: #f4a261;
}

.product-item .badge.top-choice {
    background: #e76f51;
}

.product-item .badge.new-arrival {
    background: #2a9d8f;
}

/* ========================================
   SECTION DIVIDER
======================================== */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 30px;
    border-radius: 2px;
}