/*
Theme Name: FieldSupplies
Theme URI: https://fieldsupplies.pk
Author: FieldSupplies Team
Author URI: https://fieldsupplies.pk
Description: Industrial Supply & Distribution WordPress Theme for FieldSupplies. Gray and dark blue color scheme with DM Serif Display and DM Sans typography.
Version: 1.0.5
License: GPL v2 or later
Text Domain: fieldsupplies
*/

:root {
    --bg: #f4f4f6;
    --bg-alt: #e8e8ec;
    --accent: #1e3a5f;
    --accent-dark: #152a45;
    --accent-light: #2a4a75;
    --text: #1a1a2e;
    --text-light: #555570;
    --text-muted: #8887a0;
    --white: #ffffff;
    --black: #000000;
    --overlay: rgba(26,26,46,0.6);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-h: 96px;
}

/* Backward compat aliases */
:root {
    --gold: var(--accent);
    --gold-dark: var(--accent-dark);
    --gold-light: var(--accent-light);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a, button, input, select, textarea {
    touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}

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

a:hover {
    color: var(--gold-dark);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-link {
    background: none;
    border: none;
    color: var(--text);
    padding: 8px 16px;
}

.btn-link:hover {
    color: var(--gold);
    background: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--white);
    transition: all var(--transition);
}

.site-header:hover {
    box-shadow: var(--shadow);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
}

.site-title:hover {
    color: var(--gold);
}

.custom-logo-link img,
.site-logo {
    max-height: 140px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav li {
    margin: 0;
    padding: 0;
    position: relative;
}

.header-nav a {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header-nav a:hover {
    color: var(--gold);
    background: rgba(30,58,95,0.08);
}

.header-nav .current-menu-item a,
.header-nav .current_page_item a {
    color: var(--gold);
}

/* ========== DROPDOWN ========== */
.header-nav .menu-item-has-children {
    position: relative;
}

.header-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.header-nav .menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 180px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 100;
    flex-direction: column;
    gap: 0;
}

.header-nav .menu-item-has-children:hover .sub-menu {
    display: flex;
}

.header-nav .sub-menu li {
    width: 100%;
}

.header-nav .sub-menu a {
    padding: 10px 20px;
    color: var(--text);
    border-radius: 0;
    white-space: nowrap;
    display: block;
}

.header-nav .sub-menu a:hover {
    background: rgba(30,58,95,0.06);
    color: var(--gold);
}

/* ========== PRODUCTS MEGA MENU ========== */
.products-dropdown {
    position: relative;
}

.products-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 101;
}

.header-nav .mega-sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 220px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 6px 0;
    z-index: 100;
}

.products-dropdown:hover .mega-sub-menu,
.products-dropdown .mega-sub-menu:hover {
    display: block;
}

.mega-col {
    position: relative;
}

.mega-cat-title {
    display: block;
    font-weight: 500;
    color: var(--text);
    font-size: 0.82rem;
    padding: 7px 16px;
    transition: all var(--transition);
}

.mega-cat-title:hover {
    color: var(--gold);
    background: rgba(30,58,95,0.04);
}

.mega-col .mega-products {
    display: none;
    position: absolute;
    left: calc(100% + 4px);
    top: -6px;
    background: #fff;
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 6px 0;
    list-style: none;
    margin: 0;
}

.mega-col:hover .mega-products {
    display: block;
}

.mega-products li a {
    display: block;
    padding: 7px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.mega-products li a:hover {
    color: var(--gold);
    background: rgba(30,58,95,0.04);
}

.mega-products li a:hover {
    color: var(--gold);
    background: none;
}

/* Drawer sub-menu */
.drawer-menu .menu-item-has-children {
    flex-direction: column;
}

.drawer-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.drawer-menu .menu-item-has-children.open > a .dropdown-arrow {
    transform: rotate(180deg);
}

.drawer-menu .sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    gap: 0;
}

.drawer-menu .menu-item-has-children.open .sub-menu {
    display: flex;
}

.drawer-menu .sub-menu a {
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* ========== HAMBURGER (Three Vertical Bars) ========== */
.menu-drawer-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-drawer-btn span {
    display: block;
    width: 3px;
    height: 20px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-drawer-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-drawer-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-drawer-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ========== DRAWER OVERLAY ========== */
.menu-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.menu-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========== DRAWER ========== */
.menu-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.menu-drawer.open {
    right: 0;
}

.menu-drawer-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-drawer-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-brand a {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text);
}
.drawer-logo {
    max-height: 100px;
    width: auto;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-menu li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    min-height: 44px;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.drawer-menu li a:hover {
    color: var(--gold);
    background: rgba(30,58,95,0.08);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.drawer-btn {
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

.drawer-btn.btn-primary {
    color: var(--white);
}

/* ========== PARTICLE CANVAS ========== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ========== HERO GLOWING PARTICLES ========== */
#heroParticles.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ========== PRODUCTS HERO (Crossfade) ========== */
.products-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-h);
    background: var(--accent);
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 15% 50%, rgba(42,74,117,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 85% 50%, rgba(42,74,117,0.3) 0%, transparent 70%);
    z-index: 1;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,58,95,0.6) 0%, rgba(30,58,95,0.75) 100%);
    z-index: 2;
}

.products-hero-images {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px 0;
    z-index: 1;
    width: 30%;
}

.products-hero-images.left-col {
    left: 3%;
    align-items: flex-start;
}

.products-hero-images.right-col {
    right: 3%;
    align-items: flex-end;
}

.products-hero-img-wrap {
    position: relative;
    width: 260px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
}

.products-hero-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.products-hero-img-wrap img.active {
    opacity: 1;
}

.products-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.products-hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.products-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.products-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .products-hero-images { display: none; }
    .products-hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .products-hero { min-height: 400px; height: 55vh; }
    .products-hero-content h1 { font-size: 2.4rem; }
}

/* ===== SERVICES: WHO WE ARE ===== */
.svc-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.svc-who-card {
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.svc-who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.svc-who-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 13px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}
.svc-who-icon svg { width: 100%; height: 100%; }
.svc-who-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.svc-who-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== SERVICES: SPECIALIZATIONS ===== */
.svc-special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-special-card {
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.svc-special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.svc-special-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--accent);
    background: rgba(30,58,95,0.08);
    border-radius: 12px;
    padding: 11px;
    transition: all var(--transition);
}
.svc-special-card:hover .svc-special-icon {
    background: var(--accent);
    color: var(--white);
}
.svc-special-icon svg { width: 100%; height: 100%; }
.svc-special-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.svc-special-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== SERVICES: PROCESS ===== */
.svc-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.svc-process-step {
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.svc-process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.svc-process-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(30,58,95,0.06);
    line-height: 1;
    margin-bottom: 8px;
}
.svc-process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(30,58,95,0.25);
}
.svc-process-icon svg { width: 100%; height: 100%; }
.svc-process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.svc-process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== SERVICES: DISTRIBUTION ===== */
.svc-dist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.svc-dist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.svc-dist-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.svc-dist-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 7px;
}
.svc-dist-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}
.svc-dist-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES: PARTNERS ===== */
.svc-partners-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
}
.svc-partner-tag {
    padding: 12px 22px;
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.svc-partner-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(30,58,95,0.04);
    transform: translateY(-2px);
}

/* ===== SERVICES: WHY ===== */
.svc-why-section {
    position: relative;
}
.svc-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.svc-why-item {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: all var(--transition);
}
.svc-why-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.svc-why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-radius: 13px;
    padding: 12px;
    transition: all var(--transition);
}
.svc-why-item:hover .svc-why-icon {
    background: rgba(255,255,255,0.15);
}
.svc-why-icon svg { width: 100%; height: 100%; }
.svc-why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
}
.svc-why-item p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== SERVICES: CTA ===== */
.svc-cta-card {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius);
    padding: 56px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.svc-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.svc-cta-card .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
}
.svc-cta-card .btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 1024px) {
    .svc-who-grid { grid-template-columns: 1fr 1fr; }
    .svc-why-grid { grid-template-columns: 1fr 1fr; }
    .services-hero-text { font-size: 3rem; }
}

@media (max-width: 768px) {
    .services-hero { min-height: 60vh; }
    .services-hero-text { font-size: 2.2rem; }
    .svc-who-grid { grid-template-columns: 1fr; }
    .svc-special-grid { grid-template-columns: 1fr; }
    .svc-process-grid { grid-template-columns: 1fr; }
    .svc-dist-grid { grid-template-columns: 1fr; }
    .svc-why-grid { grid-template-columns: 1fr; }
    .svc-cta-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .services-hero-text { font-size: 1.8rem; }
}

/* ========== PAGE HERO (Interior Pages) ========== */
.page-hero {
    position: relative;
    padding: 140px 20px 60px;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.05) 0%, rgba(26,26,46,0.15) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.page-hero .hero-badge {
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}

.page-hero .page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

/* ========== PAGE BANNER (Products, Archives, etc.) ========== */
.page-banner {
    padding: calc(var(--header-h) + 40px) 20px 40px;
    background: var(--accent);
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
}

.page-banner p {
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    font-size: 1rem;
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    padding-top: var(--header-h);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #e8e8ec 0%, #f4f4f6 50%, #e8e8ec 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(244,244,246,0) 0%, rgba(244,244,246,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto 0 60px;
    padding: 40px 20px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-left: 0;
}

.hero-title {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 640px;
    line-height: 1.8;
}

.hero-bottom {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.hero-actions .btn-primary {
    padding: 14px 32px;
    font-size: 0.95rem;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
}

.hero-actions .btn-outline {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-width: 2px;
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px 24px;
    justify-content: flex-end;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item h3 {
    font-size: 1.6rem;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.hero-stat-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ========== SECTION ========== */
.section {
    padding: 90px 0;
    position: relative;
}

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

.section-dark {
    background: var(--text);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

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

.section-header {
    margin-bottom: 52px;
}

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== CULTURE ========== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.culture-card {
    background: var(--accent);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.15);
    background: var(--accent-light);
}

.culture-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition);
    color: var(--white);
}

.culture-card:hover .culture-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.culture-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--white);
}

.culture-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ========== SERVICES STEPS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-step {
    background: var(--accent);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.15);
    background: var(--accent-light);
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.2);
    line-height: 1;
    margin-bottom: 16px;
    transition: all var(--transition);
}

.service-step:hover .step-number {
    color: rgba(255,255,255,0.4);
}

.service-step h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: var(--white);
}

.service-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}




.product-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-item-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.product-item-link:hover {
    color: inherit;
}
.product-thumb {
    overflow: hidden;
}
.product-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 16px 20px 20px;
}
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}
.product-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== CATEGORY FILTER BUTTONS ========== */
.product-cat-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.product-cat-btn {
    padding: 12px 24px;
    border: 1px solid #dcdce0;
    background: var(--white);
    color: var(--text);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.3s ease;
}

.product-cat-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.product-cat-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ========== BEAUTIFIED PRODUCT GRID ========== */
.fp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.fp-product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.fp-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
    color: inherit;
}

.fp-product-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}

.fp-product-card:hover .fp-product-thumb img {
    transform: scale(1.05);
}

.fp-product-placeholder {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    opacity: 0.3;
}

.fp-product-placeholder svg {
    width: 100%;
    height: 100%;
}

.fp-product-info {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fp-product-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.fp-product-card:hover .fp-product-info h3 {
    color: var(--accent);
}

.fp-product-meta {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.fp-product-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 8px;
}

@media (max-width: 768px) {
    .fp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fp-product-thumb {
        height: 150px;
    }
}

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

/* ========== PRODUCT CARDS ========== */
.featured-product {
    padding: 60px 0;
}

.featured-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-product-image {
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
}

.featured-product-info {
    padding: 48px 48px 48px 0;
}

.featured-product-info .section-label {
    margin-bottom: 8px;
}

.featured-product-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.featured-product-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 20px;
}

.featured-product-info p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius);
}

.product-categories {
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-category-tag {
    padding: 4px 14px;
    background: rgba(30,58,95,0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-manufacturer,
.product-sku {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.product-description {
    margin: 20px 0;
    color: var(--text);
    line-height: 1.8;
}

.product-description h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 28px 0 12px;
    color: var(--accent);
}

.product-description h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 20px 0 8px;
    color: var(--text);
}

.product-description ul {
    list-style: disc;
    padding-left: 24px;
    margin: 8px 0 16px;
}

.product-description ul li {
    margin-bottom: 4px;
    font-size: 0.93rem;
}

.product-description hr {
    border: none;
    border-top: 1px solid var(--bg-alt);
    margin: 28px 0;
}

.product-specs {
    margin-top: 20px;
}

.product-specs h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-specs pre {
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.88rem;
    white-space: pre-wrap;
    border: 1px solid var(--bg-alt);
}

.product-actions {
    margin-top: 24px;
}
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-choose-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--bg-alt);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.why-choose-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 13px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 6px 20px rgba(30,58,95,0.3);
}

.why-choose-icon svg {
    width: 100%;
    height: 100%;
}

.why-choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== STATS / NUMBERS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 20px;
    transition: all var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.section-dark .stat-item p {
    color: rgba(255,255,255,0.4);
}

/* ========== PRODUCTS HERO SLIDER ========== */
.products-hero {
    width: 100%;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    position: relative;
    background: var(--bg);
    padding-top: var(--header-h);
}

.products-hero .products-carousel {
    width: 100%;
    height: calc(100% - var(--header-h));
}

.products-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.products-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-slide {
    min-width: 100%;
    height: 100%;
}

.products-slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(30,58,95,0.6);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    opacity: 0.85;
}

.carousel-arrow:hover {
    background: var(--accent);
    opacity: 1;
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}

.products-hero .carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 16px;
}

.testimonial-card {
    background: var(--accent);
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ========== EVENTS CAROUSEL ========== */
.events-carousel {
    position: relative;
    overflow: hidden;
}

.events-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.events-slide {
    min-width: 100%;
    padding: 0 16px;
}

.event-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.event-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 56px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 100%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 20px;
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.85) 60%);
    color: var(--white);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #fff;
}

.event-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ========== CLIENTS MARQUEE ========== */
.clients-marquee {
    overflow: hidden;
    padding: 24px 0;
    position: relative;
}

.clients-marquee-inner {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.clients-marquee-inner img {
    height: 48px;
    width: auto;
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== MEDICAL EQUIPMENT CROSSFADE (Home) ========== */
.medical-equip-images {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.medical-equip-images.left {
    left: -60px;
    align-items: flex-start;
}

.medical-equip-images.right {
    right: -60px;
    align-items: flex-end;
}

.medical-equip-img-wrap {
    position: relative;
    width: 140px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.05);
}

.medical-equip-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.medical-equip-img-wrap img.active {
    opacity: 1;
}

@media (max-width: 1100px) {
    .medical-equip-images { display: none; }
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
    position: relative;
}

.footer-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

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

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    transition: all var(--transition);
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li a {
    display: inline-block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
    position: relative;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    width: 100%;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.footer-contact-item:hover {
    color: rgba(255,255,255,0.8);
}

.footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    margin-top: 2px;
}

.footer-contact-text {
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

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

/* ========== AUTH FORMS ========== */
.auth-section {
    padding: 120px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
}

.auth-form-container h2 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    text-align: center;
}

.auth-form-container .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bg-alt);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.form-message.show {
    display: block;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-footer a {
    color: var(--gold);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== PRODUCT FILTER ========== */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--bg-alt);
    background: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    min-height: 44px;
    transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30,58,95,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== 404 ========== */
.error-404-section {
    padding: 140px 20px 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content h1 {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.error-404-content h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.error-404-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ========== DEFAULT PAGE ========== */
.default-page {
    padding: 60px 20px 60px;
}

.default-page .entry-header {
    margin-bottom: 32px;
}

.default-page .entry-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
}

.default-page .entry-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ========== SIDEBAR ========== */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}

.widget-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.widget ul li a:hover {
    color: var(--gold);
}

/* ========== SINGLE POST ========== */
.single-post-article {
    padding: 120px 20px 60px;
}

.single-post-article .post-thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.single-post-article .post-thumbnail img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.single-post-article .entry-title {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.single-post-article .entry-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-alt);
}

.single-post-article .entry-content {
    max-width: 800px;
}

.single-post-article .entry-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.single-post-article .entry-content h2,
.single-post-article .entry-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .menu-drawer-btn {
        display: flex;
    }

    .header-inner {
        justify-content: flex-start;
        gap: 8px;
    }

    .site-branding {
        flex: 1;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .product-category.reverse {
        direction: ltr;
    }

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

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

    .page-with-sidebar {
        grid-template-columns: 1fr;
    }
    .widget-area {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .menu-drawer {
        width: 100%;
        max-width: 100vw;
        right: -100vw;
    }

    .hero-content {
        padding: 32px 24px;
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-bottom {
        flex-wrap: wrap;
    }

    .hero-stats {
        gap: 16px 24px;
    }

    .hero-stat-item h3 {
        font-size: 1.4rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .culture-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-form-container {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .featured-product-grid {
        grid-template-columns: 1fr;
    }

    .featured-product-image {
        height: 260px;
    }

    .featured-product-info {
        padding: 32px 24px;
    }

    .featured-product-info h2 {
        font-size: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stat-item h3 {
        font-size: 1.2rem;
    }

    .culture-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-item h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .error-404-content h1 {
        font-size: 5rem;
    }

    .single-post-article .entry-title {
        font-size: 1.8rem;
    }

    .default-page .entry-title {
        font-size: 1.6rem;
    }

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


}

/* ========== PRODUCT PAGE (S6100) ========== */
.product-cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.product-cover.cover-contain {
    background-size: cover;
    background-position: center 15%;
    background-color: #1a1a2e;
}
.product-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.6) 0%, rgba(30,58,95,0.5) 50%, rgba(42,74,117,0.3) 100%);
    z-index: 1;
}
.product-cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}
.product-cover-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.product-cover-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.product-overview {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.product-overview .product-manufacturer {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: -10px;
    margin-bottom: 20px;
}
.product-overview p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}
.product-categories.center {
    justify-content: center;
}
.product-overview .product-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-alt);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}
.application-item {
    padding: 12px 24px;
    background: var(--bg-alt);
    border: 1px solid #dcdce0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    transition: all var(--transition);
}
.application-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(30,58,95,0.1);
}
.application-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 12px;
}
.modes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.mode-tag {
    padding: 10px 20px;
    background: rgba(30,58,95,0.1);
    border: 1px solid rgba(30,58,95,0.15);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    transition: all var(--transition);
}
.mode-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.safety-item {
    padding: 16px 20px;
    background: var(--bg-alt);
    border: 1px solid #dcdce0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition);
}
.safety-item::before {
    content: '✓';
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}
.safety-item:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.specs-group {
    background: var(--bg-alt);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}
.specs-group:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}
.specs-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(30,58,95,0.1);
}
.specs-group p {
    color: var(--text);
    font-size: 0.92rem;
}
.specs-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specs-group ul li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
.specs-group ul li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.accessory-card {
    background: var(--bg-alt);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
}
.accessory-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.accessory-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}
.accessory-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accessory-card ul li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.section-details {
    background: var(--bg-alt);
}

@media (max-width: 768px) {
    .product-cover {
        min-height: 60vh;
        background-position: center 50%;
    }
    .product-cover-content h1 {
        font-size: 2.2rem;
    }
    .product-cover-content p {
        font-size: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
    .accessories-grid {
        grid-template-columns: 1fr;
    }
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-contact-details {
        grid-template-columns: 1fr;
    }
}

/* ========== ABOUT SECTION STYLES ========== */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/about-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(30,58,95,0.4) 100%);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}
.about-hero-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    animation: heroFade 4s ease-in-out infinite;
}

/* ===== SERVICES HERO (Image Style) ===== */
.services-hero-img {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/services-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}
.services-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(30,58,95,0.4) 100%);
    z-index: 1;
}
.services-hero-img-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}
.services-hero-img-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    animation: heroFade 4s ease-in-out infinite;
    margin-bottom: 16px;
}
.services-hero-img-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
}

/* ===== REGISTER HERO ===== */
.register-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.register-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1a2e 0%, #1a3a5f 25%, #2a5a7a 50%, #1a3a5f 75%, #0f1a2e 100%);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
    z-index: 0;
}
@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.register-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.register-hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleFloat 8s infinite;
}
.register-hero-particles span:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; width: 8px; height: 8px; }
.register-hero-particles span:nth-child(2)  { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; width: 5px; height: 5px; }
.register-hero-particles span:nth-child(3)  { left: 45%; top: 10%; animation-delay: 2s; animation-duration: 8s; width: 10px; height: 10px; }
.register-hero-particles span:nth-child(4)  { left: 65%; top: 70%; animation-delay: 0.5s; animation-duration: 10s; }
.register-hero-particles span:nth-child(5)  { left: 80%; top: 30%; animation-delay: 3s; animation-duration: 7s; width: 7px; height: 7px; }
.register-hero-particles span:nth-child(6)  { left: 15%; top: 80%; animation-delay: 1.5s; animation-duration: 11s; }
.register-hero-particles span:nth-child(7)  { left: 50%; top: 40%; animation-delay: 2.5s; animation-duration: 9s; width: 9px; height: 9px; }
.register-hero-particles span:nth-child(8)  { left: 75%; top: 85%; animation-delay: 0.8s; animation-duration: 8s; width: 4px; height: 4px; }
.register-hero-particles span:nth-child(9)  { left: 35%; top: 50%; animation-delay: 3.5s; animation-duration: 10s; }
.register-hero-particles span:nth-child(10) { left: 90%; top: 15%; animation-delay: 1.2s; animation-duration: 7s; width: 6px; height: 6px; }
@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.15; }
    50% { transform: translateY(-120px) scale(1.5); opacity: 0.4; }
    100% { transform: translateY(0) scale(1); opacity: 0.15; }
}
.register-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 720px;
    animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.register-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.9);
    animation: iconPulse 3s ease-in-out infinite;
}
.register-hero-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(100,180,255,0.3));
}
@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
.register-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.register-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a4a 0%, var(--accent) 30%, #2a5a7a 60%, #1a3a5a 100%);
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
    z-index: 1;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.012) 30px, rgba(255,255,255,0.012) 31px);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}
.contact-hero-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    animation: heroFade 4s ease-in-out infinite;
    margin-bottom: 16px;
}
.contact-hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
}

@keyframes heroFade {
    0% { opacity: 0.3; transform: scale(0.98); }
    25% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1); }
    75% { opacity: 0.3; transform: scale(0.98); }
    100% { opacity: 0.3; transform: scale(0.98); }
}

@media (max-width: 768px) {
    .about-hero, .services-hero-img, .contact-hero, .register-hero {
        min-height: 60vh;
    }
    .about-hero-text, .services-hero-img-text, .contact-hero-text, .register-hero-title {
        font-size: 2.2rem;
    }
    .register-hero-subtitle {
        font-size: 1rem;
    }
    .register-hero-icon {
        width: 56px;
        height: 56px;
    }
}

.about-intro {
    padding-bottom: 40px;
}
.about-tagline {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 8px;
}
.about-website {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.about-website a {
    color: var(--accent);
    font-weight: 600;
}
.about-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-story p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 16px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-mission-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
    text-align: center;
    box-shadow: 0 4px 20px rgba(30,58,95,0.06);
}
.about-mission-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(30,58,95,0.12);
    transform: translateY(-6px);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}
.about-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent) 0%, #2a4a75 100%);
    border-radius: 14px;
    padding: 14px;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}
.about-mission-card:hover .about-card-icon {
    background: linear-gradient(135deg, #2a4a75 0%, var(--accent) 100%);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(30,58,95,0.3);
}
.about-card-icon svg {
    width: 100%;
    height: 100%;
}
.about-mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text);
}
.about-mission-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
}
.service-area-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(30,58,95,0.06);
}
.service-area-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(30,58,95,0.12);
    transform: translateY(-5px);
    background: linear-gradient(145deg, #ffffff 0%, #eef3ff 100%);
}
.service-area-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent) 0%, #3a6a95 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}
.service-area-icon svg {
    width: 100%;
    height: 100%;
}
.service-area-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}
.service-area-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.about-stat {
    text-align: center;
    padding: 32px 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(30,58,95,0.06);
}
.about-stat:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(30,58,95,0.12);
    transform: translateY(-4px);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}
.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1;
}
.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
.partner-item {
    padding: 16px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid #dcdce0;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(30,58,95,0.04);
}
.partner-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: linear-gradient(145deg, #ffffff 0%, #eef3ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30,58,95,0.1);
}

.about-contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid #dcdce0;
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: 0 8px 30px rgba(30,58,95,0.08);
}
.about-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}
.about-contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.about-contact-item p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}
.about-contact-item a {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}
.about-contact-item a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-contact-details {
        grid-template-columns: 1fr;
    }
    .about-contact-card {
        padding: 32px 24px;
    }
}

/* ========== NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-link:hover {
    color: inherit;
}

.news-card-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-thumb img {
    transform: scale(1.05);
}

.news-card-placeholder {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    opacity: 0.3;
}

.news-card-placeholder svg {
    width: 100%;
    height: 100%;
}

.news-card-body {
    padding: 20px 22px 24px;
}

.news-card-date {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--text);
}

.news-card:hover .news-card-body h3 {
    color: var(--accent);
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.news-card-link-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--accent);
}

.news-card:hover .news-card-link-text {
    color: var(--accent-light);
}

/* ========== NEWS PAGINATION ========== */
.news-pagination {
    text-align: center;
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #dcdce0;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.news-pagination .current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ========== NEWS EMPTY ========== */
.news-empty {
    text-align: center;
    padding: 80px 20px;
}

.news-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.news-empty p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========== NEWS SINGLE ========== */
.news-single {
    max-width: 800px;
    margin: 0 auto;
}

.news-single-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 36px;
}

.news-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-single-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.news-single-content h2,
.news-single-content h3 {
    font-family: var(--font-heading);
    margin: 32px 0 12px;
}

.news-single-content p {
    margin-bottom: 16px;
}

.news-single-content ul,
.news-single-content ol {
    padding-left: 24px;
    margin: 12px 0 20px;
}

.news-single-content li {
    margin-bottom: 6px;
}

.news-single-external {
    margin-top: 32px;
    text-align: center;
}

.news-single-back {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-alt);
}

.news-single-back a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.news-single-back a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .news-card-thumb {
        height: 180px;
    }
}

@media (hover: none) {
    .product-cat-btn:hover,
    .filter-btn:hover,
    .footer-social-icon:hover,
    .drawer-menu li a:hover {
        background: unset;
        color: unset;
        border-color: unset;
        transform: none;
    }
    .product-cat-btn.active {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
    }
    .filter-btn.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--white);
    }
}
