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

:root {
    --primary: #21409a;
    --surface: #ffffff;
    --surface-alt: #f0fdf4;
    --accent: #009a44;
    --accent-hover: #007a33;
    --accent-orange: #21409a;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --radius: 2px;
    --radius-sm: 2px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* -------------------------------------
   MODERN CORPORATE HEADER
--------------------------------------*/
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}
.top-bar span strong {
    color: #fff;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 85px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.logo .brand-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}
.logo .brand-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: #0d9488;
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a.nav-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 0;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
    color: var(--accent);
}

/* Beautiful Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    min-width: 260px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: var(--surface-alt);
    padding-left: 30px;
}

/* -------------------------------------
   MODERN HERO SECTION (Bento Style)
--------------------------------------*/
.hero {
    position: relative;
    padding: 60px 24px;
    background: var(--surface-alt);
}

.hero-bento {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 500px;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-main {
    background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%);
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.hero-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-main h1 {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    z-index: 2;
}

.hero-main p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 500px;
    margin-bottom: 40px;
    z-index: 2;
}

.hero-side {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-side img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s linear;
}

.hero-side:hover img {
    transform: scale(1.1);
}

/* -------------------------------------
   BUTTONS
--------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: 0;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.02);
}

/* -------------------------------------
   MODERN BENTO GRID (Products)
--------------------------------------*/
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Make the first card span 2 cols */
.bento-card.span-2 {
    grid-column: span 2;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.bento-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.1;
    transition: 0.5s;
    pointer-events: none;
}

.bento-card:hover .bento-img {
    opacity: 0.2;
    transform: scale(1.1);
}

.bento-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--accent);
}

/* -------------------------------------
   STATS SECTION
--------------------------------------*/
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

/* -------------------------------------
   GENERIC HERO (Inner Pages)
--------------------------------------*/
.hero-inner {
    background: #fff;
    padding: 100px 24px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-inner h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-inner p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* -------------------------------------
   PRODUCT SPECIFICATIONS
--------------------------------------*/
.spec-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-top: 40px;
}

.spec-table-modern {
    width: 100%;
    border-collapse: collapse;
}

.spec-table-modern th,
.spec-table-modern td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.spec-table-modern th {
    width: 30%;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    background: #fafafa;
}

.spec-table-modern tr:last-child th,
.spec-table-modern tr:last-child td {
    border-bottom: none;
}

/* -------------------------------------
   RFQ FORM (Modern)
--------------------------------------*/
.rfq-modern {
    background: #fff;
    padding: 50px;
    border: 1px solid var(--border);
}

.rfq-modern h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.input-modern {
    width: 100%;
    padding: 16px 20px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.input-modern:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* -------------------------------------
   FOOTER
--------------------------------------*/
.modern-footer {
    background: #020617;
    color: #fff;
    padding: 80px 24px 40px;
    margin-top: 100px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

/* ================================================
   HOMEPAGE HERO SECTION (NEW CSS-CONTROLLED)
================================================ */
.home-hero-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.home-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.home-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.home-hero-text {
    max-width: 600px;
    flex: 1;
}
.home-hero-h1 {
    font-size: 5rem;
    line-height: 1;
    margin: 20px 0;
    color: var(--primary);
    letter-spacing: -1px;
}
.home-hero-orb {
    width: 400px;
    height: 400px;
    background: #dbeafe;
    border-radius: 50%;
    opacity: 0.8;
    flex-shrink: 0;
}
.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* STATS BAR */
.home-stats-bar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--accent);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 0;
}
.home-stat-item {
    padding: 30px 20px;
    border-right: 1px solid #e2e8f0;
}
.home-stat-item:last-child { border-right: none; }
.home-stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.home-stat-item p {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ================================================
   HAMBURGER BUTTON
================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   MOBILE NAV DRAWER
================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    z-index: 2000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    padding: 5px;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-links li a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 0;
    transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--accent); }

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ================================================
   ADDITIONAL HOMEPAGE SECTIONS
================================================ */
.split-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.split-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.split-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: var(--surface-alt);
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* MARQUEE */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}
.marquee-content img {
    display: inline-block;
    height: 36px;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    border-radius: 0;
}
.marquee-content img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA BANNER */
.cta-banner {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    margin: 60px 0;
}
.cta-banner h2 { color: #fff; font-size: 3rem; margin-bottom: 20px; letter-spacing: -1px; }
.cta-banner p { font-size: 1.2rem; color: #94a3b8; max-width: 600px; margin: 0 auto 30px; }

/* CINEMATIC HERO */
.hero-cinematic {
    position: relative;
    padding: 120px 0 160px;
    background: #020617;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: luminosity;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.hero-cinematic h1 { font-size: 5.5rem; line-height: 1.05; color: #fff; margin-bottom: 24px; letter-spacing: -2px; }
.hero-cinematic p { font-size: 1.3rem; color: #94a3b8; max-width: 600px; margin-bottom: 40px; }
.hero-glass-box {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hero-glass-box img { border-radius: 12px; margin-bottom: 20px; width: 100%; height: 250px; object-fit: cover; }

.tab-item {
    cursor: pointer;
    user-select: none;
}

/* ================================================
   RESPONSIVE: TABLET (max 1024px)
================================================ */
@media(max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.span-2 { grid-column: span 1; }
    .hero-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hero-side { height: 400px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .split-bento { grid-template-columns: 1fr; gap: 40px; }
    .feature-grid { grid-template-columns: 1fr; }
    .hero-content-wrapper { grid-template-columns: 1fr; }
    .hero-cinematic h1 { font-size: 4rem; }
    .hero-glass-box { display: none; }
    .home-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .home-stat-item:nth-child(2) { border-right: none; }
    .home-hero-orb { display: none; }
    .assets-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   RESPONSIVE: MOBILE (max 768px)
================================================ */
@media(max-width: 768px) {

    /* === TOP BAR === */
    .top-bar { display: none; }

    /* === NAVBAR === */
    .navbar { padding: 0 20px; height: 70px; }
    .nav-links { display: none !important; }
    .header-btn { display: none !important; }
    .hamburger { display: flex !important; }

    /* === CONTAINER === */
    .container { padding: 0 16px; }

    /* === SECTION PADDING === */
    .section-pad { padding: 60px 0; }

    /* === HOME HERO === */
    .home-hero-section { padding: 60px 0; }
    .home-hero-inner { flex-direction: column; align-items: flex-start; }
    .home-hero-orb { display: none; }
    .home-hero-h1 { font-size: 3rem !important; margin: 15px 0; }
    .hero-btn-group { flex-direction: column; }
    .hero-btn-group .btn { width: 100%; justify-content: center; text-align: center; }

    /* === HOME STATS BAR === */
    .home-stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
    .home-stat-item { padding: 20px 10px; }
    .home-stat-item:nth-child(2) { border-right: none; }
    .home-stat-item h2 { font-size: 2rem; }

    /* === BENTO GRID === */
    .bento-grid { grid-template-columns: 1fr !important; grid-auto-rows: auto; }
    .bento-card.span-2 { grid-column: span 1 !important; }
    .bento-card { min-height: 220px; }

    /* === SPLIT BENTO === */
    .split-bento { grid-template-columns: 1fr !important; gap: 30px !important; }
    .split-content h2 { font-size: 2rem; }

    /* === FEATURE GRID === */
    .feature-grid { grid-template-columns: 1fr !important; }

    /* === FOOTER === */
    .footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .modern-footer { padding: 60px 20px 30px; margin-top: 60px; }

    /* === PRODUCT PAGE TABS === */
    .tab-bar-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tab-bar-wrap::-webkit-scrollbar { display: none; }

    /* === PRODUCT ROW === */
    .product-row { flex-direction: column !important; align-items: flex-start !important; gap: 15px; }
    .product-row > div:last-child { text-align: left !important; width: 100%; }

    /* === ABOUT US HERO IMAGE === */
    .about-hero-inner { padding: 60px 20px !important; }
    .about-hero-inner h1 { font-size: 2.8rem !important; }

    /* === ABOUT US TIMELINE === */
    .timeline-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .timeline-grid > div { border-right: none !important; border-bottom: 1px solid var(--border); }

    /* === CTA BANNER === */
    .cta-banner { padding: 50px 20px; }
    .cta-banner h2 { font-size: 2rem !important; }

    /* === HERO INNER === */
    .hero-inner { padding: 70px 20px 40px; }
    .hero-inner h1 { font-size: 2.5rem !important; }

    /* === CINEMATIC HERO === */
    .hero-cinematic { padding: 80px 0 100px; }
    .hero-cinematic h1 { font-size: 2.8rem !important; }

    /* === ASSETS GRID (National Assets) === */
    .assets-grid { grid-template-columns: 1fr !important; }

    /* === GENERIC HEADINGS === */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    /* === SPEC TABLE === */
    .spec-table-modern th, .spec-table-modern td { padding: 12px; font-size: 0.9rem; }

    /* === RFQ FORM === */
    .rfq-modern { padding: 30px 20px; }

    /* == Universal inline grid reset for mobile === */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Exceptions */
    div.timeline-grid[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
    }
}

/* Product detail grid - mobile */
@media(max-width: 991px) {
    .product-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    .product-right-col {
        display: contents !important;
    }
    .product-image-box {
        order: -1;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }
    .product-left-col {
        order: 0;
    }
    .product-rfq-box {
        order: 1;
    }
}

/* Homepage Product Catalog Cards */
.product-catalog-card {
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-catalog-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.pcc-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.pcc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-catalog-card:hover .pcc-img img {
    transform: scale(1.05);
}
.pcc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.pcc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pcc-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.pcc-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.pcc-specs {
    border-top: 1px solid var(--border);
    padding: 15px 0 10px 0;
    margin-top: auto;
    display: flex;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.pcc-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 0.85rem;
    color: #64748b;
}
.pcc-specs-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pcc-specs-list li i {
    color: var(--accent);
    font-size: 0.75rem;
}
.pcc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pcc-details {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.pcc-download {
    background: #64748b;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}
.pcc-download:hover {
    background: var(--primary);
}
