/* ============================================
   MODERN UI REDESIGN - Bold & Modern Theme
   Physiotherapy Equipments Website
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-color: #0066CC;
    --primary-dark: #004999;
    --primary-light: #3399FF;
    --secondary-color: #FF6B35;
    --secondary-dark: #E55A2B;
    --accent-color: #00C49A;
    --dark-color: #1A1A2E;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* Performance: reduce main-thread work on js-lite pages */
.js-lite .compare-table-wrapper,
.js-lite .faq-container,
.js-lite .related-products-grid,
.js-lite .blog-grid,
.js-lite .blog-cards-grid {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

@media (max-width: 768px) {
    .compare-table-wrapper,
    .faq-container,
    .related-products-grid,
    .blog-grid,
    .blog-cards-grid {
        content-visibility: auto;
        contain-intrinsic-size: 1px 800px;
    }
}

/* ---------- Reset & Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Global mobile overflow fix - SINGLE SCROLLBAR SOLUTION */
@media (max-width: 992px) {
    /* html should NOT create a scroll container - just set dimensions */
    html {
        height: auto !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: visible !important; /* NO scrollbar on html */
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* ONLY body handles scrolling */
    body {
        min-height: 100vh !important;
        overflow-x: hidden !important;
        overflow-y: visible !important; /* Let browser default handle it */
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Prevent any element from causing horizontal overflow */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* CRITICAL: Ensure NO nested elements create their own scroll containers */
    main,
    #main-content,
    .page-hero,
    .section,
    section:not(.mobile-menu-container),
    .container,
    .products-page-grid,
    .products-intro,
    .product-page-card,
    article {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Modern Header ---------- */
.modern-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 10px 0;
    color: var(--white);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-contact {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
}

.header-contact a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact a:hover {
    color: var(--secondary-color);
}

.header-certifications {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.85rem;
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.header-cta {
    display: flex;
    gap: 15px;
}

/* ---------- Modern Navigation ---------- */
.modern-nav {
    background: var(--dark-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 18px 22px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--secondary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
}

/* ---------- Page Hero Section (for inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero .breadcrumb a:hover {
    color: #ffffff;
}

.page-hero .breadcrumb span {
    margin: 0 8px;
    color: rgba(255,255,255,0.6);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.page-hero h1 span {
    color: #e67817;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* iOS Safari overflow fix */
    -webkit-overflow-scrolling: touch;
    clip-path: inset(0);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 80px;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-text h1 span {
    color: #e67817;
    display: block;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #e67817;
    color: white;
    box-shadow: 0 10px 30px rgba(230, 120, 23, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: #cf6a13;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 120, 23, 0.5);
}

.hero-buttons .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: #003d73;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.stat-item {
    text-align: center !important;
    padding: 25px 40px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 180px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    isolation: isolate;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e67817, #ffc107, #e67817);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    border-color: rgba(230,120,23,0.5);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffc107 0%, #e67817 50%, #ff8f3d 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    text-align: center;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(230,120,23,0.3);
    letter-spacing: -1px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 8px;
}

.hero-image {
    /* animation removed to prevent mobile overflow */
}

.hero-image img {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ---------- Section Styles ---------- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-alt {
    background: var(--gray-light);
}

/* ---------- Product Cards ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    max-height: 180px;
    width: auto;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card-content {
    padding: 25px;
}

.product-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.product-card-title a {
    color: inherit;
}

.product-card-title a:hover {
    color: var(--primary-color);
}

.product-card-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.product-card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ---------- Features Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ---------- About Section ---------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin: 25px 0;
}

.about-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gray-dark);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Modern Footer ---------- */
.modern-footer {
    background: var(--dark-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    opacity: 0.8;
    margin: 20px 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Footer 2-column links */
.footer-links-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

.footer-links-2col li {
    margin-bottom: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Sidebar ---------- */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 12px 0;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Fix Hero Text Overflow on Mobile - iOS Safari Fix */
    .hero-section {
        padding: 50px 0 40px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    
    .hero-section .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-content {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box;
        text-align: center !important;
    }
    
    .hero-text h1 {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
        text-align: center !important;
        padding: 0 5px !important;
    }
    
    /* Force Physiotherapy Equipment to wrap */
    .hero-text h1 span {
        display: inline !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        font-size: inherit !important;
    }
    
    .hero-text p {
        font-size: 0.85rem !important;
        line-height: 1.7;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        padding: 0 5px !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    /* Hero Stats Mobile Centering */
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
    }
    
    .hero-stats .stat-item {
        width: calc(100% - 30px) !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 20px !important;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        text-align: center !important;
    }
    
    /* COMPACT MOBILE HEADER */
    .header-top {
        padding: 6px 0;
    }
    
    .header-top-content {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .header-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.75rem;
    }
    
    .header-certifications {
        display: none; /* Hide certifications on mobile */
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .header-main-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .header-cta {
        gap: 8px;
    }
    
    .header-cta .btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .header-cta .btn i {
        display: none; /* Hide icons on mobile buttons */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .modern-nav {
        position: relative;
    }
    
    .nav-container {
        position: relative;
        justify-content: flex-end;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        background: #1A1A2E;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 1000;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-align: left;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255,255,255,0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* ---------- Product Hero Section ---------- */
.product-hero {
    background: linear-gradient(135deg, #00529B 0%, #003366 100%);
    padding: 40px 0 60px;
    color: white;
}

.product-hero .breadcrumb {
    margin-bottom: 30px;
}

.product-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.product-hero .breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.product-hero-text h1 span {
    color: #f47621;
}

.product-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.product-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-hero-image {
    text-align: center;
}

.product-hero-image img {
    max-width: 100%;
    max-height: 350px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    object-fit: contain;
    background: white;
    padding: 15px;
}

/* ---------- Applications Grid ---------- */
.applications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.application-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.application-card:hover {
    transform: translateY(-5px);
}

.app-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f47621, #d96a1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.app-icon i {
    color: white !important;
    font-size: 1.2rem;
}

.application-card h4 {
    font-size: 0.95rem;
    color: #003366;
    margin-bottom: 5px;
}

.application-card p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* ---------- Product Listing Cards ---------- */
.product-listing {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-listing .product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
}

.product-listing .product-card:nth-child(even) {
    direction: rtl;
}

.product-listing .product-card:nth-child(even) > * {
    direction: ltr;
}

.product-listing .product-card-image {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: auto;
}

.product-listing .product-card-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.product-code {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f47621, #d96a1c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.product-code.pro-badge {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.product-code.eco-badge {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.eco-col {
    background: linear-gradient(135deg, #27ae60, #1e8449) !important;
}

.btn-sm.btn-eco {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.btn-sm.btn-eco:hover {
    box-shadow: 0 5px 15px rgba(39,174,96,0.3);
}

.product-listing .product-card-content {
    padding: 35px;
}

.product-listing .product-card-content h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.product-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-specs {
    margin-bottom: 15px;
}

.product-specs h5 {
    font-size: 1rem;
    color: #003366;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs h5 i {
    color: #f47621;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    font-size: 0.85rem;
    gap: 10px;
}

.spec-label {
    color: #666;
    flex-shrink: 0;
    min-width: 100px;
}

.spec-value {
    color: #003366;
    font-weight: 600;
    text-align: right;
}

/* Mobile specs grid - single column stacked layout */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
    }
    
    .spec-item {
        flex-direction: column;
        padding: 12px 14px;
        gap: 4px;
    }
    
    .spec-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #888;
        margin-bottom: 2px;
    }
    
    .spec-value {
        text-align: left;
        font-size: 0.95rem;
        color: #003366;
    }
}

.current-types {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.current-badge {
    background: linear-gradient(135deg, #00529B, #003366);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.current-badge i {
    color: #4CAF50;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ---------- Compare Table ---------- */
.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    min-width: 450px;
}

.compare-table thead {
    background: linear-gradient(135deg, #00529B, #003366);
}

.compare-table th {
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.compare-table th small {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.7rem;
    margin-top: 3px;
}

.compare-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.compare-table tbody tr:hover {
    background: #f8f9fa;
}

.compare-table td:first-child {
    text-align: left;
    background: #f8f9fa;
    font-weight: 500;
}

.compare-table .text-green {
    color: #27ae60;
}

.compare-table .text-red {
    color: #e74c3c;
}

.compare-table .action-row td {
    padding: 20px 15px;
    border-bottom: none;
}

/* Table Section Headers for grouped comparisons */
.compare-table .table-section-header td,
.compare-table .highlight-row td {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%) !important;
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e67817;
}

.compare-table .table-section-header td strong,
.compare-table .highlight-row td strong {
    color: white;
}

.compare-table .table-section-header td i,
.compare-table .highlight-row td i {
    color: #e67817;
    margin-right: 8px;
}

/* NA cells for features not available in certain models */
.compare-table .na-cell {
    color: #aaa;
    font-style: italic;
    background: #f5f5f5 !important;
}

/* Equal width columns for compare table */
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
    width: 16%;
    min-width: 120px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    width: 20%;
    min-width: 140px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #f47621, #d96a1c);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244,118,33,0.3);
    color: white;
}

/* ---------- FAQ Section ---------- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #003366;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #f47621;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-answer.show {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Longer FAQ answers - for accessory lists etc */
.faq-answer-long.show {
    max-height: 1500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ---------- Content Grid Layout ---------- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text h4 {
    color: #003366;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-text p {
    color: #666;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 10px 0;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefits-list li i {
    color: #27ae60;
    margin-top: 3px;
}

.content-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-list-inline li {
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    color: #003366;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---------- Features Grid ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Homepage specific - 4 columns for 4 items */
.features-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00529B, #003366);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-item .feature-icon i {
    color: white !important;
    font-size: 1.5rem;
}

.feature-item h4 {
    color: #003366;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Product Applications ---------- */
.product-applications {
    margin-bottom: 15px;
}

.product-applications h5 {
    font-size: 1rem;
    color: #003366;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-applications h5 i {
    color: #f47621;
}

.product-applications p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.product-therapies {
    margin-bottom: 15px;
}

.product-therapies h5 {
    font-size: 1rem;
    color: #003366;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-therapies h5 i {
    color: #f47621;
}

.product-therapies p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ---------- Product CTA Box ---------- */
.product-cta-box {
    background: linear-gradient(135deg, #f47621, #d96a1c);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.product-cta-box h2 {
    color: white;
    margin-bottom: 15px;
}

.product-cta-box h2 i {
    margin-right: 10px;
}

.product-cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.product-cta-box .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

.product-cta-box .btn-primary {
    background: white;
    color: #f47621;
}

.product-cta-box .btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- Product Page Responsive ---------- */
@media (max-width: 1200px) {
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-hero-actions {
        justify-content: center;
    }
    
    .product-listing .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-listing .product-card:nth-child(even) {
        direction: ltr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero-text h1 {
        font-size: 2rem;
    }
    
.applications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.applications-grid .application-card {
    flex: 0 1 170px;
    max-width: 190px;
}
    
    .product-cta-box {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .features-grid.four-columns {
        grid-template-columns: 1fr !important;
    }
    
    .feature-item,
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-list-inline {
        justify-content: center;
    }
}

/* ---------- Cautery Spec Tables ---------- */
.cautery-spec-table {
    margin-top: 20px;
}

.cautery-spec-table thead th:first-child {
    background: #C1E3FD;
    color: #003366;
}

.cautery-spec-table td {
    line-height: 1.8;
    vertical-align: top;
}

/* Mobile Cautery Table - Responsive with horizontal scroll */
@media (max-width: 768px) {
    .compare-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -10px;
        padding: 0 10px;
    }
    
    .cautery-spec-table,
    .compare-table {
        font-size: 0.7rem;
        min-width: 380px;
    }
    
    .cautery-spec-table th,
    .cautery-spec-table td,
    .compare-table th,
    .compare-table td {
        padding: 8px 5px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .cautery-spec-table th,
    .compare-table th {
        font-size: 0.65rem;
        padding: 10px 5px;
    }
    
    .cautery-spec-table th small,
    .compare-table th small {
        display: none;
    }
    
    .cautery-spec-table td:first-child,
    .compare-table td:first-child {
        white-space: normal;
        min-width: 80px;
        font-size: 0.65rem;
    }
    
    /* Scroll hint indicator */
    .compare-table-wrapper::after {
        content: '← Scroll →';
        display: block;
        text-align: center;
        color: #888;
        font-size: 0.7rem;
        padding: 8px;
        background: linear-gradient(90deg, transparent, rgba(0,82,155,0.05), transparent);
        border-radius: 4px;
        margin-top: 10px;
    }
}

/* Even smaller screens */
@media (max-width: 400px) {
    .cautery-spec-table,
    .compare-table {
        font-size: 0.6rem;
        min-width: 320px;
    }
    
    .cautery-spec-table th,
    .cautery-spec-table td,
    .compare-table th,
    .compare-table td {
        padding: 6px 4px;
        font-size: 0.6rem;
    }
}

.spec-dimensions {
    margin-top: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #003366;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.spec-dimensions .dim-item {
    background: white;
    padding: 10px 12px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.spec-dimensions .dim-item strong {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-dimensions .dim-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #003366;
}

/* ============================================
   GLOBAL ANIMATIONS SYSTEM
   ============================================ */

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(230,120,23,0.3); }
    50% { box-shadow: 0 0 20px rgba(230,120,23,0.6); }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* ===== SCROLL REVEAL CLASSES ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== PAGE HERO ANIMATIONS ===== */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: float 25s linear infinite;
    opacity: 0.4;
}

.page-hero h1 {
    animation: fadeInUp 1s ease-out;
}

.page-hero p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== ENHANCED CARD ANIMATIONS ===== */
.product-card,
.feature-card,
.value-card,
.mission-card,
.vision-card,
.promise-item,
.why-choose-item,
.product-page-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card::before,
.feature-card::before,
.value-card::before,
.product-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00529b, #e67817);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.product-card:hover::before,
.feature-card:hover::before,
.value-card:hover::before,
.product-page-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover,
.feature-card:hover,
.value-card:hover,
.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== ICON ANIMATIONS ===== */
.feature-icon,
.value-icon,
.card-icon,
.app-icon {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon,
.value-card:hover .value-icon,
.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #e67817, #cf6a13);
}

/* ===== BUTTON ANIMATIONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn:active {
    transform: translateY(-1px);
}

/* ===== LINK UNDERLINE ANIMATION ===== */
.animated-link {
    position: relative;
}

.animated-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00529b, #e67817);
    transition: width 0.3s ease;
}

.animated-link:hover::after {
    width: 100%;
}

/* ===== STAT NUMBER ANIMATIONS ===== */
/* Note: Removed gradient clip for hero stats - caused text cut-off on mobile */
.about-stat .stat-number {
    background: linear-gradient(135deg, #e67817, #f59e42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero stat numbers - solid color to prevent clipping */
.hero-stats .stat-number {
    color: #e67817 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #e67817 !important;
    background-clip: initial !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* ===== IMAGE HOVER EFFECTS ===== */
.product-card-image img,
.product-page-image img,
.product-hero-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img,
.product-page-card:hover .product-page-image img {
    transform: scale(1.1);
}

/* ===== CTA BOX ANIMATIONS ===== */
.contact-cta-box,
.product-cta-box {
    position: relative;
    overflow: hidden;
}

.contact-cta-box::before,
.product-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 25px 25px;
    animation: float 20s linear infinite;
}

/* ===== BADGE ANIMATIONS ===== */
.product-card-badge,
.product-category,
.product-code {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== TABLE ROW ANIMATIONS ===== */
.compare-table tbody tr {
    transition: all 0.3s ease;
}

.compare-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(230,120,23,0.05), transparent);
    transform: scale(1.01);
}

/* ===== FAQ ANIMATIONS ===== */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(0,82,155,0.05), transparent);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* ===== LIST ITEM ANIMATIONS ===== */
.benefits-list li,
.about-list li,
.infrastructure-list li {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.benefits-list li:hover,
.about-list li:hover,
.infrastructure-list li:hover {
    background: linear-gradient(90deg, rgba(230,120,23,0.08), transparent);
    padding-left: 15px;
    border-left-color: #e67817;
}

/* ===== NAVIGATION ANIMATIONS ===== */
.nav-menu a {
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e67817;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

/* ===== FOOTER ANIMATIONS ===== */
.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    padding-left: 8px;
    color: #e67817;
}

.footer-social a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #e67817;
}

/* ===== FORM INPUT ANIMATIONS ===== */
input, textarea, select {
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #00529b;
    box-shadow: 0 0 0 3px rgba(0,82,155,0.1);
    transform: translateY(-2px);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00529b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== FLOATING ELEMENTS ===== */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* ===== GLOW EFFECT ===== */
.glow-effect {
    animation: borderGlow 2s ease-in-out infinite;
}

/* ===== SMOOTH SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #00529b, #e67817);
    z-index: 9999;
    transition: width 0.1s;
}

/* ============================================
   FLOATING ACTION BUTTONS (Call + WhatsApp)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons .fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.floating-buttons .fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.floating-buttons .fab-call {
    background: linear-gradient(135deg, #e67817, #d96a1c);
    box-shadow: 0 4px 20px rgba(230,120,23,0.4);
    animation: fabPulse 2s infinite;
}

.floating-buttons .fab-btn:hover {
    transform: scale(1.15);
}

.floating-buttons .fab-whatsapp:hover {
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.floating-buttons .fab-call:hover {
    box-shadow: 0 6px 25px rgba(230,120,23,0.5);
}

/* Tooltip on hover */
.floating-buttons .fab-btn::before {
    content: attr(title);
    position: absolute;
    right: 65px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-buttons .fab-btn::after {
    content: '';
    position: absolute;
    right: 58px;
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-buttons .fab-btn:hover::before,
.floating-buttons .fab-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230,120,23,0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(230,120,23,0.6);
    }
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-buttons .fab-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    /* Hide tooltips on mobile */
    .floating-buttons .fab-btn::before,
    .floating-buttons .fab-btn::after {
        display: none;
    }
}

/* ============================================
   MOBILE MENU - COMPLETE FIX
   ============================================ */
@media (max-width: 992px) {
    .modern-nav {
        position: relative;
    }
    
    .modern-nav .container {
        position: relative;
    }
    
    .nav-container {
        position: relative;
        justify-content: center;
        padding: 10px 0;
    }
    
    #mobileMenuToggle,
    .mobile-menu-toggle {
        display: block !important;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 10px 15px;
        z-index: 10001;
    }
    
    #navMenu,
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1A1A2E;
        flex-direction: column;
        z-index: 10000;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        border-radius: 0 0 12px 12px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    #navMenu.show,
    .nav-menu.show {
        display: flex !important;
    }
    
    #navMenu li,
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        list-style: none;
        margin: 0;
    }
    
    #navMenu li:last-child,
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    #navMenu a,
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        text-align: left;
        color: white;
        text-decoration: none;
        font-size: 1rem;
    }
    
    #navMenu a:hover,
    #navMenu a.active,
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255,255,255,0.1);
    }
}

@media (min-width: 993px) {
    #mobileMenuToggle,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    #navMenu,
    .nav-menu {
        display: flex !important;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.blog-hero {
    background: linear-gradient(135deg, #003d73 0%, #00529b 50%, #0066cc 100%);
}

/* Featured Blog */
.featured-blog {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.featured-blog-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-blog-image img {
    max-width: 80%;
    max-height: 300px;
    object-fit: contain;
}

.featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e67817, #cf6a13);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-blog-content {
    padding: 40px 40px 40px 0;
}

.featured-blog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-blog-content h2 a {
    color: #003d73;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-blog-content h2 a:hover {
    color: #e67817;
}

.featured-blog-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: #888;
    font-size: 0.85rem;
}

.blog-meta i {
    margin-right: 6px;
    color: #e67817;
}

/* Blog Categories */
.blog-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-pill {
    padding: 10px 25px;
    border-radius: 30px;
    background: white;
    color: #003d73;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-pill:hover, .category-pill.active {
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,82,155,0.3);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-image img {
    max-width: 80%;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Photo-based Blog Cards - No category badge, full-cover images */
.blog-card-photo .blog-card-image {
    background: transparent;
}

.blog-card-photo .blog-card-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-photo .blog-category {
    display: none;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,82,155,0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #003d73;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: #e67817;
}

.blog-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e67817;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 15px;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 60px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
}

.newsletter-icon {
    font-size: 3rem;
    color: #e67817;
    margin-bottom: 15px;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Contact CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.contact-cta-box h2 {
    color: white !important;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-box .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-box .cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-box .cta-buttons .btn-primary {
    background: #e67817;
    color: white;
}

.contact-cta-box .cta-buttons .btn-primary:hover {
    background: #cf6a13;
    transform: translateY(-3px);
}

.contact-cta-box .cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.contact-cta-box .cta-buttons .btn-secondary:hover {
    background: white;
    color: #003d73;
}

.contact-cta-box .cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta-box .cta-buttons .btn-outline:hover {
    background: white;
    color: #003d73;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .featured-blog {
        grid-template-columns: 1fr;
    }
    
    .featured-blog-content {
        padding: 30px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-box {
        padding: 40px 20px;
    }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */
.rating-summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.rating-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #003d73, #00529b);
    border-radius: 16px;
    color: white;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar span:first-child {
    width: 60px;
    font-size: 0.9rem;
    color: #666;
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
    font-weight: 600;
    color: #003d73;
}

.rating-bar .bar {
    flex: 1;
    height: 12px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, #e67817, #f59e42);
    border-radius: 6px;
    transition: width 1s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #f8fbff, #eef5fc);
    border: 2px solid #00529b;
}

.testimonial-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e67817, #cf6a13);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #003d73;
}

.reviewer-title {
    font-size: 0.8rem;
    color: #666;
}

.google-badge {
    margin-left: auto;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-badge i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #999;
}

.testimonial-date i {
    margin-right: 5px;
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003d73;
}

.about-intro-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.about-stat {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-stat .stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #e67817;
    white-space: nowrap;
}

.about-stat .stat-label {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67817, #cf6a13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003d73;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00529b, #003d73);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    margin-bottom: 10px;
    color: #003d73;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.check-icon {
    color: #28a745;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-choose-item h4 {
    margin-bottom: 5px;
    color: #003d73;
}

.why-choose-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   WHY CHOOSE US - PREMIUM SECTION V2
   Mobile-First Impressive Design
   ============================================ */
.why-choose-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0a192f 0%, #0d2847 40%, #1a365d 70%, #0f2447 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.why-choose-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Geometric Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e67817, #ff9f43);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #28a745, #20c997);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(0, -50px) scale(1); }
    75% { transform: translate(-30px, -20px) scale(0.95); }
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 8s ease-in-out infinite;
}

.glow-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(230, 120, 23, 0.15);
    top: -200px;
    left: -100px;
}

.glow-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.1);
    bottom: -150px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Section Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(230, 120, 23, 0.25), rgba(230, 120, 23, 0.1));
    border: 1px solid rgba(230, 120, 23, 0.4);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e67817;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 0 20px rgba(230, 120, 23, 0.2); }
    50% { box-shadow: 0 0 40px rgba(230, 120, 23, 0.4); }
}

.why-choose-badge i {
    font-size: 1.1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.why-choose-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.why-choose-header h2 span {
    background: linear-gradient(135deg, #e67817, #ff9f43, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Grid - Mobile First */
.why-choose-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Premium Card Design */
.why-choose-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-tap-highlight-color: transparent;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, 
        rgba(230, 120, 23, 0.15) 0%, 
        transparent 50%,
        rgba(0, 212, 255, 0.1) 100%);
    pointer-events: none;
}

.why-choose-card:hover .card-glow,
.why-choose-card:active .card-glow {
    opacity: 1;
}

/* Card Top Gradient Line */
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67817, #00d4ff, #28a745);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 24px 24px 0 0;
}

.why-choose-card:hover::before,
.why-choose-card:active::before {
    transform: scaleX(1);
}

/* Icon Wrapper */
.card-icon-wrapper {
    width: 70px;
    height: 70px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 120, 23, 0.2), rgba(230, 120, 23, 0.05));
    border: 1px solid rgba(230, 120, 23, 0.3);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-choose-card:hover .card-icon-bg,
.why-choose-card:active .card-icon-bg {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(230, 120, 23, 0.4), rgba(230, 120, 23, 0.15));
    box-shadow: 0 0 30px rgba(230, 120, 23, 0.4);
}

.card-icon-wrapper i {
    font-size: 1.8rem;
    color: #e67817;
    z-index: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(230, 120, 23, 0.3));
}

.why-choose-card:hover .card-icon-wrapper i,
.why-choose-card:active .card-icon-wrapper i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(230, 120, 23, 0.6));
}

/* Card Content */
.card-content h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.card-badge.support {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.card-badge.network {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.card-badge.price {
    background: linear-gradient(135deg, #e67817, #cf6a13);
    box-shadow: 0 4px 15px rgba(230, 120, 23, 0.4);
}

/* Card Stat */
.card-stat {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-stat .stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e67817, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.card-stat .stat-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Indicators */
.why-choose-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.trust-item-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-item-v2:hover,
.trust-item-v2:active {
    background: linear-gradient(145deg, rgba(230, 120, 23, 0.2), rgba(230, 120, 23, 0.05));
    border-color: rgba(230, 120, 23, 0.3);
    transform: translateY(-3px);
}

.trust-item-v2 i {
    font-size: 1.1rem;
    color: #e67817;
}

.trust-item-v2 span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ============================================
   WHY CHOOSE SECTION - RESPONSIVE DESIGN
   Mobile-First Approach
   ============================================ */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 60px 0 80px;
    }
    
    .why-choose-header h2 {
        font-size: 1.6rem;
    }
    
    .why-choose-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .why-choose-badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .why-choose-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1.05rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .card-badge,
    .card-stat {
        top: 15px;
        right: 15px;
    }
    
    .trust-item-v2 {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .trust-item-v2 i {
        font-size: 1rem;
    }
    
    .trust-item-v2 span {
        font-size: 0.75rem;
    }
}

/* Standard Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-grid-v2 {
        gap: 20px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .why-choose-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-choose-header h2 {
        font-size: 2.4rem;
    }
    
    .why-choose-card {
        padding: 35px 30px;
    }
    
    .card-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .card-icon-wrapper i {
        font-size: 2rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .why-choose-section {
        padding: 100px 0 120px;
    }
    
    .why-choose-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .why-choose-header {
        margin-bottom: 70px;
    }
    
    .why-choose-header h2 {
        font-size: 2.8rem;
    }
    
    .why-choose-card {
        padding: 40px 30px;
    }
    
    /* Hover Effects - Desktop Only */
    .why-choose-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(230, 120, 23, 0.1);
        border-color: rgba(230, 120, 23, 0.3);
    }
    
    .trust-item-v2 {
        padding: 14px 25px;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .why-choose-grid-v2 {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .card-content h4 {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .why-choose-card {
        /* Remove hover-dependent effects on touch */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .why-choose-card:active {
        transform: scale(0.98);
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.15), 
            rgba(255, 255, 255, 0.05));
    }
    
    /* Touch feedback ripple effect */
    .why-choose-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: radial-gradient(circle at var(--touch-x, 50%) var(--touch-y, 50%), 
            rgba(230, 120, 23, 0.3) 0%, 
            transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .why-choose-card:active::after {
        opacity: 1;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .floating-shape,
    .glow-orb,
    .why-choose-badge,
    .card-badge {
        animation: none;
    }
    
    .why-choose-card,
    .card-icon-bg,
    .card-icon-wrapper i {
        transition: none;
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    .why-choose-section {
        background: linear-gradient(135deg, #050d18 0%, #0a1628 40%, #0f2447 100%);
    }
}

.infrastructure-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.infrastructure-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.infrastructure-list li i {
    color: #e67817;
    margin-top: 3px;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-badge {
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.cert-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cert-badge i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #e67817;
}

.cert-badge span {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.cert-badge small {
    opacity: 0.8;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.promise-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.promise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.promise-item i {
    font-size: 2.5rem;
    color: #e67817;
    margin-bottom: 15px;
}

.promise-item h4 {
    margin-bottom: 10px;
    color: #003d73;
}

/* About Us Responsive */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid, .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid, .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE-FIRST HEADER & MENU SYSTEM
   ============================================ */

/* ============================================
   MOBILE-FIRST HEADER & MENU SYSTEM
   ============================================ */

/* Hide mobile header on desktop */
.mobile-header {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 45, 90, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-fab {
    display: none;
}

/* Desktop header visible by default */
.desktop-header {
    display: block;
}

@media (max-width: 992px) {
    /* Hide desktop header on mobile */
    .desktop-header {
        display: none !important;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
        padding: 12px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .mobile-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .mobile-logo img {
        height: 40px;
        width: auto;
    }
    
    /* Animated Hamburger Button */
    .hamburger {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        backdrop-filter: blur(10px);
    }
    
    .hamburger:active {
        transform: scale(0.95);
    }
    
    .hamburger-line {
        width: 22px;
        height: 2.5px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    
    /* Fullscreen Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 45, 90, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 15px;
    }
    
    .mobile-menu-logo {
        height: 45px;
        /* Logo stays colored - no filter applied */
    }
    
    .mobile-menu-close {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:active {
        transform: scale(0.9);
        background: rgba(255,255,255,0.2);
    }
    
    /* Mobile Menu Navigation */
    .mobile-menu-nav {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
        overflow-y: auto;
    }
    
    .mobile-menu-item {
        display: flex;
        align-items: center;
        padding: 16px 18px;
        background: rgba(255,255,255,0.05);
        border-radius: 14px;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(-30px);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-item.animate-in {
        opacity: 1;
        transform: translateX(0);
    }
    
    .mobile-menu-item i:first-child {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #e67817, #d96a1c);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .mobile-menu-item span {
        flex: 1;
    }
    
    .mobile-menu-item .arrow {
        opacity: 0.5;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-item:active {
        background: rgba(255,255,255,0.12);
        transform: scale(0.98);
    }
    
    .mobile-menu-item:active .arrow {
        opacity: 1;
        transform: translateX(5px);
    }
    
    .mobile-menu-item.active {
        background: linear-gradient(135deg, rgba(230,120,23,0.3), rgba(230,120,23,0.1));
        border-left: 3px solid #e67817;
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: auto;
    }
    
    .mobile-menu-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 14px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-cta-btn.call {
        background: linear-gradient(135deg, #e67817, #d96a1c);
    }
    
    .mobile-cta-btn.whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .mobile-cta-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-cta-btn i {
        font-size: 1.2rem;
    }
    
    .mobile-menu-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .info-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
    }
    
    .info-badge i {
        color: #e67817;
        font-size: 1rem;
    }
    
    /* Floating Action Button */
    .mobile-fab {
        display: block;
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8) translateY(20px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .mobile-fab.visible {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
    }
    
    .fab-btn {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e67817, #d96a1c);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.4rem;
        box-shadow: 0 6px 25px rgba(230,120,23,0.4);
        text-decoration: none;
        position: relative;
        overflow: hidden;
        animation: fabPulse 2s infinite;
    }
    
    .fab-btn:active {
        transform: scale(0.9);
    }
    
    @keyframes fabPulse {
        0%, 100% {
            box-shadow: 0 6px 25px rgba(230,120,23,0.4);
        }
        50% {
            box-shadow: 0 8px 35px rgba(230,120,23,0.6);
        }
    }
    
    /* Touch Ripple Effect */
    .touch-ripple {
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        animation: ripple 0.6s ease-out forwards;
        pointer-events: none;
    }
    
    @keyframes ripple {
        to {
            transform: translate(-50%, -50%) scale(4);
            opacity: 0;
        }
    }
    
    /* Add padding to body for fixed header */
    body {
        padding-top: 64px;
    }
    
    /* Mobile-specific content adjustments */
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    .hero-text {
        text-align: center !important;
    }
    
    .hero-text h1 {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }
    
    .hero-text p {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-stats {
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-stats .stat-item {
        margin: 0 auto !important;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile Product Cards */
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-listing .product-card {
        grid-template-columns: 1fr !important;
    }
    
    .product-listing .product-card-image {
        padding: 20px;
        min-height: 200px;
    }
    
    .product-listing .product-card-content {
        padding: 20px;
    }
    
    /* Mobile Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Mobile animations for scroll */
    .reveal {
        transform: translateY(30px);
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-column h2,
.contact-form-column h2 {
    font-size: 1.8rem;
    color: #003d73;
    margin-bottom: 15px;
}

.contact-info-column > p,
.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #00529b, #003d73);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1rem;
    color: #003d73;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #e67817;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.form-error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group label i {
    color: #e67817;
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00529b;
    box-shadow: 0 0 0 3px rgba(0, 82, 155, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Map */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */
.products-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.product-page-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.product-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category.best-seller {
    background: linear-gradient(135deg, #e67817, #cf6a13);
    animation: pulse 2s ease infinite;
}

.product-category.combo-unit {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.product-page-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 250px;
}

.product-page-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-page-card:hover .product-page-image img {
    transform: scale(1.05);
}

.product-page-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-page-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003d73;
}

.product-page-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-page-content h2 a:hover {
    color: #e67817;
}

.product-page-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-features li {
    background: linear-gradient(135deg, #f0f4f8, #e8eef4);
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #003d73;
    transition: all 0.3s ease;
}

.product-features li:hover {
    background: #003d73;
    color: white;
}

.product-features li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

.product-features li:hover::before {
    color: #8eff8e;
}

/* Products Page Responsive */
@media (max-width: 992px) {
    .product-page-card {
        grid-template-columns: 1fr;
    }
    
    .product-page-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .products-intro {
        font-size: 1rem;
    }
    
    .product-page-content h2 {
        font-size: 1.3rem;
    }
}

/* ============================================
   CERTIFICATES SECTION STYLES
   ============================================ */
.certificates-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00529b, #e67817, #00529b);
}

.cert-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,82,155,0.3);
}

.cert-section-badge i {
    color: #ffc107;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}

.certificate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,82,155,0.2);
    border-color: #00529b;
}

.cert-image-wrapper {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.cert-image-wrapper img {
    max-width: 90%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.certificate-card:hover .cert-image-wrapper img {
    transform: scale(1.05);
}

.cert-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .cert-zoom-hint {
    opacity: 1;
}

.cert-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.cert-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 15px;
    box-shadow: 0 5px 20px rgba(230,120,23,0.3);
    position: relative;
    z-index: 2;
}

.cert-badge-icon i {
    color: white;
    font-size: 1.2rem;
}

.cert-badge-icon.cert-blue {
    background: linear-gradient(135deg, #00529b, #003d73);
    box-shadow: 0 5px 20px rgba(0,82,155,0.3);
}

.cert-badge-icon.cert-green {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 5px 20px rgba(40,167,69,0.3);
}

.cert-badge-icon.cert-purple {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    box-shadow: 0 5px 20px rgba(111,66,193,0.3);
}

.cert-badge-icon.cert-teal {
    background: linear-gradient(135deg, #17a2b8, #138496);
    box-shadow: 0 5px 20px rgba(23,162,184,0.3);
}

.cert-info h4 {
    font-size: 1rem;
    color: #003d73;
    margin-bottom: 5px;
}

.cert-info p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cert-status i {
    color: #28a745;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.trust-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.trust-item span {
    font-weight: 600;
    color: #003d73;
}

/* Certificate Modal */
.cert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cert-modal.active {
    display: flex;
}

.cert-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    animation: certModalZoom 0.3s ease;
}

@keyframes certModalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cert-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.cert-modal-content p {
    padding: 15px;
    margin: 0;
    text-align: center;
    background: #003d73;
    color: white;
    font-weight: 600;
}

.cert-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #e67817;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.cert-modal-close:hover {
    background: #cf6a13;
    transform: scale(1.1);
}

/* Certificates Responsive */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-item {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOMEPAGE - PREMIUM EQUIPMENT SECTION
   ============================================ */
.premium-equipment-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.premium-equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00529b, #e67817, #00529b);
}

.section-badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(230,120,23,0.3);
}

.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.equipment-intro {
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 40px;
    border-radius: 24px;
    color: white;
    position: sticky;
    top: 100px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.intro-badge i {
    color: #4CAF50;
}

.equipment-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.equipment-intro p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 25px;
}

.equipment-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.highlight-item i {
    color: #e67817;
    font-size: 1.2rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.equipment-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00529b, #e67817);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,82,155,0.15);
    border-color: #00529b;
}

.equipment-card:hover::before {
    opacity: 1;
}

.equipment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.equipment-icon i {
    font-size: 1.3rem;
    color: #00529b;
    transition: all 0.4s ease;
}

.equipment-card:hover .equipment-icon {
    background: linear-gradient(135deg, #00529b, #003d73);
}

.equipment-card:hover .equipment-icon i {
    color: white;
    transform: scale(1.1);
}

.equipment-card h4 {
    font-size: 1rem;
    color: #003d73;
    margin-bottom: 8px;
}

.equipment-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Equipment CTA Banner */
.equipment-cta-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #003d73 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.equipment-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,120,23,0.2), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease infinite;
}

.cta-icon i {
    font-size: 1.8rem;
    color: white;
}

.cta-text h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.cta-text p {
    opacity: 0.8;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    z-index: 1;
}

.cta-btn-phone, .cta-btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-phone {
    background: #e67817;
    color: white;
}

.cta-btn-phone:hover {
    background: #cf6a13;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230,120,23,0.4);
    color: white;
}

.cta-btn-email {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn-email:hover {
    background: white;
    color: #003d73;
}

/* Premium Equipment Responsive */
@media (max-width: 992px) {
    .equipment-showcase {
        grid-template-columns: 1fr;
    }
    
    .equipment-intro {
        position: relative;
        top: 0;
    }
    
    .equipment-cta-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn-phone, .cta-btn-email {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-intro {
        padding: 30px;
    }
    
    .equipment-cta-banner {
        padding: 30px 20px;
    }
}

/* ============================================
   HOMEPAGE - REVIEWS SECTION
   ============================================ */
.reviews-section-home {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section-home::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 15rem;
    color: rgba(0, 82, 155, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #00529b;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.section-badge i {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.rating-score-inline {
    font-size: 2rem;
    font-weight: 800;
    color: #003d73;
}

.rating-stars-inline {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.review-card-home {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.review-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,82,155,0.2);
}

.review-card-home::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: rgba(230, 120, 23, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviewer-info-home {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.reviewer-avatar-home {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-info-home strong {
    display: block;
    color: #003d73;
    font-size: 1rem;
}

.reviewer-info-home span {
    color: #888;
    font-size: 0.85rem;
}

.reviews-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Reviews Responsive */
@media (max-width: 992px) {
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .mobile-header {
        padding: 10px 15px;
    }
    
    .mobile-logo img {
        height: 35px;
    }
    
    .hamburger {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-item {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-menu-item i:first-child {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}

/* ============================================
   IMPRESSIVE MOBILE-FIRST PRODUCTS PAGE V2
   ============================================ */

/* Quick Filter Tabs for Products */
.product-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    color: #003d73;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
    color: #e67817;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,61,115,0.3);
}

.filter-btn:hover i, .filter-btn.active i {
    color: #ffc107;
}

/* Mobile-First Product Card V2 - Stunning Design */
.products-page-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

.product-card-v2 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00529b, #e67817, #28a745);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card-v2:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,82,155,0.2);
}

.product-card-v2:hover::before {
    transform: scaleX(1);
}

/* Product Image with Overlay */
.product-card-v2-image {
    position: relative;
    height: 220px;
    background: linear-gradient(145deg, #f0f7ff, #e8f4fd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-v2-image img {
    max-width: 85%;
    max-height: 180px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.product-card-v2:hover .product-card-v2-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Product Badges */
.product-badge-v2 {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-badge-v2.popular {
    background: linear-gradient(135deg, #e67817, #ff8f3d);
    color: white;
    animation: badgePulse 2s ease infinite;
}

.product-badge-v2.bestseller {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.product-badge-v2.combo {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    color: white;
}

.product-badge-v2.new {
    background: linear-gradient(135deg, #00529b, #0066cc);
    color: white;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,120,23,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(230,120,23,0); }
}

/* Quick Actions Overlay */
.product-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-v2:hover .product-quick-actions {
    transform: translateY(0);
}

.quick-action-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 12px;
    color: #003d73;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-action-btn:hover {
    background: #e67817;
    color: white;
    transform: scale(1.05);
}

.quick-action-btn.primary {
    background: #e67817;
    color: white;
}

.quick-action-btn.primary:hover {
    background: #cf6a13;
}

/* Product Content */
.product-card-v2-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-v2-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card-v2-title a {
    color: #003d73;
    text-decoration: none;
    transition: color 0.3s;
    background: linear-gradient(90deg, #e67817, #e67817);
    background-size: 0 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s, color 0.3s;
    padding-bottom: 2px;
}

.product-card-v2-title a:hover {
    color: #e67817;
    background-size: 100% 2px;
}

.product-card-v2-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

/* Feature Pills */
.product-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-pill {
    padding: 6px 14px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    color: #003d73;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: #003d73;
    color: white;
    transform: scale(1.05);
}

/* Product Footer */
.product-card-v2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-rating span {
    color: #666;
    font-size: 0.85rem;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #e67817, #cf6a13);
    transform: translateX(5px);
    color: white;
}

.view-details-btn i {
    transition: transform 0.3s;
}

.view-details-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Floating CTA for Products */
.mobile-product-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 12px 20px;
    z-index: 9997;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    animation: slideUpCTA 0.5s ease;
}

@keyframes slideUpCTA {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.mobile-product-cta-content {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-cta-btn-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta-btn-v2.call {
    background: #e67817;
    color: white;
}

.mobile-cta-btn-v2.whatsapp {
    background: #25D366;
    color: white;
}

.mobile-cta-btn-v2:active {
    transform: scale(0.95);
}

/* Product Count Badge */
.products-count {
    text-align: center;
    margin-bottom: 30px;
}

.products-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    border-radius: 50px;
    color: #003d73;
    font-weight: 600;
}

.products-count-badge i {
    color: #e67817;
}


/* === MOBILE RESPONSIVE FOR PRODUCTS === */
@media (max-width: 768px) {
    .product-filters {
        padding: 15px;
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin: 0 -20px 30px;
        border-radius: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .products-page-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-v2 {
        border-radius: 20px;
    }
    
    .product-card-v2-image {
        height: 200px;
    }
    
    /* Always show quick actions on mobile */
    .product-quick-actions {
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(0,61,115,0.95) 100%);
        padding: 20px 15px 15px;
    }
    
    .quick-action-btn {
        padding: 14px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .product-card-v2-content {
        padding: 20px;
    }
    
    .product-card-v2-title {
        font-size: 1.1rem;
    }
    
    .product-card-v2-desc {
        font-size: 0.85rem;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* Show mobile floating CTA */
    .mobile-product-cta {
        display: block;
    }
    
    /* Adjust body padding for floating CTA */
    body.products-page {
        padding-bottom: 80px;
    }
    
    /* Swipe hint for filters */
    .product-filters::after {
        content: '→';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 1.2rem;
        animation: swipeHint 1.5s ease infinite;
    }
    
    @keyframes swipeHint {
        0%, 100% { opacity: 1; transform: translateY(-50%) translateX(0); }
        50% { opacity: 0.5; transform: translateY(-50%) translateX(10px); }
    }
}

/* Tablet Specific */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-page-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Enhancements */
@media (hover: none) and (pointer: coarse) {
    .product-card-v2:hover {
        transform: translateY(-8px);
    }
    
    .product-quick-actions {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0,61,115,0.9));
    }
    
    .quick-action-btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    .quick-action-btn:active {
        transform: scale(0.95);
        background: #cf6a13;
        color: white;
    }
}

/* Loading Animation for Products */
.product-card-v2.loading {
    opacity: 0;
    transform: translateY(30px);
}

.product-card-v2.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-v2:nth-child(1) { transition-delay: 0.05s; }
.product-card-v2:nth-child(2) { transition-delay: 0.1s; }
.product-card-v2:nth-child(3) { transition-delay: 0.15s; }
.product-card-v2:nth-child(4) { transition-delay: 0.2s; }
.product-card-v2:nth-child(5) { transition-delay: 0.25s; }
.product-card-v2:nth-child(6) { transition-delay: 0.3s; }
.product-card-v2:nth-child(7) { transition-delay: 0.35s; }
.product-card-v2:nth-child(8) { transition-delay: 0.4s; }
.product-card-v2:nth-child(9) { transition-delay: 0.45s; }

/* ============================================
   SMT TECHNOLOGY SECTION - IMPRESSIVE DESIGN
   ============================================ */
.smt-technology-section {
    background: linear-gradient(135deg, #0a192f 0%, #0d2847 50%, #1a365d 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Animated Circuit Board Background Pattern */
.smt-technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(230, 120, 23, 0.05) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px, 0 0, 0 0; }
}

/* Floating Particles */
.smt-technology-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 50% 40%, rgba(230, 120, 23, 0.4), transparent),
        radial-gradient(2px 2px at 60% 80%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(230, 120, 23, 0.3), transparent),
        radial-gradient(3px 3px at 90% 50%, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(2px 2px at 10% 60%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 30% 90%, rgba(230, 120, 23, 0.2), transparent);
    background-size: 200px 200px;
    animation: particleFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.6; }
    75% { transform: translateY(-30px) translateX(5px); opacity: 0.9; }
}

/* Section Header */
.smt-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.smt-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.2); }
}

.smt-tech-badge i {
    font-size: 1.2rem;
    animation: chipPulse 2s ease-in-out infinite;
}

@keyframes chipPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.smt-section-header h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.smt-section-header h2 span {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smt-section-header h2 .highlight-orange {
    background: linear-gradient(135deg, #e67817, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smt-section-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Central Hero Element */
.smt-hero-element {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.smt-chip-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #0d2847, #1a365d);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: chipFloat 4s ease-in-out infinite;
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(5deg); }
}

.smt-chip-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(135deg, #00d4ff, #0066cc, #e67817, #00d4ff);
    background-size: 400% 400%;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.smt-chip-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, #0d2847, #1a365d);
}

.smt-chip-icon i {
    font-size: 4rem;
    color: #00d4ff;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)); }
}

/* Connector Lines */
.smt-chip-icon .connector-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connector-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    height: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

.connector-line:nth-child(1) { top: 30%; left: -40px; width: 40px; }
.connector-line:nth-child(2) { top: 50%; left: -50px; width: 50px; animation-delay: 0.3s; }
.connector-line:nth-child(3) { top: 70%; left: -40px; width: 40px; animation-delay: 0.6s; }
.connector-line:nth-child(4) { top: 30%; right: -40px; width: 40px; animation-delay: 0.2s; }
.connector-line:nth-child(5) { top: 50%; right: -50px; width: 50px; animation-delay: 0.5s; }
.connector-line:nth-child(6) { top: 70%; right: -40px; width: 40px; animation-delay: 0.8s; }

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* SMT Features Grid */
.smt-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Feature Cards */
.smt-feature-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.smt-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.smt-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.smt-feature-card:hover::before {
    transform: scaleX(1);
}

.smt-feature-card:hover::after {
    opacity: 1;
}

/* Feature Icon */
.smt-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smt-feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00d4ff, transparent, #e67817);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.smt-feature-card:hover .smt-feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(145deg, rgba(230, 120, 23, 0.3), rgba(230, 120, 23, 0.1));
    border-color: rgba(230, 120, 23, 0.5);
    box-shadow: 0 0 30px rgba(230, 120, 23, 0.4);
}

.smt-feature-card:hover .smt-feature-icon::before {
    opacity: 1;
}

.smt-feature-icon i {
    font-size: 2rem;
    color: #00d4ff;
    transition: all 0.5s ease;
}

.smt-feature-card:hover .smt-feature-icon i {
    color: #e67817;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(230, 120, 23, 0.6));
}

/* Feature Content */
.smt-feature-card h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.smt-feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* SMT Process Timeline */
.smt-process-section {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.smt-process-title {
    text-align: center;
    margin-bottom: 40px;
}

.smt-process-title h3 {
    font-size: 1.8rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.smt-process-title h3 i {
    color: #00d4ff;
    font-size: 1.5rem;
}

/* Process Steps */
.smt-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.smt-process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        #00d4ff 0%, 
        #0099cc 25%, 
        #e67817 50%, 
        #0099cc 75%, 
        #00d4ff 100%);
    border-radius: 3px;
    z-index: 0;
}

.smt-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 180px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0d2847, #1a365d);
    border: 3px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
}

.smt-process-step:hover .step-number {
    transform: scale(1.2);
    background: linear-gradient(145deg, #e67817, #cf6a13);
    border-color: #e67817;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(230, 120, 23, 0.5);
}

.step-content {
    text-align: center;
}

.step-content h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* SMT Stats Banner */
.smt-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, 
        rgba(0, 212, 255, 0.1), 
        rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.smt-stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.smt-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.smt-stat-item:last-child::after {
    display: none;
}

.smt-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #e67817);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.smt-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* SMT Section Responsive */
@media (max-width: 1200px) {
    .smt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .smt-technology-section {
        padding: 70px 0;
    }
    
    .smt-section-header h2 {
        font-size: 2.2rem;
    }
    
    .smt-process-timeline {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .smt-process-timeline::before {
        display: none;
    }
    
    .smt-process-step {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }
    
    .step-content {
        text-align: left;
    }
    
    .smt-stats-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .smt-stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .smt-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .smt-section-header h2 {
        font-size: 1.8rem;
    }
    
    .smt-section-header p {
        font-size: 1rem;
    }
    
    .smt-chip-icon {
        width: 100px;
        height: 100px;
    }
    
    .smt-chip-icon i {
        font-size: 2.5rem;
    }
    
    .connector-line {
        display: none;
    }
    
    .smt-feature-card {
        padding: 25px 20px;
    }
    
    .smt-stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   RELATED PRODUCTS & BLOG CARDS SECTIONS
   (For Product Pages like Short Wave Diathermy)
   ============================================ */

/* Related Products Grid */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.related-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,82,155,0.15);
}

.related-product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    transition: transform 0.4s ease;
}

.related-product-card:hover img {
    transform: scale(1.08);
}

.related-product-card h4 {
    font-size: 0.95rem;
    color: #003d73;
    padding: 15px 15px 5px;
    margin: 0;
    line-height: 1.3;
}

.related-product-card p {
    font-size: 0.8rem;
    color: #666;
    padding: 0 15px 15px;
    margin: 0;
    flex: 1;
}

/* Blog Cards Grid */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,82,155,0.15);
}

.blog-card .blog-card-content {
    padding: 25px;
}

.blog-card .blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    position: static;
}

.blog-card h4 {
    font-size: 1.1rem;
    color: #003d73;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e67817;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 15px;
}

/* Content Block for Text Sections */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.8rem;
    color: #003d73;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 1.4rem;
    color: #003d73;
    margin: 30px 0 15px;
}

.content-block h4 {
    font-size: 1.15rem;
    color: #003d73;
    margin: 25px 0 12px;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    margin: 15px 0 20px 20px;
    color: #555;
}

.content-block ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.hero-features li i {
    color: #4CAF50;
    font-size: 1rem;
}

/* ============================================
   PRODUCT INFO SECTION - PREMIUM DESIGN
   Reusable for: What is [Product]? sections
   ============================================ */
.product-info-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d73, #e67817, #003d73);
}

.product-info-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 61, 115, 0.08);
    overflow: hidden;
    position: relative;
}

.product-info-header {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.product-info-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 120, 23, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.product-info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e67817, #ffc107, #e67817);
}

.product-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-info-badge i {
    color: #e67817;
}

.product-info-header h2 {
    font-size: 2.2rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.product-info-header h2 span {
    color: #e67817;
}

.product-info-body {
    padding: 50px;
}

.product-info-intro {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.product-info-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.product-info-intro p:last-child {
    margin-bottom: 0;
}

.product-info-intro strong {
    color: #003d73;
}

/* Product Info Highlight Box */
.product-info-highlight {
    background: linear-gradient(145deg, #f0f7ff, #e8f4fd);
    border-left: 5px solid #e67817;
    border-radius: 0 16px 16px 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.product-info-highlight::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 120, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(230, 120, 23, 0.3);
}

.highlight-icon i {
    font-size: 1.6rem;
    color: white;
}

.highlight-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d73;
    line-height: 1;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Info Subsection */
.product-info-subsection {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e8eef4;
}

.product-info-subsection h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    color: #003d73;
    margin-bottom: 25px;
}

.product-info-subsection h3 i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #003d73, #00529b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

/* Method Cards Grid */
.method-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.method-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e8eef4;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d73, #e67817);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.method-card:hover {
    border-color: #003d73;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 61, 115, 0.12);
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #f0f7ff, #e8f4fd);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.method-card-icon i {
    font-size: 1.4rem;
    color: #003d73;
    transition: all 0.4s ease;
}

.method-card:hover .method-card-icon {
    background: linear-gradient(135deg, #003d73, #00529b);
}

.method-card:hover .method-card-icon i {
    color: white;
}

.method-card h4 {
    font-size: 1.15rem;
    color: #003d73;
    margin-bottom: 10px;
    line-height: 1.3;
}

.method-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Product Info Summary */
.product-info-summary {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    border-radius: 16px;
    padding: 30px 40px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-info-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 120, 23, 0.2) 0%, transparent 60%);
}

.product-info-summary i {
    font-size: 2rem;
    color: #e67817;
    flex-shrink: 0;
}

.product-info-summary p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.product-info-summary strong {
    color: #e67817;
}

/* ============================================
   BUYER'S GUIDE SECTION - PREMIUM DESIGN
   Reusable for: Buying Guide sections on product pages
   ============================================ */
.buyers-guide-section {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.buyers-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 82, 155, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 120, 23, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.buyers-guide-header {
    text-align: center;
    margin-bottom: 50px;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(230, 120, 23, 0.3);
}

.guide-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.buyers-guide-header h2 {
    font-size: 2.4rem;
    color: #003d73;
    margin-bottom: 15px;
}

.buyers-guide-header h2 span {
    color: #e67817;
}

.buyers-guide-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Guide Main Title */
.guide-main-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e8eef4;
}

.guide-main-title h3 {
    font-size: 1.8rem;
    color: #003d73;
    margin: 0;
    flex: 1;
}

.guide-main-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003d73, #00529b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 61, 115, 0.2);
}

.guide-main-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Numbered Guide Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.guide-step {
    background: white;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 10px 40px rgba(0, 61, 115, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 82, 155, 0.08);
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 61, 115, 0.12);
    border-color: rgba(230, 120, 23, 0.3);
}

.guide-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #e67817, #ffc107);
}

.guide-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(230, 120, 23, 0.25);
}

.guide-step-header h4 {
    font-size: 1.35rem;
    color: #003d73;
    margin: 0;
    flex: 1;
}

.guide-step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.guide-step-content p:last-child {
    margin-bottom: 0;
}

.guide-step-content strong {
    color: #003d73;
}

/* Feature Lists in Guide */
.guide-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 1rem;
    color: #444;
    transition: all 0.3s ease;
}

.guide-feature-list li:last-child {
    border-bottom: none;
}

.guide-feature-list li:hover {
    padding-left: 8px;
    background: linear-gradient(90deg, rgba(230, 120, 23, 0.05), transparent);
}

.guide-feature-list li i {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Guide Comparison Grid */
.guide-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.guide-comparison-card {
    background: linear-gradient(145deg, #f8fbff, #ffffff);
    border: 2px solid #e8eef4;
    border-radius: 18px;
    padding: 25px;
    transition: all 0.4s ease;
}

.guide-comparison-card:hover {
    border-color: #00529b;
    box-shadow: 0 10px 30px rgba(0, 82, 155, 0.1);
}

.guide-comparison-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #003d73;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e8eef4;
}

.guide-comparison-card h5 i {
    color: #e67817;
}

.guide-comparison-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.guide-comparison-card .guide-feature-list li {
    padding: 10px 0;
    font-size: 0.95rem;
}

/* Guide Tips Box */
.guide-tips-box {
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    border-radius: 20px;
    padding: 35px 40px;
    margin-top: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.guide-tips-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 120, 23, 0.15) 0%, transparent 60%);
}

.guide-tips-box h5 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.guide-tips-box h5 i {
    color: #ffc107;
}

.guide-tips-box .guide-feature-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.guide-tips-box .guide-feature-list li:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.guide-tips-box .guide-feature-list li i {
    background: rgba(255, 255, 255, 0.15);
    color: #4CAF50;
}

/* Guide CTA */
.guide-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 61, 115, 0.08);
    border: 2px solid #e8eef4;
}

.guide-cta-content h4 {
    font-size: 1.3rem;
    color: #003d73;
    margin-bottom: 5px;
}

.guide-cta-content p {
    color: #666;
    margin: 0;
}

.guide-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Product Info & Guide Responsive */
@media (max-width: 992px) {
    .product-info-intro {
        grid-template-columns: 1fr;
    }
    
    .product-info-highlight {
        border-left: none;
        border-top: 5px solid #e67817;
        border-radius: 16px 16px 16px 16px;
    }
    
    .method-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-info-header {
        padding: 30px;
    }
    
    .product-info-header h2 {
        font-size: 1.6rem;
    }
    
    .product-info-body {
        padding: 30px;
    }
    
    .product-info-intro p {
        font-size: 1rem;
    }
    
    .product-info-summary {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .buyers-guide-header h2 {
        font-size: 1.8rem;
    }
    
    .guide-main-title {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-main-title h3 {
        font-size: 1.4rem;
    }
    
    .guide-step {
        padding: 25px;
    }
    
    .guide-step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-step-header h4 {
        font-size: 1.15rem;
    }
    
    .guide-tips-box {
        padding: 25px;
    }
}

/* Related Products & Blog Cards Responsive */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-product-card h4 {
        font-size: 0.85rem;
        padding: 12px 12px 5px;
    }
    
    .related-product-card p {
        font-size: 0.75rem;
        padding: 0 12px 12px;
    }
    
    .related-product-card img {
        height: 100px;
        padding: 10px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.2rem;
    }
    
    .content-block h4 {
        font-size: 1.05rem;
    }
    
    .blog-card .blog-card-content {
        padding: 20px;
    }
    
    .blog-card h4 {
        font-size: 1rem;
    }
    
    .hero-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .related-product-card {
        flex-direction: row;
        align-items: center;
    }
    
    .related-product-card img {
        width: 100px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .related-product-card h4 {
        padding: 10px 10px 5px;
    }
    
    .related-product-card p {
        padding: 0 10px 10px;
    }
}

/* ============================================
   BLOG POST CONTENT STYLES
   ============================================ */
.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-content h2 {
    color: #003d73;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-left: 4px solid #e67817;
    padding-left: 15px;
}

.blog-post-content h3 {
    color: #00529b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-post-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.blog-post-content strong,
.blog-post-content b {
    color: #003d73;
    font-weight: 600;
}

.blog-post-content a {
    color: #e67817;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blog-post-content a:hover {
    color: #cf6a13;
    border-bottom-color: #e67817;
}

.blog-featured-image {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-meta-info span {
    color: #666;
    font-size: 0.95rem;
}

.blog-meta-info i {
    color: #e67817;
    margin-right: 5px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #4caf50;
}

.info-box h4 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.info-box p,
.info-box ul {
    color: #2e7d32;
}

.info-box ul {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #ffc107;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 10px;
}

.warning-box p,
.warning-box ul {
    color: #856404;
}

.warning-box ul {
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-box .btn {
    margin: 0 7px;
}

.cta-box .btn-primary {
    background: white;
    color: #003d73;
}

.cta-box .btn-primary:hover {
    background: #e67817;
    color: white;
}

.cta-box .btn-outline {
    border-color: white;
    color: white;
}

.cta-box .btn-outline:hover {
    background: white;
    color: #003d73;
}

/* FAQ Section - Blog Post Static FAQ */
.faq-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.faq-section h2 {
    color: #003d73;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    margin-bottom: 25px;
}

/* Blog FAQ item - override accordion overflow:hidden */
/* Products Page FAQ - Left aligned */
.faq-section .faq-question {
    justify-content: flex-start !important;
    text-align: left !important;
}

.faq-section .faq-question i {
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-section .faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: visible;
}

.faq-section .faq-item h4 {
    color: #003d73;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-section .faq-item p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

.faq-section .faq-item ul {
    color: #555;
    margin-top: 10px;
    padding-left: 20px;
}

.faq-section .faq-item ul li {
    margin-bottom: 5px;
}

/* Electrode Placement / Application Grid */
.electrode-placement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.placement-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 3px solid #e67817;
}

.placement-card h4 {
    color: #003d73;
    margin-bottom: 10px;
}

.placement-card i {
    color: #e67817;
    margin-right: 8px;
}

.placement-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.placement-card li {
    padding: 5px 0;
    color: #555;
}

/* Step Guide */
.step-guide {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.step-guide .step {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #e67817;
}

.step-guide .step:last-child {
    margin-bottom: 0;
}

.step-guide .step h4 {
    color: #003d73;
    margin-bottom: 10px;
}

.step-guide .step p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* Comparison Table (for blog content) */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: #003d73;
    color: white;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* Equipment Comparison Cards */
.equipment-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.equipment-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #e67817;
}

.equipment-card h4 {
    color: #003d73;
    margin-bottom: 15px;
}

.equipment-card ul {
    list-style: none;
    padding: 0;
}

.equipment-card ul li {
    padding: 5px 0;
    color: #555;
}

.equipment-card ul li a {
    color: #e67817;
    text-decoration: none;
}

.equipment-card ul li a:hover {
    color: #cf6a13;
    text-decoration: underline;
}

/* Related Articles Section */
.related-articles {
    margin-top: 50px;
}

.related-articles h3 {
    color: #003d73;
    margin-bottom: 25px;
}

.related-articles .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Blog Post Responsive */
@media (max-width: 768px) {
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-post-content p {
        font-size: 1rem;
    }
    
    .electrode-placement,
    .equipment-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box .btn {
        display: block;
        margin: 10px 0;
    }
    
    .step-guide {
        padding: 20px;
    }
    
    .step-guide .step {
        padding: 15px;
    }
    
    .faq-section {
        padding: 20px;
    }
}

/* ============================================
   CLIENT LIST PAGE - PREMIUM STYLES
   With Infinite Marquee & Category Filters
   ============================================ */

/* Client Stats Grid */
.client-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.client-stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.client-stat-card:hover {
    transform: translateY(-5px);
}

.client-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00529B, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.client-stat-card .stat-icon i {
    font-size: 1.8rem;
    color: white !important;
}

.client-stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f47621;
    margin-bottom: 5px;
}

.client-stat-card .stat-label {
    font-size: 1rem;
    color: #666;
}

/* Philosophy Section */
.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-icon {
    font-size: 3rem;
    color: #f47621;
    margin-bottom: 20px;
}

.philosophy-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin: 0 0 20px;
    padding: 0;
    border: none;
}

.philosophy-author {
    font-weight: 700;
    color: #003366;
    margin-bottom: 25px;
}

.philosophy-description {
    color: #666;
    line-height: 1.8;
}

/* ===== INFINITE LOGO MARQUEE ===== */
.logo-marquee-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.logo-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8fbff, transparent);
}

.logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbff, transparent);
}

.logo-marquee {
    display: flex;
    width: fit-content;
    animation: marqueeScroll 40s linear infinite;
}

.logo-marquee.reverse {
    animation: marqueeScrollReverse 45s linear infinite;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 30px;
    padding: 0 15px;
}

.marquee-item {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.marquee-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0,82,155,0.15);
    border-color: #e67817;
}

.marquee-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    color: #003d73;
    border: 2px solid #e8eef4;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
    color: #e67817;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #003d73;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    border-color: #003d73;
    box-shadow: 0 5px 20px rgba(0,61,115,0.3);
}

.filter-btn.active i {
    color: #ffc107;
}

/* ===== CLIENTS LOGO GRID ===== */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.clients-logo-grid.filterable-grid .client-logo-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.clients-logo-grid.filterable-grid .client-logo-card.hidden {
    display: none;
}

.client-logo-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.client-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d73, #e67817);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.client-logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,82,155,0.15);
}

.client-logo-card:hover::before {
    transform: scaleX(1);
}

.client-logo-card img {
    max-width: 160px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-name {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin-top: auto;
}

/* Category Badge on Cards */
.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    opacity: 0.9;
}

.category-badge.healthcare { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.category-badge.government { background: linear-gradient(135deg, #3498db, #2980b9); }
.category-badge.defense { background: linear-gradient(135deg, #2c3e50, #1a252f); }
.category-badge.education { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.category-badge.corporate { background: linear-gradient(135deg, #27ae60, #1e8449); }

/* Client Count Display */
.client-count-display {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #666;
}

.client-count-display span {
    font-weight: 700;
    font-size: 1.3rem;
    color: #e67817;
}

/* ===== CATEGORY SECTIONS ===== */
.category-section {
    padding: 60px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003d73, #00529b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,61,115,0.2);
}

.category-icon-large i {
    font-size: 2rem;
    color: white;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #003d73;
    margin-bottom: 10px;
}

.category-header p {
    color: #666;
    font-size: 1rem;
}

.category-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category-logo-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.category-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,82,155,0.12);
}

.category-logo-item img {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
}

.category-logo-item span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

/* ===== CLIENT SETUPS GALLERY ===== */
.client-setups-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 100%);
}

.setups-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(230,120,23,0.3);
}

.setups-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.setup-gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.setup-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,82,155,0.2);
}

.setup-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.setup-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.setup-gallery-item:hover .setup-image-wrapper img {
    transform: scale(1.1);
}

.setup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,61,115,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.setup-gallery-item:hover .setup-overlay {
    opacity: 1;
}

.setup-zoom {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.setup-gallery-item:hover .setup-zoom {
    transform: scale(1);
}

.setup-zoom i {
    font-size: 1.5rem;
    color: #003d73;
}

.setup-info {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.setup-title {
    font-weight: 600;
    color: #003d73;
    font-size: 0.95rem;
}

.setup-location {
    font-size: 0.85rem;
    color: #e67817;
}

.setup-location i {
    margin-right: 5px;
}

.setups-cta {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.setups-cta p {
    margin-bottom: 15px;
    color: #555;
}

.setups-cta i {
    color: #e67817;
    margin-right: 8px;
}

/* ===== SETUP LIGHTBOX MODAL ===== */
.setup-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.setup-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes lightboxZoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 10;
}

.lightbox-close:hover {
    background: #e67817;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #e67817;
}

/* Responsive */
@media (max-width: 768px) {
    .setups-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .setup-image-wrapper {
        height: 160px;
    }
    
    .setup-info {
        padding: 12px;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .setup-title {
        font-size: 0.85rem;
    }
    
    .setup-location {
        font-size: 0.75rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .setups-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .setup-image-wrapper {
        height: 200px;
    }
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f47621, #d96a1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.industry-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.industry-card h4 {
    color: #003366;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ============================================
   SWD PAGE - VETERINARY, PROTOCOL, ELECTRODE,
   MAINTENANCE & INQUIRY SECTIONS
   ============================================ */

/* === VETERINARY APPLICATIONS BOX === */
.veterinary-applications-box {
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border: 2px solid #d4e9f7;
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
}

.vet-box-header {
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.vet-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vet-icon i {
    font-size: 1.8rem;
    color: #e67817;
}

.vet-box-header h3 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: white;
}

.vet-box-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.vet-box-content {
    padding: 30px;
}

.vet-box-content > p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vet-applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.vet-app-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.vet-app-item:hover {
    transform: translateY(-3px);
}

.vet-app-item > i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e67817, #d96a1c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vet-app-item h5 {
    margin: 0 0 5px;
    color: #003d73;
    font-size: 1rem;
}

.vet-app-item p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.vet-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    color: #856404;
    font-size: 0.9rem;
    margin-top: 15px;
}

.vet-note i {
    margin-right: 8px;
    color: #e67817;
}

/* === TREATMENT PROTOCOL SECTION === */
.protocol-content {
    max-width: 1100px;
    margin: 0 auto;
}

.protocol-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.protocol-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.protocol-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.protocol-card-header {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.protocol-card-header.acute {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.protocol-card-header.chronic {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.protocol-card-header i {
    font-size: 2rem;
    opacity: 0.9;
}

.protocol-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.protocol-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.protocol-card-body {
    padding: 25px;
}

.protocol-table {
    width: 100%;
    margin-bottom: 20px;
}

.protocol-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.protocol-table td:first-child {
    color: #666;
    width: 40%;
}

.protocol-table td:last-child {
    color: #003d73;
    font-weight: 500;
}

.protocol-conditions h5 {
    color: #003d73;
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.protocol-conditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protocol-conditions li {
    padding: 6px 0;
    color: #555;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.protocol-conditions li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

/* Treatment Steps Box */
.treatment-steps-box {
    background: linear-gradient(135deg, #003d73, #00529b);
    border-radius: 16px;
    padding: 35px;
    color: white;
}

.treatment-steps-box h3 {
    margin: 0 0 25px;
    font-size: 1.3rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.treatment-steps-box h3 i {
    color: #e67817;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e67817;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: white;
}

.step-content p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* === ELECTRODE PLACEMENT GUIDE === */
.electrode-guide-content {
    max-width: 1100px;
    margin: 0 auto;
}

.electrode-intro {
    text-align: center;
    margin-bottom: 40px;
}

.electrode-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.electrode-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.electrode-method-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8eef4;
}

.electrode-method-header {
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.electrode-method-header i {
    font-size: 1.8rem;
    color: #e67817;
}

.electrode-method-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.electrode-method-body {
    padding: 25px;
}

.electrode-rules {
    margin-bottom: 25px;
}

.electrode-rules h5 {
    color: #003d73;
    margin: 0 0 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.electrode-rules h5 i {
    color: #e67817;
}

.electrode-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.electrode-rules li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f4f8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.electrode-rules li::before {
    content: "•";
    color: #e67817;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.electrode-placements h5 {
    color: #003d73;
    margin: 0 0 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.electrode-placements h5 i {
    color: #e67817;
}

.placement-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.placement-item {
    background: #f8fbff;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
}

.placement-item strong {
    color: #003d73;
    white-space: nowrap;
}

.placement-item span {
    color: #666;
}

/* Electrode Safety Box */
.electrode-safety-box {
    background: linear-gradient(135deg, #fff3cd, #fff8e1);
    border: 2px solid #ffc107;
    border-radius: 16px;
    padding: 30px;
}

.electrode-safety-box h4 {
    color: #856404;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.electrode-safety-box h4 i {
    color: #e67817;
}

.safety-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.safety-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
}

.safety-tip i.fa-times-circle {
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 2px;
}

.safety-tip i.fa-check-circle {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

/* === MAINTENANCE GUIDE SECTION === */
.maintenance-content {
    max-width: 1100px;
    margin: 0 auto;
}

.maintenance-intro {
    text-align: center;
    margin-bottom: 40px;
}

.maintenance-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.maintenance-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.maintenance-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.maintenance-card-header {
    padding: 20px;
    position: relative;
}

.maintenance-card.daily .maintenance-card-header {
    background: linear-gradient(135deg, #28a745, #1e8449);
    color: white;
}

.maintenance-card.weekly .maintenance-card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.maintenance-card.annual .maintenance-card-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.maintenance-frequency {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.maintenance-card-header h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maintenance-checklist {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.maintenance-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #444;
}

.maintenance-checklist li:last-child {
    border-bottom: none;
}

.maintenance-checklist li i {
    color: #28a745;
    margin-top: 2px;
}

/* Troubleshooting Box */
.troubleshooting-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e8eef4;
    border-radius: 16px;
    padding: 30px;
}

.troubleshooting-box h4 {
    color: #003d73;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.troubleshooting-box h4 i {
    color: #e67817;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.troubleshoot-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.troubleshoot-item .issue {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.troubleshoot-item .solution {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.troubleshoot-item .solution i {
    color: #28a745;
    margin-top: 3px;
}

.service-note {
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.service-note i {
    margin-right: 8px;
    color: #e67817;
}

.service-note a {
    color: #e67817;
    font-weight: 600;
}

/* === QUICK INQUIRY FORM SECTION === */
.quick-inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.inquiry-info-side {
    background: linear-gradient(135deg, #003d73, #00529b);
    padding: 40px;
    color: white;
}

.inquiry-info-side h2 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry-info-side h2 i {
    color: #e67817;
}

.inquiry-info-side > p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.inquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.inquiry-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 10px;
}

.inquiry-benefit i {
    color: #e67817;
    font-size: 1.1rem;
}

.inquiry-benefit span {
    font-size: 0.9rem;
}

.inquiry-contact-alt {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.inquiry-contact-alt p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e67817;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.phone-link:hover {
    background: #cf6a13;
    transform: translateY(-2px);
    color: white;
}

.inquiry-form-side {
    padding: 40px;
}

.quick-inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quick-inquiry-form .form-group {
    margin-bottom: 18px;
}

.quick-inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.quick-inquiry-form label i {
    color: #e67817;
    margin-right: 6px;
}

.quick-inquiry-form input,
.quick-inquiry-form select,
.quick-inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8eef4;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.quick-inquiry-form input:focus,
.quick-inquiry-form select:focus,
.quick-inquiry-form textarea:focus {
    border-color: #003d73;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,61,115,0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

.form-note i {
    color: #28a745;
    margin-right: 5px;
}

/* === SWD SECTIONS RESPONSIVE === */
@media (max-width: 992px) {
    .vet-applications-grid {
        grid-template-columns: 1fr;
    }
    
    .protocol-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .electrode-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-inquiry-wrapper {
        grid-template-columns: 1fr;
    }
    
    .inquiry-info-side {
        padding: 30px;
    }
    
    .inquiry-form-side {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .vet-box-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .vet-box-content {
        padding: 20px;
    }
    
    .vet-app-item {
        flex-direction: column;
        text-align: center;
    }
    
    .protocol-card-header {
        padding: 20px;
    }
    
    .protocol-card-body {
        padding: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-steps-box {
        padding: 25px;
    }
    
    .electrode-method-header {
        flex-direction: column;
        text-align: center;
    }
    
    .electrode-method-body {
        padding: 20px;
    }
    
    .electrode-safety-box {
        padding: 20px;
    }
    
    .maintenance-card-header {
        padding: 15px;
    }
    
    .maintenance-checklist {
        padding: 15px;
    }
    
    .troubleshooting-box {
        padding: 20px;
    }
    
    .quick-inquiry-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-info-side,
    .inquiry-form-side {
        padding: 25px;
    }
}

/* ============================================
   TABLE OF CONTENTS (TOC) SECTION
   For product pages - SEO jump links
   ============================================ */
.toc-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    border-bottom: 1px solid #e8eef4;
}

.toc-box {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,61,115,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 25px;
    border-left: 4px solid #e67817;
}

.toc-box strong {
    color: #003d73;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-box strong i {
    color: #e67817;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0;
    padding: 0;
}

.toc-list li {
    display: flex;
    align-items: center;
}

.toc-list li::before {
    content: "•";
    color: #e67817;
    margin-right: 8px;
    font-weight: bold;
}

.toc-list a {
    color: #003d73;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.toc-list a:hover {
    color: #e67817;
}

/* TOC Responsive */
@media (max-width: 768px) {
    .toc-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px;
    }
    
    .toc-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .toc-list a {
        font-size: 0.85rem;
    }
}

/* ============================================
   PRODUCTS HUB - TABLE OF CONTENTS & CATEGORIES
   Premium Navigation + Category Sections
   ============================================ */

/* === STICKY CATEGORY NAV HUB === */
.products-category-nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e8eef4;
    box-shadow: 0 4px 20px rgba(0,61,115,0.08);
    transition: all 0.3s ease;
}

.products-category-nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,61,115,0.15);
}

.category-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-nav-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #003d73;
    font-size: 0.9rem;
    white-space: nowrap;
    padding-right: 15px;
    border-right: 2px solid #e8eef4;
}

.category-nav-label i {
    color: #e67817;
    font-size: 1.1rem;
}

.category-nav-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.category-nav-pills::-webkit-scrollbar {
    display: none;
}

.category-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e8eef4;
    border-radius: 50px;
    color: #003d73;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-pill-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #003d73, #00529b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-pill-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-pill-link:hover,
.category-pill-link.active {
    border-color: #003d73;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,61,115,0.25);
}

.category-pill-link:hover::before,
.category-pill-link.active::before {
    opacity: 1;
}

.category-pill-link:hover i,
.category-pill-link.active i {
    color: #e67817;
    transform: scale(1.2);
}

/* Category Icons Colors */
.category-pill-link.heat-therapy i { color: #e74c3c; }
.category-pill-link.heat-therapy:hover i,
.category-pill-link.heat-therapy.active i { color: #ffc107; }

.category-pill-link.electrotherapy i { color: #f39c12; }
.category-pill-link.electrotherapy:hover i,
.category-pill-link.electrotherapy.active i { color: #ffc107; }

.category-pill-link.ultrasound i { color: #3498db; }
.category-pill-link.ultrasound:hover i,
.category-pill-link.ultrasound.active i { color: #87ceeb; }

.category-pill-link.laser i { color: #e74c3c; }
.category-pill-link.laser:hover i,
.category-pill-link.laser.active i { color: #ff6b6b; }

.category-pill-link.traction i { color: #27ae60; }
.category-pill-link.traction:hover i,
.category-pill-link.traction.active i { color: #7bed9f; }

.category-pill-link.rehabilitation i { color: #9b59b6; }
.category-pill-link.rehabilitation:hover i,
.category-pill-link.rehabilitation.active i { color: #dda0dd; }

.category-pill-link.surgical i { color: #1abc9c; }
.category-pill-link.surgical:hover i,
.category-pill-link.surgical.active i { color: #7fdbda; }

/* Product Count Badge */
.category-pill-count {
    background: #e67817;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 3px;
}

.category-pill-link:hover .category-pill-count,
.category-pill-link.active .category-pill-count {
    background: rgba(255,255,255,0.25);
}

/* === CATEGORY SECTION HEADERS === */
.product-category-section {
    padding: 80px 0 60px;
    position: relative;
    scroll-margin-top: 100px;
}

.product-category-section:nth-child(even) {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-category-section:nth-child(odd) {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.category-section-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e8eef4;
    position: relative;
}

.category-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e67817, #ffc107);
    border-radius: 2px;
}

.category-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(0.9);
    z-index: 0;
}

.category-icon-box i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Category-specific icon box colors */
.category-icon-box.heat-therapy {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.category-icon-box.electrotherapy {
    background: linear-gradient(135deg, #f39c12, #d68910);
}
.category-icon-box.ultrasound {
    background: linear-gradient(135deg, #3498db, #2980b9);
}
.category-icon-box.laser {
    background: linear-gradient(135deg, #e74c3c, #9b59b6);
}
.category-icon-box.traction {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}
.category-icon-box.rehabilitation {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.category-icon-box.surgical {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.category-section-info {
    flex: 1;
}

.category-section-info h2 {
    font-size: 1.8rem;
    color: #003d73;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-section-info h2 span {
    color: #e67817;
}

.category-product-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    color: #003d73;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-section-info p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

/* Category Section Quick Stats */
.category-quick-stats {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.category-quick-stat {
    text-align: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8eef4;
}

.category-quick-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e67817;
    display: block;
}

.category-quick-stat .stat-text {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CATEGORY PRODUCTS GRID === */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Category Product Card - Enhanced */
.category-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,61,115,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.category-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #003d73, #e67817, #28a745);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.category-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,61,115,0.18);
}

.category-product-card:hover::before {
    transform: scaleX(1);
}

.category-product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(145deg, #f8fbff, #e8f4fd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-product-image img {
    max-width: 85%;
    max-height: 170px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.category-product-card:hover .category-product-image img {
    transform: scale(1.1) rotate(2deg);
}

/* Product Badge */
.product-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-type-badge.bestseller {
    background: linear-gradient(135deg, #e67817, #ff8f3d);
    color: white;
    animation: badgePulse 2s ease infinite;
}

.product-type-badge.popular {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.product-type-badge.combo {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    color: white;
}

.product-type-badge.new {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.product-type-badge.models {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    top: 15px;
    right: 15px;
    left: auto;
    animation: none;
}

/* Quick View Overlay */
.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,61,115,0.95));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 10px;
}

.category-product-card:hover .product-quick-view {
    transform: translateY(0);
}

.quick-view-btn {
    flex: 1;
    padding: 12px;
    background: white;
    border: none;
    border-radius: 10px;
    color: #003d73;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #e67817;
    color: white;
}

.quick-view-btn.primary {
    background: #e67817;
    color: white;
}

.quick-view-btn.primary:hover {
    background: #cf6a13;
}

/* Product Content */
.category-product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.category-product-content h3 a {
    color: #003d73;
    text-decoration: none;
    transition: color 0.3s;
}

.category-product-content h3 a:hover {
    color: #e67817;
}

.category-product-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

/* Product Feature Tags */
.product-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.feature-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #e8f4fd, #d4e9f7);
    color: #003d73;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.feature-tag i {
    color: #28a745;
    font-size: 0.7rem;
}

.feature-tag:hover {
    background: #003d73;
    color: white;
}

.feature-tag:hover i {
    color: #7bed9f;
}

/* Product Footer */
.category-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e8eef4;
}

.product-applications {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.8rem;
}

.product-applications i {
    color: #e67817;
}

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #003d73, #00529b);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-view-btn:hover {
    background: linear-gradient(135deg, #e67817, #cf6a13);
    transform: translateX(5px);
    color: white;
}

.product-view-btn i {
    transition: transform 0.3s;
}

.product-view-btn:hover i {
    transform: translateX(5px);
}

/* === CATEGORY SECTION CTA === */
.category-section-cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #003d73 0%, #00529b 100%);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.category-section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230,120,23,0.2), transparent 70%);
    border-radius: 50%;
}

.category-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    z-index: 1;
}

.category-cta-content i {
    font-size: 1.5rem;
    color: #e67817;
}

.category-cta-content h4 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.category-cta-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.category-cta-actions {
    display: flex;
    gap: 12px;
    z-index: 1;
}

.category-cta-btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-cta-btn.primary {
    background: #e67817;
    color: white;
}

.category-cta-btn.primary:hover {
    background: #cf6a13;
    transform: translateY(-3px);
    color: white;
}

.category-cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.category-cta-btn.secondary:hover {
    background: white;
    color: #003d73;
}

/* === SCROLL PROGRESS BAR === */
.products-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d73, #e67817, #28a745);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(230,120,23,0.5);
}

/* === FEATURED LAYOUT FOR SINGLE PRODUCT CATEGORIES === */
.category-featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.category-product-card.featured-card {
    height: 100%;
}

.category-product-card.featured-card .category-product-image {
    height: 250px;
}

.category-product-card.featured-card .category-product-content {
    padding: 30px;
}

.category-product-card.featured-card h3 {
    font-size: 1.4rem;
}

/* Category Info Box - For single product categories */
.category-info-box {
    background: linear-gradient(145deg, #f8fbff, #e8f4fd);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e8eef4;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-info-box h4 {
    color: #003d73;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-info-box h4 i {
    color: #e67817;
    font-size: 1.3rem;
}

.category-info-box .info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.category-info-box .info-list li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,61,115,0.1);
}

.category-info-box .info-list li:last-child {
    border-bottom: none;
}

.category-info-box .info-list li i {
    color: #28a745;
    font-size: 0.9rem;
}

.category-info-box h5 {
    color: #003d73;
    font-size: 0.95rem;
    margin: 15px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-info-box p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.category-info-box .info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #003d73;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    background: white;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #003d73;
    margin-top: auto;
}

.category-info-box .info-link:hover {
    background: #003d73;
    color: white;
}

.category-info-box .info-link i {
    transition: transform 0.3s;
}

.category-info-box .info-link:hover i {
    transform: translateX(3px);
}

/* === PRODUCTS HUB RESPONSIVE === */
@media (max-width: 992px) {
    .category-nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .category-nav-label {
        border-right: none;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 2px solid #e8eef4;
        width: 100%;
    }
    
    .category-nav-pills {
        width: 100%;
    }
    
    .category-section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .category-section-header::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .category-section-info h2 {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .category-section-info p {
        max-width: 100%;
    }
    
    .category-quick-stats {
        justify-content: center;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-section-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .category-cta-content {
        flex-direction: column;
    }
    
    .category-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-category-nav {
        padding: 12px 0;
    }
    
    .category-nav-wrapper {
        padding: 0 15px;
    }
    
    .category-nav-label {
        font-size: 0.8rem;
        border-right: none;
        padding-right: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid #e8eef4;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .category-nav-pills {
        gap: 8px;
        padding-bottom: 5px;
    }
    
    /* Show full category names on mobile with horizontal scroll */
    .category-pill-link {
        padding: 10px 16px;
        font-size: 0.8rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .category-pill-link span:not(.category-pill-count) {
        display: inline;
    }
    
    .category-pill-count {
        display: inline-flex;
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .product-category-section {
        padding: 50px 0 40px;
        scroll-margin-top: 80px;
    }
    
    .category-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-box i {
        font-size: 1.5rem;
    }
    
    .category-section-info h2 {
        font-size: 1.4rem;
    }
    
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-product-image {
        height: 180px;
    }
    
    /* Always show quick view on mobile */
    .product-quick-view {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0,61,115,0.9));
    }
    
    .category-product-content {
        padding: 20px;
    }
    
    .category-product-content h3 {
        font-size: 1.1rem;
    }
    
    .category-quick-stats {
        display: none;
    }
    
    .category-section-cta {
        padding: 25px 20px;
    }
    
    /* MOBILE: Featured Layout - Stack vertically with proper spacing */
    .category-featured-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }
    
    .category-product-card.featured-card .category-product-image {
        height: 200px;
    }
    
    .category-product-card.featured-card .category-product-content {
        padding: 20px;
    }
    
    .category-product-card.featured-card h3 {
        font-size: 1.2rem;
    }
    
    /* MOBILE: Category Info Box - Proper padding and margins */
    .category-info-box {
        margin: 0;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .category-info-box h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .category-info-box .info-list li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .category-info-box h5 {
        font-size: 0.9rem;
        margin: 12px 0 8px;
    }
    
    .category-info-box p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .category-info-box .info-link {
        padding: 10px 16px;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-pill-link {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .category-pill-link i {
        font-size: 0.9rem;
    }
    
    .category-pill-count {
        display: none;
    }
    
    .category-section-info h2 {
        font-size: 1.2rem;
    }
    
    .category-product-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .product-view-btn {
        justify-content: center;
    }
}

/* ===== CLIENT PAGE RESPONSIVE ===== */
@media (max-width: 992px) {
    .client-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-buttons {
        padding: 20px 15px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .client-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content blockquote {
        font-size: 1.1rem;
    }
    
    .logo-marquee-section {
        padding: 40px 0;
    }
    
    .marquee-item {
        min-width: 150px;
        padding: 15px 20px;
        height: 80px;
    }
    
    .marquee-item img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .filter-buttons {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 15px;
        margin: 0 -20px 30px;
        border-radius: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .category-logos-row {
        gap: 15px;
    }
    
    .category-logo-item {
        min-width: 140px;
        padding: 15px 20px;
    }
}
