/* ============================================================
   RAJESH PLANET LIFTER - PREMIUM BRIGHT INDUSTRIAL DESIGN
   Brand: White / Golden / Orange
   Style: Premium Neumorphism on White
   ============================================================ */

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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary: #F4C430;
    --primary-dark: #E5B93C;
    --accent: #F7941D;
    --deep-orange: #E67E22;

    --bg-white: #FFFFFF;
    --bg-soft: #F8F9FA;
    --bg-cream: #FFF8E7;
    --bg-cream-deep: #FFF3D4;

    --text-dark: #222222;
    --text-mid: #444444;
    --text-grey: #666666;
    --text-light: #999999;

    --border: #EAEAEA;
    --border-light: #F0F0F0;
    --border-gold: rgba(244,196,48,0.35);

    /* Light Neumorphism shadows */
    --neo-up: 6px 6px 18px rgba(0,0,0,0.08), -4px -4px 14px rgba(255,255,255,0.95);
    --neo-up-hover: 10px 10px 28px rgba(0,0,0,0.12), -6px -6px 18px rgba(255,255,255,1);
    --neo-inset: inset 3px 3px 8px rgba(0,0,0,0.07), inset -2px -2px 6px rgba(255,255,255,0.9);
    --neo-card: 8px 8px 24px rgba(0,0,0,0.07), -4px -4px 14px rgba(255,255,255,0.9);
    --neo-card-hover: 14px 14px 36px rgba(0,0,0,0.11), -6px -6px 20px rgba(255,255,255,1);

    --glow-gold: 0 0 24px rgba(244,196,48,0.35), 0 0 48px rgba(247,148,29,0.15);
    --glow-orange: 0 8px 28px rgba(247,148,29,0.38);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   NAVBAR - WHITE PREMIUM FLOATING
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 72px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 1000;

    /* ADD THIS */
    position: sticky;
    overflow: visible;

    box-shadow:
        0 2px 20px rgba(0,0,0,0.06),
        0 1px 0 rgba(244,196,48,0.15);

    transition: var(--transition);
}

.navbar.scrolled {
    height: 64px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09), 0 1px 0 rgba(244,196,48,0.2);
    background: rgba(255,255,255,0.99);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    border: 1.5px solid rgba(247,148,29,0.55);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 10px rgba(247,148,29,0.2), 3px 3px 8px rgba(0,0,0,0.08), -2px -2px 6px rgba(255,255,255,0.9);
}

/* ====================================
   PLANET LIFTERS BRAND TEXT
   ==================================== */

.brand-name {

    font-family: 'Poppins', sans-serif;

    font-size: 26px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 2px;

    line-height: 1;

    background: linear-gradient(
        90deg,
        #F4C430 0%,
        #F7A61B 35%,
        #F7941D 70%,
        #E67E22 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow:
        0 2px 8px rgba(247,148,29,0.15);

    white-space: nowrap;

    transition: 0.3s ease;
}

.brand-name:hover {
    transform: scale(1.03);
}

@media (max-width: 1024px) {

    .brand-name {
        font-size: 20px;
        letter-spacing: 1px;
    }

}

@media (max-width: 768px) {

    .brand-name {
        font-size: 15px;
        letter-spacing: 0.8px;
        max-width: 140px;
    }

}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-mid);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
    position: relative;
}

.nav-links li a:hover {
    color: var(--text-dark);
    background: var(--bg-soft);
}

.nav-links li a.active {
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(247,148,29,0.28);
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    background: var(--bg-soft);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    box-shadow: var(--neo-up);
    transition: var(--transition-fast);
}

.hamburger:hover {
    background: var(--bg-cream);
    border-color: var(--border-gold);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
    background: #e8e8e8;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(0.95);
}

/* Left gradient for text legibility only */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 55%, transparent 100%),
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bottom fade to white body */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    z-index: 3;
    pointer-events: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: white;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: var(--glow-orange);
    transform: translateY(-50%) scale(1.08);
}

.arrow.left { left: 28px; }
.arrow.right { right: 28px; }

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 5;
    width: 55%;
    max-width: 560px;
    padding: 0;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-overlay h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-overlay p {
    font-size: 19px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    letter-spacing: 0.1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 30px rgba(247,148,29,0.45), 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before { left: 100%; }

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(247,148,29,0.55);
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.hero-dot.active {
    width: 28px;
    background: var(--primary);
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,196,48,0.12);
    border: 1px solid rgba(244,196,48,0.3);
    color: #B8860B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title .highlight {
    background: linear-gradient(135deg, #C8860A, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-grey);
    font-size: 17px;
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.7;
    text-align: center;
}

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

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.section-header h2 span {
    background: linear-gradient(135deg, #C8860A, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-grey);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   FEATURED SECTION
   ============================================================ */
.featured-section {
    padding: 90px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    /* First 4 in first row, last 3 in second row */
}

@media (min-width: 992px) and (max-width: 1199px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   MACHINE CARDS - PREMIUM NEUMORPHIC WHITE
   ============================================================ */
.machine-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--neo-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
}

.machine-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neo-card-hover);
    border-color: var(--border-gold);
}

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

.card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--bg-soft);
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    padding: 12px;
    background: var(--bg-soft);
}

.machine-card:hover .card-image img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    font-weight: 800;
    font-size: 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(247,148,29,0.35);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-content {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

.card-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
    min-height: 44px;
}

.card-description {
    color: var(--text-grey);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-specs-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 14px;
    font-size: 12px;
}

.card-specs-preview span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--text-mid);
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 500;
}

.view-details-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-cream);
    color: #B8860B;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--neo-up);
}

.view-details-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(244,196,48,0.4);
    transform: translateY(-1px);
}

/* ============================================================
   WHY CHOOSE US - CREAM BACKGROUND
   ============================================================ */
.why-choose {
    background: var(--bg-cream);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(244,196,48,0.2);
    border-bottom: 1px solid rgba(244,196,48,0.2);
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,196,48,0.12), transparent 70%);
    pointer-events: none;
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
    letter-spacing: -0.8px;
}

.why-choose h2 span {
    background: linear-gradient(135deg, #C8860A, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--neo-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--neo-card-hover);
}

.benefit-card:hover::after { opacity: 1; }

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-cream-deep));
    border: 1px solid rgba(244,196,48,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--neo-up);
    transition: var(--transition);
}

.benefit-icon i {
    font-size: 26px;
    color: var(--deep-orange);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
}

.benefit-card:hover .benefit-icon i {
    color: var(--text-dark);
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   PAGE HEADER - GOLDEN CREAM
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-cream-deep) 100%);
    color: var(--text-dark);
    padding: 72px 20px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(244,196,48,0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(244,196,48,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(247,148,29,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.2px;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

.page-header p {
    font-size: 18px;
    color: var(--text-grey);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
/* ============================================================
   FILTER SECTION - SOFT WHITE (NORMAL SCROLL)
   ============================================================ */
   .search-box {
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Sticky Search Only */
.search-box.search-sticky {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    z-index: 998;

    padding: 12px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12);

    animation: searchSlideDown 0.25s ease;
}

@keyframes searchSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
   
   .filter-section {
    padding: 28px 20px;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 9px 22px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-grey);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition-fast);
    box-shadow: var(--neo-up);
    font-family: inherit;
    letter-spacing: 0.2px;
}

.filter-btn:hover {
    color: var(--text-dark);
    border-color: var(--border-gold);
    background: var(--bg-cream);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--text-dark);
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(247,148,29,0.32);
}

.search-box {
    display: flex;
    justify-content: center;
}

.search-box input {
    padding: 12px 22px;
    width: 100%;
    max-width: 480px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition-fast);
    box-shadow: var(--neo-inset);
}

.search-box input::placeholder { 
    color: var(--text-light); 
}

.search-box input:focus {
    outline: none;
    border-color: rgba(244,196,48,0.5);
    box-shadow: var(--neo-inset), 0 0 0 3px rgba(244,196,48,0.1);
}
/* ============================================================
   MACHINES GRID
   ============================================================ */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    padding: 48px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE EMBEDDED
   ============================================================ */
.services-page-embedded {
    background: var(--bg-soft);
}

.services-page-embedded .page-header {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-cream-deep));
    color: var(--text-dark);
    padding: 60px 20px 40px;
    text-align: center;
}

.services-page-embedded .page-header h1,
.services-page-embedded .page-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
}

.services-page-embedded .page-header p {
    font-size: 18px;
    color: var(--text-grey);
}

/* ============================================================
   MACHINE DETAIL PAGE
   ============================================================ */
.machine-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--bg-white);
    color: var(--text-mid);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
    transition: var(--transition-fast);
    border: 1px solid var(--border);
    box-shadow: var(--neo-up);
    cursor: pointer;
}

.back-btn:hover {
    color: #B8860B;
    border-color: var(--border-gold);
    transform: translateX(-4px);
}

.machine-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 36px;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
}

/* Image Gallery */
.image-gallery { margin-bottom: 48px; }

.main-image {
    position: relative;
    width: 100%;
    height: 480px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--neo-card);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: var(--bg-soft);
    transition: transform 0.5s ease;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail-img {
    width: 96px;
    height: 76px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    background: var(--bg-soft);
    padding: 4px;
    box-shadow: var(--neo-up);
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(244,196,48,0.3), var(--neo-up);
}

/* Machine Info Grid */
.machine-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* Specifications */
.specifications-section h2,
.features-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.specifications-section h2::after,
.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--neo-card);
    border: 1px solid var(--border-light);
}

.specs-table tr {
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

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

.specs-table tr:nth-child(even) {
    background: var(--bg-soft);
}

.specs-table tr:hover { background: var(--bg-cream); }

.specs-table td { padding: 13px 18px; }

.spec-key {
    font-weight: 600;
    color: var(--text-grey);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 45%;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

/* Description & Action */
.description-box {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--accent);
    box-shadow: var(--neo-card);
}

.description-box h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
}

.description-box p {
    color: var(--text-grey);
    line-height: 1.9;
    font-size: 14px;
}

.action-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.enquire-btn,
.brochure-btn {
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    flex: 1;
    min-width: 180px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: inherit;
}

.enquire-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(247,148,29,0.35), var(--neo-up);
}

.enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(247,148,29,0.48);
}

.brochure-btn {
    background: var(--bg-white);
    color: var(--text-mid);
    border: 1px solid var(--border);
    box-shadow: var(--neo-up);
}

.brochure-btn:hover {
    border-color: var(--border-gold);
    color: #B8860B;
    transform: translateY(-3px);
}

.brochure-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   SERVICES SECTION (index.html embedded)
   ============================================================ */
.services-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 26px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--neo-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--neo-card-hover);
}

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

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-cream);
    border: 1px solid rgba(244,196,48,0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition);
    box-shadow: var(--neo-up);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(244,196,48,0.3);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card .service-count {
    display: inline-block;
    background: var(--bg-cream);
    border: 1px solid var(--border-gold);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #B8860B;
    letter-spacing: 0.5px;
}

.service-card .service-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-grey);
    font-size: 14px;
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    transform: translateX(3px);
}

/* ============================================================
   FOOTER - GOLDEN BRAND FOOTER
   ============================================================ */
.premium-footer {
    background: var(--primary);
    color: var(--text-dark);
    margin-top: 0;
    padding: 0;
    position: relative;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

footer {
    background: var(--primary);
    color: var(--text-dark);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

/* Footer top */
.footer-top {
    padding: 72px 20px 56px;
    border-bottom: 1px solid rgba(244,196,48,0.25);
    background: var(--bg-cream);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* Brand Col */
.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-col .footer-logo img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.brand-col .footer-logo span {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-col .footer-logo span span {
    color: var(--deep-orange);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0,0,0,0.65);
    max-width: 340px;
    margin-bottom: 26px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--neo-up);
}

.footer-social a:hover {
    background: var(--deep-orange);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.4);
}

/* Footer Cols */
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: var(--deep-orange);
    border-radius: 2px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--deep-orange);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--text-dark);
    transform: translateX(6px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact col */
.contact-col .contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.6;
}

.contact-col .contact-list li i {
    color: var(--deep-orange);
    font-size: 15px;
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.contact-col .contact-list li a {
    color: rgba(0,0,0,0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-col .contact-list li a:hover {
    color: var(--text-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding: 22px 20px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    grid-template-columns: unset;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(0,0,0,0.55);
}

.footer-bottom p strong { color: var(--text-dark); }

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 12px;
}

.footer-bottom-links a {
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--text-dark); }

.footer-bottom-links span { color: rgba(0,0,0,0.25); }

/* Basic footer for about/contact/services/detail pages */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 8px; }

.footer-section ul li a:hover { color: var(--deep-orange); }

.footer-section p {
    color: rgba(0,0,0,0.55);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 40px;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.about-why-card {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--neo-card);
    transition: var(--transition);
}

.about-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--neo-card-hover);
}

.about-why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 8px;
}

.about-why-card p {
    font-size: 14px !important;
    color: var(--text-grey) !important;
    margin-bottom: 0 !important;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.contact-info p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--neo-card);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
    box-shadow: var(--neo-card-hover);
}

.contact-item-icon {
    font-size: 22px;
    width: 46px;
    height: 46px;
    background: var(--bg-cream);
    border: 1px solid rgba(244,196,48,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--neo-up);
}

.contact-item-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 14px;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
    box-shadow: var(--neo-inset);
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(244,196,48,0.5);
    box-shadow: var(--neo-inset), 0 0 0 3px rgba(244,196,48,0.1);
}

.contact-form button {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-dark);
    font-weight: 800;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(247,148,29,0.3), var(--neo-up);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247,148,29,0.45);
}

/* ============================================================
   LOADING & EMPTY STATES
   ============================================================ */
.loading {
    text-align: center;
    padding: 80px;
    font-size: 18px;
    color: var(--text-grey);
    grid-column: 1 / -1;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

.no-results {
    text-align: center;
    padding: 80px;
    grid-column: 1 / -1;
}

.no-results h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.no-results p { color: var(--text-grey); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .machine-info-grid { grid-template-columns: 1fr; }

    .navbar { padding: 0 30px; }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

/* ============================================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        height: 66px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 6px;
        text-align: center;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.open { display: flex; }

    .nav-links li a {
        display: block;
        padding: 12px 20px;
        border-radius: var(--radius-sm);
    }

    .hamburger { display: flex; }

    .filter-section {
        top: 66px;
        padding: 20px;
    }

    .hero {
        height: 72vh;
        min-height: 480px;
    }

    .hero-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .hero-overlay p { font-size: 15px; }

    .arrow { width: 44px; height: 44px; font-size: 16px; }
    .arrow.left { left: 14px; }
    .arrow.right { right: 14px; }

    .machines-grid {
        grid-template-columns: 1fr;
        padding: 24px 16px;
    }

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

    .machine-title { font-size: 26px; }

    .page-header h1 { font-size: 32px; }
    .page-header p { font-size: 15px; }

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

    .why-choose h2 { font-size: 30px; }

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

    .footer-top { padding: 48px 20px 32px; }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .brand-col .footer-logo { justify-content: center; }
    .footer-desc { max-width: 100%; margin: 0 auto 24px; }
    .footer-social { justify-content: center; }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a { justify-content: center; }
    .footer-col ul li a::before { display: none; }
    .footer-col ul li a:hover { transform: none; }

    .contact-col .contact-list li { justify-content: center; }

    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

    .main-image { height: 280px; border-radius: var(--radius-md); }
    .thumbnail-img { width: 68px; height: 54px; }

    .action-buttons { flex-direction: column; }
    .enquire-btn, .brochure-btn { width: 100%; }

    .filter-btn { padding: 8px 16px; font-size: 12px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-why-grid { grid-template-columns: 1fr 1fr; }

    .featured-section { padding: 60px 16px; }
    .why-choose { padding: 60px 16px; }
    .services-section { padding: 60px 16px; }
}

/* ============================================================
   RESPONSIVE - SMALL PHONES (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .navbar { padding: 0 16px; }

    .hero { height: 62vh; min-height: 400px; }

    .hero-overlay h1 {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .hero-overlay p { font-size: 14px; margin-bottom: 24px; }

    .cta-btn { padding: 13px 30px; font-size: 13px; }

    .arrow { width: 38px; height: 38px; font-size: 14px; }
    .arrow.left { left: 8px; }
    .arrow.right { right: 8px; }

    .card-image { height: 185px; }

    .section-title { font-size: 26px; }
    .why-choose h2 { font-size: 26px; }
    .page-header h1 { font-size: 26px; }

    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .benefit-card { padding: 22px 16px; }
    .benefit-icon { font-size: 36px; }
    .benefit-card h3 { font-size: 15px; }
    .benefit-card p { font-size: 12px; }

    .featured-grid { grid-template-columns: 1fr; gap: 16px; }

    .footer-container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul li a { justify-content: center; }
    .contact-col .contact-list li { justify-content: center; text-align: center; }

    .main-image { height: 220px; }
    .thumbnail-img { width: 56px; height: 46px; }
    .machine-title { font-size: 22px; }
    .specs-table td { padding: 10px 14px; font-size: 13px; }

    .filter-section { padding: 16px; }
    .filter-btn { padding: 7px 14px; font-size: 11px; }

    .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .service-card { padding: 22px 16px; }

    .about-why-grid { grid-template-columns: 1fr; }

    .footer-bottom-links { flex-direction: column; gap: 6px; }
    .footer-bottom-links span { display: none; }
}

/* ============================================================
   LANDSCAPE MODE
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { height: 100vh; min-height: 300px; }
    .hero-overlay h1 { font-size: 24px; margin-bottom: 6px; }
    .hero-overlay p { font-size: 13px; margin-bottom: 14px; }
    .cta-btn { padding: 10px 24px; font-size: 12px; }
}

/* ============================================================
   TOUCH OPTIMIZATION
   ============================================================ */
@media (hover: none) {
    .view-details-btn,
    .cta-btn,
    .enquire-btn,
    .brochure-btn,
    .filter-btn {
        min-height: 48px;
        touch-action: manipulation;
    }

    .machine-card:hover { transform: none; }
    .machine-card:active { transform: scale(0.98); }

    .view-details-btn:active,
    .cta-btn:active,
    .enquire-btn:active { transform: scale(0.96); }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .navbar, .hero, footer, .back-btn, .action-buttons { display: none !important; }
    .machine-detail { padding: 20px; }
    .machine-title { font-size: 24px; }
    body { background: #fff; color: #000; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================================
   FULL SCREEN LIGHTBOX
   ============================================================ */

   .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Close Button --- */
.lightbox-close {
    position: fixed;
    top: 25px;
    right: 35px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

/* --- Navigation Arrows --- */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* --- Counter --- */
.lightbox-counter {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
    background: rgba(0,0,0,0.5);
    padding: 8px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    z-index: 10000;
}

/* --- Main Image Clickable --- */
.main-image {
    position: relative;
    width: 100%;
    height: 450px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e8eaed;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-image:hover {
    border-color: #f7941e;
    box-shadow: 0 4px 20px rgba(247, 148, 30, 0.15);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
    pointer-events: none;
}

/* Click hint on main image */
.click-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}

.main-image:hover .click-hint {
    opacity: 1;
}

/* ============================================================
   RESPONSIVE LIGHTBOX
   ============================================================ */

@media (max-width: 768px) {
    .main-image {
        height: 280px;
    }
    
    .click-hint {
        font-size: 11px;
        padding: 4px 12px;
        bottom: 12px;
        content: '🔍 Tap to view full screen';
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .lightbox img {
        max-width: 95%;
        max-height: 75%;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 200px;
    }
    
    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .lightbox-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: 12px;
        right: 12px;
    }
    
    .click-hint {
        font-size: 10px;
        padding: 3px 10px;
        bottom: 8px;
    }
    
    .lightbox-counter {
        font-size: 12px;
        padding: 4px 14px;
        bottom: 15px;
    }
}

/* ============================================================
   MAIN IMAGE ARROWS - ALWAYS VISIBLE
   ============================================================ */

.main-image {
    position: relative;
    width: 100%;
    height: 450px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e8eaed;
    cursor: pointer;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
    pointer-events: none;
}

/* ===== ARROWS ===== */
.main-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.main-arrow:hover {
    background: rgba(247, 148, 30, 0.85);
    transform: translateY(-50%) scale(1.1);
}

.main-arrow-left {
    left: 15px;
}

.main-arrow-right {
    right: 15px;
}

/* ===== COUNTER ===== */
.main-image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ===== CLICK HINT ===== */
.click-hint {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    z-index: 5;
}

.main-image:hover .click-hint {
    opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .main-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .main-arrow-left {
        left: 8px;
    }
    .main-arrow-right {
        right: 8px;
    }
    .main-image-counter {
        font-size: 11px;
        padding: 3px 12px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .main-arrow {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .main-arrow-left {
        left: 5px;
    }
    .main-arrow-right {
        right: 5px;
    }
    .main-image-counter {
        font-size: 10px;
        padding: 2px 10px;
        bottom: 8px;
    }
}
/* ============================================================
   MAIN IMAGE ARROWS - ALWAYS VISIBLE
   ============================================================ */

   .main-image-wrapper {
    position: relative;
    width: 100%;
}

/* ===== ARROWS ON MAIN IMAGE ===== */
.main-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.main-arrow:hover {
    background: rgba(247, 148, 30, 0.85);
    transform: translateY(-50%) scale(1.1);
}

.main-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.main-arrow-left {
    left: 15px;
}

.main-arrow-right {
    right: 15px;
}

/* ===== IMAGE COUNTER ===== */
.main-image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   RESPONSIVE MAIN IMAGE ARROWS
   ============================================================ */

@media (max-width: 768px) {
    .main-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .main-arrow-left {
        left: 8px;
    }
    .main-arrow-right {
        right: 8px;
    }
    .main-image-counter {
        font-size: 11px;
        padding: 3px 12px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .main-arrow {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .main-arrow-left {
        left: 5px;
    }
    .main-arrow-right {
        right: 5px;
    }
    .main-image-counter {
        font-size: 10px;
        padding: 2px 10px;
        bottom: 8px;
    }
}


/* ============================================================
   WHATSAPP ENQUIRE BUTTON
   ============================================================ */

   .enquire-btn {
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    border: none;
    cursor: pointer;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-family: 'Poppins', sans-serif;
}

.enquire-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.enquire-btn i {
    font-size: 22px;
}

/* Remove brochure button if it still exists */
.brochure-btn {
    display: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
    .enquire-btn {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 100%;
        gap: 10px;
    }
    
    .enquire-btn i {
        font-size: 18px;
    }
}


/* ============================================================
   ACTION BUTTONS - CALL + WHATSAPP
   ============================================================ */

   .action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.action-buttons button {
    flex: 1;
    min-width: 180px;
    padding: 16px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* --- Call Button --- */
.call-btn {
    background: #1a1a2e;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.call-btn:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.call-btn i {
    font-size: 18px;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons button {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ============================================================
   FORCE ALL CARDS - WHITE BACKGROUND
   ============================================================ */

/* --- All Card Containers --- */
.machine-card,
.category-card,
.service-card,
.featured-grid .machine-card,
.services-page-embedded .machine-card {
    background: #ffffff !important;
    border: 1px solid #e8eaed !important;
}

/* --- All Card Images --- */
.machine-card .card-image,
.category-card .card-image,
.service-card .card-image,
.featured-grid .machine-card .card-image,
.services-page-embedded .machine-card .card-image {
    background: #ffffff !important;
}

/* --- All Card Image <img> --- */
.machine-card .card-image img,
.category-card .card-image img,
.service-card .card-image img,
.featured-grid .machine-card .card-image img,
.services-page-embedded .machine-card .card-image img {
    background: #ffffff !important;
    object-fit: contain;
    padding: 20px;
}

/* --- All Card Content --- */
.machine-card .card-content,
.category-card .card-content,
.service-card .card-content,
.featured-grid .machine-card .card-content,
.services-page-embedded .machine-card .card-content {
    background: #ffffff !important;
}

/* --- Remove gradient overlays --- */
.machine-card .card-image::after,
.category-card .card-image::after,
.service-card .card-image::after {
    display: none !important;
}

/* --- Card Badge --- */
.machine-card .card-badge,
.category-card .card-badge {
    background: #f7941e !important;
    color: #1a1a2e !important;
}

/* --- Service Card Icon --- */
.service-card .service-icon {
    background: #f7941e !important;
    color: #1a1a2e !important;
}

.service-card:hover .service-icon {
    background: #1a1a2e !important;
    color: #f7941e !important;
}

/* --- Category Card Icon Overlay --- */
.category-card .card-icon-overlay {
    background: #f7941e !important;
    color: #1a1a2e !important;
}

/* --- Description Box --- */
.description-box {
    background: #f5f6f8 !important;
}

/* --- Specs Preview Background --- */
.card-specs-preview span {
    background: #f0f2f5 !important;
    color: #333 !important;
}

/* --- Why Choose Cards (white, premium) --- */
.why-choose .benefit-card {
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
}

.why-choose .benefit-card h3 {
    color: var(--text-dark) !important;
}

.why-choose .benefit-card p {
    color: var(--text-grey) !important;
}
/* ============================================================
   ABOUT PAGE - PREMIUM REDESIGN
   ============================================================ */

/* Intro Section */
.about-intro-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text .section-tag { display: inline-flex; }

.about-intro-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 12px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-grey);
    margin-bottom: 14px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--neo-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--neo-card-hover);
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #C8860A, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-grey);
    letter-spacing: 0.3px;
}

/* Mission Section */
.about-mission-section {
    background: var(--bg-cream);
    padding: 72px 20px;
    border-top: 1px solid rgba(244,196,48,0.2);
    border-bottom: 1px solid rgba(244,196,48,0.2);
}

.about-mission-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(247,148,29,0.3);
}

.about-mission-icon i {
    font-size: 32px;
    color: var(--text-dark);
}

.about-mission-content .section-tag { display: inline-flex; }

.about-mission-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.6px;
    margin: 12px 0 16px;
}

.about-mission-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-grey);
}

/* Why Section */
.about-why-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.about-why-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-section-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    margin-bottom: 48px;
    margin-top: 8px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 0;
    text-align: left;
}

.about-why-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--neo-card);
    transition: var(--transition);
}

.about-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--neo-card-hover);
}

.about-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-cream-deep));
    border: 1px solid rgba(244,196,48,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--neo-up);
    transition: var(--transition);
}

.about-why-icon i {
    font-size: 22px;
    color: var(--deep-orange);
}

.about-why-card:hover .about-why-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
}

.about-why-card:hover .about-why-icon i {
    color: var(--text-dark);
}

.about-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-why-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   TESTIMONIALS - CERTIFICATE STYLE
   ============================================================ */
.about-testimonials-section {
    background: var(--bg-cream);
    padding: 80px 20px;
    border-top: 1px solid rgba(244,196,48,0.2);
}

.about-testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 8px;
    text-align: left;
}

.testimonial-certificate {
    background: var(--bg-white);
    border-radius: 4px;
    border: 1.5px solid rgba(244,196,48,0.5);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 0 0 6px rgba(244,196,48,0.06);
    padding: 32px 28px 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

/* Corner ornaments */
.testimonial-certificate::before,
.testimonial-certificate::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--accent);
    border-style: solid;
}

.testimonial-certificate::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.testimonial-certificate::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.testimonial-certificate:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1), inset 0 0 0 6px rgba(244,196,48,0.1);
    border-color: var(--accent);
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(244,196,48,0.4);
}

.cert-seal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(247,148,29,0.3);
}

.cert-seal i {
    font-size: 20px;
    color: var(--text-dark);
}

.cert-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8860B;
}

.cert-quote {
    position: relative;
    padding-left: 8px;
    margin-bottom: 22px;
}

.cert-quote-icon {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}

.cert-quote p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-mid);
    font-style: italic;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 18px;
    border-top: 1px dashed rgba(244,196,48,0.4);
}

.cert-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.cert-author-info span {
    font-size: 12px;
    color: var(--text-grey);
}

.cert-stars i {
    color: var(--primary);
    font-size: 13px;
}

/* ============================================================
   ABOUT PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .about-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-mission-container {
        flex-direction: column;
        gap: 28px;
    }

    .about-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-section-heading {
        font-size: 28px;
    }
}

/* ============================================================
   HERO RESPONSIVE FIX FOR OVERLAY WIDTH
   ============================================================ */
@media (max-width: 768px) {
    .hero-overlay {
        width: 90% !important;
        max-width: 100% !important;
        left: 5% !important;
    }
}

/* ============================================================
   HAMBURGER ICON FIX
   ============================================================ */
.hamburger i {
    font-size: 18px;
}

/* Contact icon FA support */
.contact-item-icon {
    color: var(--deep-orange);
}

.contact-item-icon i {
    font-size: 20px;
    color: var(--deep-orange);
}

/* ============================================================
   CRITICAL RESPONSIVE FIXES - COMPREHENSIVE PATCH
   ============================================================ */

/* --- HERO: Full Responsive Recovery --- */
.hero {
    height: auto;
    min-height: 88vh;
}

.hero-overlay {
    width: 50%;
    max-width: 560px;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 16px 0 0;
}

.hero-overlay h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    line-height: 1.15;
}

.hero-overlay p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.cta-btn {
    max-width: 100%;
    width: fit-content;
    white-space: nowrap;
}

/* Hero badge tag */
.hero-tag, .section-tag {
    font-size: clamp(10px, 1.5vw, 12px);
    max-width: 100%;
    white-space: normal;
}

/* --- HERO: 768px and below --- */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        height: auto;
    }

    .hero-overlay {
        width: 90% !important;
        max-width: none !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center;
        padding: 0 20px;
    }

    .hero-overlay h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        letter-spacing: -0.5px !important;
    }

    .hero-overlay p {
        font-size: clamp(0.85rem, 3vw, 1rem) !important;
        margin-bottom: 24px;
    }

    .cta-btn {
        padding: 12px 28px !important;
        font-size: 13px !important;
    }

    /* Hide arrows on mobile */
    .arrow { display: none !important; }
}

/* --- HERO: 480px and below --- */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero-overlay h1 {
        font-size: clamp(1.3rem, 7vw, 1.9rem) !important;
    }

    .hero-overlay p {
        font-size: 13px !important;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 11px 24px !important;
        font-size: 12px !important;
        letter-spacing: 0.8px !important;
    }
}

/* --- HERO: Ultra-small 360px and below --- */
@media (max-width: 360px) {
    .hero {
        min-height: 56vh;
    }

    .hero-overlay h1 {
        font-size: 1.3rem !important;
    }

    .hero-overlay p {
        font-size: 12px !important;
    }

    .cta-btn {
        padding: 10px 20px !important;
        font-size: 11px !important;
    }
}

/* --- ABOUT: Feature Cards Responsive Fix (ultra-small) --- */
@media (max-width: 300px) {
    .about-why-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .about-why-card,
    .benefit-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        text-align: left;
    }

    .about-why-icon,
    .benefit-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 20px !important;
    }

    .about-why-card h3,
    .benefit-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .about-why-card p,
    .benefit-card p {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Feature cards at 350px */
@media (max-width: 350px) {
    .about-why-grid {
        grid-template-columns: 1fr !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .about-why-card,
    .benefit-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        text-align: left;
    }

    .about-why-icon {
        flex-shrink: 0;
        min-width: 42px;
    }

    .about-why-card h3 { font-size: 13px; }
    .about-why-card p { font-size: 11px; }
}

/* --- ABOUT: Statistics Cards Responsive Fix --- */
@media (max-width: 350px) {
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .about-stat-card {
        padding: 20px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .about-stat-card .stat-number {
        font-size: 2rem;
        flex-shrink: 0;
    }
}

/* Stats clipping fix at 244px-400px */
@media (max-width: 400px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-stat-card {
        padding: 16px 10px;
    }

    .about-stat-card .stat-number {
        font-size: 1.8rem !important;
    }

    .about-stat-card .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* --- Machine Card Fix at ultra-small --- */
@media (max-width: 360px) {
    .machines-grid,
    .featured-grid {
        grid-template-columns: 1fr !important;
        padding: 16px 12px;
    }

    .card-badge {
        font-size: 9px;
        padding: 4px 10px;
        max-width: 80%;
    }

    .card-content h3 {
        font-size: 15px;
    }

    .spec-item {
        font-size: 12px;
        padding: 7px 10px;
    }
}

/* --- Footer: Social Icons move to bottom for small screens --- */
@media (max-width: 600px) {
    .brand-col {
        display: flex;
        flex-direction: column;
        order: 0;
    }

    .footer-social {
        order: 99;
        margin-top: 8px;
    }
}

/* Prevent any horizontal overflow at all sizes */
@media (max-width: 480px) {
    .footer-container {
        overflow-x: hidden;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        letter-spacing: -0.5px;
    }

    .section-header h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
    }
}

/* Prevent body overflow at all times */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* --- General container safety --- */
*, *::before, *::after {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Service search bar sticky behavior --- */
.search-sticky {
    position: sticky;
    top: 66px;
    z-index: 900;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.search-sticky.is-sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98) !important;
}

/* --- Section tag at 244px fix --- */
@media (max-width: 260px) {
    .section-tag {
        font-size: 9px;
        padding: 4px 10px;
        letter-spacing: 1px;
    }

    .hero-overlay {
        padding: 0 12px;
    }
}

/* ============================================================
   FOOTER SOCIAL ICONS - MOVE TO BOTTOM ON SMALL SCREENS
   ============================================================ */

/* On mobile, the footer uses 1-column grid.
   We use order property to push social icons to bottom. */
@media (max-width: 480px) {
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .brand-col {
        display: flex;
        flex-direction: column;
        order: 1;
    }

    /* Hide social from brand-col on mobile and show a separate one at bottom */
    .brand-col .footer-social {
        display: none;
    }

    /* Quick links */
    .footer-col:nth-child(2) { order: 2; }
    /* Equipment */
    .footer-col:nth-child(3) { order: 3; }
    /* Contact */
    .footer-col:nth-child(4) { order: 4; }
}

/* Create a footer-social-bottom row for mobile */
.footer-social-bottom {
    display: none;
    justify-content: center;
    gap: 10px;
    padding: 24px 20px 8px;
    border-top: 1px solid var(--border-light);
    margin-top: 16px;
}

.footer-social-bottom a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--neo-up);
}

.footer-social-bottom a:hover {
    background: var(--deep-orange);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.4);
}

@media (max-width: 480px) {
    .footer-social-bottom {
        display: flex;
    }
}

/* ============================================================
   ABOUT PAGE STATS - 244px clipping fix
   ============================================================ */
@media (max-width: 280px) {
    .about-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Stat number clipping fix */
.about-stat-card .stat-number {
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

@media (max-width: 400px) {
    .about-stat-card .stat-number {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }

    .about-stat-card .stat-label,
    .about-stat-card p {
        font-size: 10px !important;
        line-height: 1.3;
    }
}

/* ============================================================
   MACHINE DETAIL PAGE - spec items at 244px
   ============================================================ */
@media (max-width: 280px) {
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .card-badge {
        font-size: 8px;
        padding: 3px 8px;
    }
}

/* ============================================================
   GENERAL OVERFLOW PREVENTION
   ============================================================ */
section, footer, header, nav {
    overflow-x: hidden;
}

.featured-grid,
.machines-grid,
.benefits-grid,
.about-stats-grid,
.about-why-grid {
    overflow-x: hidden;
}


/* Sticky filter section enhancement */
.filter-section {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.filter-section.is-sticky {
    position: sticky;
    top: 66px;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(247,148,29,0.1);
    background: rgba(255,255,255,0.99) !important;
    backdrop-filter: blur(10px);
}

/* ============================================================
   TARGETED BUG FIXES - Planet Lifters Update
   ============================================================ */

/* FIX 1: Hero slider images - ensure images are visible */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) saturate(0.95);
    display: block;
}

/* FIX 2: Footer social-bottom - remove orange strip, match footer background */
.footer-social-bottom {
    background: var(--bg-cream) !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    padding: 20px 20px 16px !important;
    margin-top: 0 !important;
}

/* Remove any inherited orange/gold background from footer bottom area */
.premium-footer .footer-social-bottom {
    background: var(--bg-cream) !important;
}

/* FIX 3: Mobile hamburger - ensure it's always clickable and above all content */
.hamburger {
    position: relative;
    z-index: 1100;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* FIX 4: Mobile nav links - ensure smooth open/close */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px 20px;
        gap: 4px;
        z-index: 1050;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        animation: none;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* FIX 5: Hero height - ensure hero has explicit height for absolute positioned slider */
.hero {
    height: 88vh !important;
    min-height: 520px !important;
    position: relative !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh !important;
        min-height: 420px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100svh !important;
        min-height: 380px !important;
    }
}

/* FIX 6: Footer social bottom - remove ALL separate styling to blend naturally */
.footer-social-bottom {
    background: var(--bg-cream) !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    padding: 16px 20px 20px !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

.footer-social-bottom a {
    background: rgba(255,255,255,0.6) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* ============================================================
   HAMBURGER MENU - DEFINITIVE FIX
   Defined last to override any conflicting rules
   ============================================================ */
@media (max-width: 900px) {
    /* Hide nav links by default on mobile */
    #navLinks {
        display: none !important;
    }

    /* Show when open class is toggled */
    #navLinks.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 20px 24px;
        gap: 4px;
        z-index: 1050;
        border-bottom: 2px solid rgba(244,196,48,0.3);
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }

    #navLinks li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
    }

    /* Hamburger always visible and clickable */
    .hamburger {
        display: flex !important;
        z-index: 1100 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        position: relative !important;
    }
}

/* ============================================================
   MOBILE NAVIGATION DROPDOWN CARD
============================================================ */

@media (max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
    display: none;
    flex-direction: column;

    position: absolute;
    top: 76px;
    right: 12px;

    width: 180px;

    background: var(--bg-cream);

    padding: 12px;

    border-radius: 18px;

    border: 1px solid rgba(244,196,48,0.35);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 4px 12px rgba(247,148,29,0.12);

    gap: 8px;

    z-index: 9999;

    text-align: left;
}

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
    display: block;

    padding: 12px 14px;

    font-size: 16px;

    font-weight: 600;

    border-radius: 12px;

    text-align: left;

    transition: 0.3s ease;
}

    .nav-links li a:hover {

        background: linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

        color: #111;

        transform: translateY(-2px);
    }

    .nav-links li a.active {

        background: linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

        color: #111;

        box-shadow:
            0 5px 15px rgba(247,148,29,0.25);
    }
}

@keyframes menuFade {

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

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

/* ============================================================
   CATEGORY CARDS — NEUMORPHIC UPGRADE (featured-grid only)
   Targets: the 7 equipment category cards in #categoryGrid
   Does NOT affect machine listing cards or any other section.
   ============================================================ */

/* Override the flat "FORCE ALL CARDS" rule only for category cards */
#categoryGrid .category-card {
    background: #ffffff !important;
    border: 1px solid rgba(244, 196, 48, 0.18) !important;
    border-radius: 26px !important;
    box-shadow:
        10px 10px 28px rgba(0, 0, 0, 0.09),
        -6px -6px 18px rgba(255, 255, 255, 0.98),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Top golden accent line — hidden at rest, slides in on hover */
#categoryGrid .category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F4C430, #F7941D);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    border-radius: 26px 26px 0 0;
}

/* Subtle floating hover */
#categoryGrid .category-card:hover {
    transform: translateY(-9px) !important;
    box-shadow:
        16px 16px 40px rgba(0, 0, 0, 0.13),
        -8px -8px 22px rgba(255, 255, 255, 1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1.5px rgba(244, 196, 48, 0.32) !important;
    border-color: rgba(244, 196, 48, 0.38) !important;
}

#categoryGrid .category-card:hover::before {
    opacity: 1;
}

/* Image well — soft inset neumorphic tray */
#categoryGrid .category-card .card-image {
    background: #f8f9fa !important;
    box-shadow: inset 3px 3px 9px rgba(0, 0, 0, 0.06),
                inset -2px -2px 7px rgba(255, 255, 255, 0.92);
    border-radius: 20px 20px 0 0;
}

/* Gentle image scale on hover */
#categoryGrid .category-card:hover .card-image img {
    transform: scale(1.05);
}

/* Card content area stays pure white with soft top border separator */
#categoryGrid .category-card .card-content {
    background: #ffffff !important;
    border-top: 1px solid rgba(244, 196, 48, 0.14);
}

/* Badge — keep existing gradient, add softer shadow */
#categoryGrid .category-card .card-badge {
    background: linear-gradient(135deg, #F4C430, #F7941D) !important;
    color: #1a1a2e !important;
    box-shadow: 0 4px 14px rgba(247, 148, 29, 0.38);
}

/* Explore button — soft neumorphic lift */
#categoryGrid .category-card .view-details-btn {
    background: #FFF8E7 !important;
    box-shadow:
        5px 5px 14px rgba(0, 0, 0, 0.07),
        -3px -3px 10px rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(244, 196, 48, 0.28) !important;
    border-radius: 10px;
    color: #B8860B;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#categoryGrid .category-card .view-details-btn:hover {
    background: linear-gradient(135deg, #F4C430, #F7941D) !important;
    color: #1a1a2e;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.42);
    transform: translateY(-1px);
}