/*
Theme Name: Franke Faber
Theme URI: https://frankefaber.com
Author: Development Team
Description: Professional, crisp corporate theme for Franke Faber
Version: 2.0
*/

/* Import Inter Font for a sharp, professional look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #E63946;    /* Agency Red from Logo */
    --primary-dark: #C01F2B;     /* Darker Red */
    --secondary-color: #0F172A;  /* Deep Navy/Black for professional text */
    --text-body: #334155;        /* Slate gray for readability */
    --bg-light: #F8FAFC;         /* Very light blue-grey for sections */
    --white: #FFFFFF;
    --border-light: #E2E8F0;
    --accent-yellow: #F59E0B;    /* Gold/Amber for premium accents */
    --container-width: 1200px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Scaffolding */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.5rem; max-width: 65ch; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px; /* Sharper corners */
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}
.btn-white:hover {
    background: #f0f0f0;
}

.section { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--secondary-color); color: var(--white); }
.text-center { text-align: center; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}
.section-subtitle {
    color: #64748B;
    font-size: 1.25rem; /* Larger for better typography */
    font-weight: 300;
    display: block;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 0; /* Center block, add top space */
    line-height: 1.6;
}

/* Utilities */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }

/* Header */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
    font-weight: 500;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
}
.top-bar a { color: var(--white); margin-left: 20px; display: inline-flex; align-items: center; gap: 6px; }

.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-logo img { height: 80px; width: auto; }

.main-navigation ul { display: flex; gap: 2rem; margin: 0; }
.main-navigation a {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}
.main-navigation a:hover, .main-navigation a.active { color: var(--primary-color); }

/* Hero Section - Clean & Sharp */
.hero-wrapper {
    background-color: #F1F5F9; /* Very light slate */
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
}
.hero-image {
    position: relative;
    z-index: 1;
}
.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    margin-top: -2rem; /* Overlap hero slightly if possible, or straight after */
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    background: rgba(0,0,0,0.1);
}
.stat-item h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 0.25rem; }
.stat-item p { margin: 0; font-size: 1rem; font-weight: 500; opacity: 0.9; }

/* Services - Reference Style (Dark Grid) */
.services-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6rem 0;
}
.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: #94A3B8; }

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px; /* Gap for border effect */
    background: rgba(255,255,255,0.1); /* Border color */
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
}
.service-item {
    background: var(--secondary-color);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-item:hover {
    background: #1E293B;
}
.service-icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.service-item h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.service-item p {
    color: #94A3B8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}
.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-box { position: relative; }
.about-img-box img { border-radius: 4px; box-shadow: var(--shadow-lg); }
.about-content h2 { margin-bottom: 1.5rem; }
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Featured Products - Carousel/Grid */
.product-grid-sharp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}
.product-card-sharp {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: transform 0.2s;
}
.product-card-sharp:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.prod-img-box {
    height: 220px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}
.prod-img-box img { max-height: 100%; width: auto; mix-blend-mode: multiply; }
.prod-details { padding: 1.5rem; }
.prod-details h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.prod-cat { color: #64748B; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; }

/* Process Steps */
.process-section { background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}
.step-num {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: -3rem auto 1.5rem;
}

/* Home Inquiry Form Section */
.inquiry-base {
    background: #002147; /* Deep Blue from reference */
    background-image: linear-gradient(rgba(0,33,71,0.9), rgba(0,33,71,0.9)), url('assets/img/hero-banner.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 0;
}
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.inquiry-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.inquiry-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    color: var(--text-body);
}
.form-group { margin-bottom: 1rem; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.form-control:focus { border-color: var(--primary-color); }
.form-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    background: #020617;
    color: #94A3B8;
    padding: 5rem 0 0;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-bottom { 
    padding: 1.5rem 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #94A3B8; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Inner Page Layout Compat */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s;
}
.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Product Compat */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.product-card {
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.product-image {
    height: 240px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}
.product-image img { max-height: 100%; width: auto; }
.product-info { padding: 1.5rem; text-align: center; }
.product-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0; color: var(--secondary-color); }
@media(max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
}

/* Inner Page Hero Compat */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0;
    min-height: 350px; /* Force height if inline style missing */
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85); /* Dark layout overlay */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-section p {
    color: rgba(255, 255, 255, 0.9); 
    font-size: 1.25rem;
}

/* About Content Compat */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
@media(max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
}
.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* Contact Page Compat */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}
@media(max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-icon {
    font-size: 1.5rem;
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-light);
}
.contact-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

/* Features List Compat */
.features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}
.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Form Compat */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea, 
select {
   width: 100%;
   padding: 12px;
   border: 1px solid var(--border-light);
   border-radius: 4px;
   font-family: inherit;
   font-size: 1rem;
   margin-bottom: 1rem;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.wpcf7-submit, input[type="submit"] {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    width: auto;
}

/* Button Variants */
.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
}
.btn-white:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
}
.btn-whatsapp:hover {
    background: #1faf53;
    color: var(--white);
}

/* CTA Buttons Layout */
.cta-section {
    background-color: #F1F5F9;
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}
.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    color: var(--secondary-color);
}
.cta-section p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
/* Refine Buttons */
.btn-white, .btn-whatsapp {
    padding: 1rem 2rem;
    border-radius: 50px; /* Pill shape for modern look */
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-white:hover, .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Process Steps Grid (4 Columns + Arrows) */
/* Process Steps Grid (4 Columns) */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}
.process-steps-grid .service-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Soft, modern shadow */
    border-radius: 16px; /* Stylish rounded corners */
    padding: 2.5rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.process-steps-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-color); /* Red accent line on top */
    opacity: 0;
    transition: opacity 0.3s;
}
.process-steps-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.process-steps-grid .service-card:hover::before {
    opacity: 1;
}

/* Tablet/Mobile Adjustments */
@media (max-width: 992px) {
    .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .process-steps-grid { grid-template-columns: 1fr; }
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s;
}
.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}
.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-item h4::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #E0F2FE; /* Light blue circle */
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.faq-item p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    padding-left: 40px; /* Align with text start */
    line-height: 1.6;
}

/* Responsive / Mobile Menu */
@media (max-width: 992px) {
    .main-navigation {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-light);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }

    .top-bar { display: none; } /* Hide top bar on mobile to save space or stack it */
}

/* AC Feature Grid */
.ac-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ========================================= */
/* MOBILE OPTIMIZATION */
/* ========================================= */

@media (max-width: 992px) {
    /* Tablet & Smaller Laptops */
    .hero-grid, 
    .about-grid, 
    .about-content,
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    /* Fix Hero Order for Mobile */
    .hero-grid { flex-direction: column-reverse; }
    
    /* About Section Text Reset */
    .about-text, .about-text-wrapper { text-align: center; }
    .check-list { display: inline-block; text-align: left; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Large Mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
    
    /* AC Features on Mobile */
    .ac-feature-grid { grid-template-columns: 1fr; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .hero-wrapper { padding: 3rem 0; }
}

@media (max-width: 576px) {
    /* Small Mobile */
    .services-grid-new { 
        grid-template-columns: 1fr; 
    }
    .product-card-sharp, .service-item {
        margin: 0 auto;
        width: 100%;
    }
    .process-steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Form Inputs */
    /* Form Inputs */
    input[type="text"], input[type="email"], input[type="tel"], textarea, select {
        padding: 10px;
    }
}

/* Specific Fixes for "How It Works" & "Inquiry" */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.step-card {
    text-align: center;
    padding: 1rem;
    position: relative;
}
.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .inquiry-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .contact-item { 
        align-items: flex-start; /* Align icon with top line of text */
    }
    .contact-icon {
        flex-shrink: 0; /* Prevent squishing */
    }
    .contact-details h4 {
        margin-top: -4px; /* Align nicer with icon */
    }
}

/* Force Left Align for Contact Info to prevent scattered look */
@media (max-width: 992px) {
    .contact-grid {
        text-align: left !important; 
    }
    .contact-item {
        text-align: left !important;
        justify-content: flex-start !important;
    }
}


/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.category-heading {
    width: 100%;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}
.product-category-section {
    margin-bottom: 50px;
}

/* Product Card Enhancements */
.product-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em; /* Approximate for 2 lines */
    line-height: 1.5;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.product-card .product-image img {
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Filter Button Shine */
.filter-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}
.filter-btn:hover::after {
    left: 100%;
    transition: 0.5s;
}


/* Enhanced Homepage Product Cards */
.product-card-sharp .prod-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.product-card-sharp .prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card-sharp:hover .prod-overlay {
    opacity: 1;
}
.overlay-btn {
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}
.product-card-sharp:hover .overlay-btn {
    transform: translateY(0);
}
.btn-get-quote {
    display: inline-block;
    margin-top: 8px;
    /* color: var(--primary-color); */
    color: #E63946;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #E63946;
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}
.btn-get-quote:hover {
    background: #E63946;
    color: #fff;
}


/* Fix Homepage Product Title Truncation */
.product-card-sharp .prod-details h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em; /* Force consistent height for 2 lines */
    line-height: 1.4;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

