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

:root {
    --bg-color: #ffffff;
    --surface-color: #ffffff;
    --gray-bg: #F4F7FA;
    --surface-glass: rgba(255, 255, 255, 0.95);
    --navy: #0B194F;
    --text-main: #1D1D1D;
    --text-muted: #666666;
    --primary: #e31e24;
    --primary-glow: rgba(227, 30, 36, 0.25);
    --primary-gradient: linear-gradient(to right, #e31e24, #ff4e50);
    --border: #e2e8f0;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: #fff;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar i {
    color: var(--primary);
    margin-right: 5px;
}

/* Header */
header {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

#menu-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: none;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Pill / Subtitle */
.pill-subtitle {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(95, 11, 14), rgba(147, 21, 23, 0.579));

    /* background: linear-gradient(to right, rgba(103, 14, 17, 0.95), rgba(241, 95, 97, 0.6)); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 5%;
    transform: translateY(40px);
    transition: all 1s ease-in-out;
    opacity: 0;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slider h1 {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-slider p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Common Section */
.section {
    padding: 7rem 5%;
}

.section-bg {
    background: var(--gray-bg);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

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

.card-icon {
    font-size: 2.5rem;
    color: #fff;
    background: var(--primary-gradient);
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px var(--primary-glow);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.card-icon::before {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.card:hover .card-icon {
    border-radius: 50%;
    transform: rotateY(180deg);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.split-layout:nth-child(even) {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* About Stats Row */
.about-stats-row {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat__num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-stat__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .about-stats-row {
        gap: 1.5rem;
    }

    .about-stat__num {
        font-size: 2rem;
    }
}

/* Contact layout */
.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-form-container {
    flex: 1;
}

.contact-map {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: var(--surface-color);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Product Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 1rem 3rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: start;
    min-width: 340px;
    flex: 0 0 auto;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-nav button {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--navy);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-nav button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer */
footer {
    background: var(--navy);
    color: #fff;
    padding: 6rem 5% 2rem;
    margin-top: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    min-width: 250px;
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    height: 400px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(95, 11, 14), rgba(147, 21, 23, 0.579));

    /* background: linear-gradient(to right, rgba(164, 23, 28, 0.9), rgba(255, 78, 80, 0.7)); */
    z-index: -1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .pill-subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    #menu-icon {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.5rem 5%;
        border-bottom: 1px solid var(--border);
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 5%;
    }

    .page-header {
        padding: 8rem 5% 3rem;
    }

    .split-layout,
    .split-layout:nth-child(even) {
        flex-direction: column;
    }

    .hero-slider {
        height: 80vh;
    }

    .hero-slider h1 {
        font-size: 2.8rem;
    }

    .hero-slider p {
        font-size: 1.1rem;
    }

    .slider-controls {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-map {
        min-height: 400px;
    }

    .footer-col {
        min-width: 100%;
    }
}

/* ═══ SERVICES GRID ═══ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.svc-card {
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.svc-card__icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: var(--primary-gradient);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4);
    transition: all 0.4s ease;
    margin-bottom: 0.5rem;
}

.svc-card:hover .svc-card__icon {
    transform: rotateY(180deg) scale(1.1);
    border-radius: 100%;
}

.svc-card__icon--purple {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.svc-card__icon--teal {
    background: linear-gradient(135deg, #0d9488, #0891b2);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.svc-card__icon--orange {
    background: linear-gradient(135deg, #ea580c, #d97706);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.svc-card__icon--indigo {
    background: linear-gradient(135deg, #4338ca, #6d28d9);
    box-shadow: 0 8px 20px rgba(67, 56, 202, 0.25);
}

.svc-card__icon--yellow {
    background: linear-gradient(135deg, #b45309, #92400e);
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.25);
}

.svc-card__icon--green {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.svc-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
    line-height: 1.3;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.svc-card__link:hover {
    gap: 0.75rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ PRODUCT SHOWCASE ═══ */
.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.product-card--featured {
    background: linear-gradient(135deg, #741313 0%, #911515 100%);
    color: #fff;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card--featured::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.product-card--featured::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -60px;
    left: -40px;
    pointer-events: none;
}

.product-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(79, 11, 11, 0.35);
}

.product-card--featured h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.product-card--featured p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.product-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    width: fit-content;
}

.product-card__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-card__tags span {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card__icon {
    font-size: 2rem;
    color: #fff;
    background: var(--primary-gradient);
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px var(--primary-glow);
    flex-shrink: 0;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s, gap 0.2s;
    margin-top: auto;
}

.product-card__link:hover {
    opacity: 1;
    gap: 0.75rem;
}

.products-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.product-card--sm {
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card--sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--primary);
}

.product-card--sm h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card--sm p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.product-card--sm .product-card__icon {
    font-size: 1.4rem;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-top: 0.15rem;
}

.product-card--sm .product-card__link {
    color: var(--primary);
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .products-showcase {
        grid-template-columns: 1fr;
    }

    .products-showcase__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .products-showcase__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ CLIENT LOGOS ═══ */
.idx-logos {
    background: #FAFBFC;
    padding: 40px 0;
    border-bottom: 1px solid #E8EDF2;
}

.idx-logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C9D1DA;
    font-family: 'Inter', sans-serif;
    margin-bottom: 28px;
}

.idx-marquee {
    overflow: hidden;
    position: relative;
}

.idx-marquee::before,
.idx-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.idx-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #FAFBFC, transparent);
}

.idx-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #FAFBFC, transparent);
}

.idx-marquee-track {
    display: flex;
    gap: 56px;
    align-items: center;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}

.idx-marquee-track img {
    height: 38px;
    transition: all .3s;
    flex-shrink: 0;
}



@keyframes scroll-logos {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ═══ PRODUCTS FULL GRID (products.php) ═══ */
.products-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pf-card {
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

/* Image thumbnail */
.pf-card__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.pf-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pf-card:hover .pf-card__img img {
    transform: scale(1.05);
}

/* Body */
.pf-card__body {
    flex: 1;
    padding: 1.75rem 2rem 1rem;
}

/* Badge */
.pf-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    width: fit-content;
}

/* Icon (kept for backwards compat) */
.pf-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: var(--primary-gradient);
    box-shadow: 0 6px 18px var(--primary-glow);
    flex-shrink: 0;
}

/* Body */
.pf-card__body {
    flex: 1;
    padding: 1.75rem 2rem 1rem;
}

.pf-card__body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.pf-card__body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* Tags */
.pf-card__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pf-card__tags span {
    background: rgba(227, 30, 36, 0.08);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(227, 30, 36, 0.15);
}

/* CTA link */
.pf-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s;
    padding: 0 2rem 1.75rem;
    margin-top: auto;
}

.pf-card__cta:hover {
    gap: 0.75rem;
    opacity: 0.85;
}

/* CTA Band */
.products-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #741313 0%, #911515 100%);
    border-radius: 20px;
    padding: 3rem 4rem;
    flex-wrap: wrap;
}

.products-cta-band h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.products-cta-band p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

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

@media (max-width: 640px) {
    .products-full-grid {
        grid-template-columns: 1fr;
    }

    .products-cta-band {
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }
}

/* ═══ FLOATING CONTACT BUTTONS ═══ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}