/* ===== HANS FABRICATORS - Main Stylesheet ===== */
/* Aesthetic: Light Professional — Slate Blue-Grey + Warm Gold + Clean White */

:root {
    --navy: #0d1f3c;
    --navy-mid: #1a3a6b;
    --navy-light: #2a5298;
    --gold: #c9973a;
    --gold-light: #e2b55a;
    --gold-pale: #fef3d8;
    --cream: #f5f7fa;
    --white: #ffffff;
    --gray-100: #eef1f5;
    --gray-200: #dde2ea;
    --gray-400: #96a3b0;
    --gray-600: #5a6a7a;
    --text-dark: #0d1f3c;
    --text-mid: #1a3a6b;
    --red-accent: #c0392b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-italic: 'Cormorant Garamond', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --radius: 4px;
    --radius-md: 8px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(201,151,58,0.3);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.iso-badge {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 24px;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-box {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.logo-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.main-nav ul {
    display: flex;
    gap: 4px;
}
.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.03em;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--navy);
    background: var(--gold-pale);
}
.main-nav a.active {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}
.btn-enquire {
    background: var(--gold);
    color: var(--navy);
    padding: 9px 22px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid var(--gold);
}
.btn-enquire:hover {
    background: var(--navy);
    color: var(--gold);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}
.btn-dark {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.btn-dark:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ===== SECTION COMMON ===== */
section { padding: 72px 0; }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title span { color: var(--red-accent); }
.section-desc {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 580px;
    line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #0d1f3c 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201,151,58,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(201,151,58,0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(201,151,58,0.04) 40px,
            rgba(201,151,58,0.04) 80px
        );
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-title { color: var(--white); }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 14px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== HOME HERO ===== */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #eaecf5 50%, #f5f7fa 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 75% 40%, rgba(201,151,58,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 70%, rgba(44,62,80,0.06) 0%, transparent 50%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,151,58,0.12);
    border: 1px solid rgba(201,151,58,0.5);
    color: #8a6020;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
}
.hero-title .accent { color: var(--gold); }
.hero-title .italic {
    font-style: italic;
    color: var(--text-mid);
    font-size: 0.7em;
    display: block;
    font-family: var(--font-italic);
    font-weight: 400;
    margin-top: 4px;
}
.hero-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.stat-item { text-align: left; }
.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.3s both;
}
.hero-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.hero-card:first-child {
    grid-column: span 2;
    background: var(--gold-pale);
    border-color: rgba(201,151,58,0.3);
}
.hero-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.hero-card-icon { font-size: 36px; margin-bottom: 10px; }
.hero-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}
.hero-card-desc { font-size: 13px; color: var(--gray-600); }

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--gold);
    padding: 0;
}
.features-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-strip-item {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(13,27,42,0.15);
}
.feature-strip-item:last-child { border-right: none; }
.fsi-icon { font-size: 28px; flex-shrink: 0; }
.fsi-text {}
.fsi-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    letter-spacing: 0.03em;
}
.fsi-desc { font-size: 12px; color: rgba(13,27,42,0.65); }

/* ===== PRODUCT CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.cat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gold-pale);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 40px; margin-bottom: 14px; }
.cat-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.cat-count { font-size: 12.5px; color: var(--gray-400); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--gray-100); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,151,58,0.12);
    border: 1px solid rgba(201,151,58,0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.why-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.why-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why-stat-box {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.why-stat-box:first-child {
    grid-column: span 2;
    background: var(--gold-pale);
    border-color: rgba(201,151,58,0.4);
}
.wsb-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.wsb-label { font-size: 13px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; }
.why-section .section-label { color: var(--navy); }
.why-section .section-title { color: var(--text-dark); }
.why-section .section-desc { color: var(--gray-600); }

/* ===== PRODUCTS GRID (products page) ===== */
.products-section { background: var(--gray-100); }
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.product-img {
    background: var(--gray-100);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-info { padding: 16px; }
.product-series {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.product-code {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.pf-tag {
    background: var(--gold-pale);
    color: var(--gray-600);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
}
.btn-enquiry {
    display: block;
    text-align: center;
    padding: 9px;
    background: var(--navy);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.btn-enquiry:hover { background: var(--gold); color: var(--navy); }

/* ===== SERIES SECTION (products categories) ===== */
.series-section { padding: 56px 0; border-bottom: 1px solid var(--gray-200); }
.series-section:last-child { border-bottom: none; }
.series-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.series-header a {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}
.series-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.series-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.series-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.si-img {
    background: var(--gray-100);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    overflow: hidden;
}
.si-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.si-code {
    padding: 10px 12px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* ===== GALLERY / CATALOGUE ===== */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.catalogue-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.catalogue-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.cc-header {
    background: var(--navy);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cc-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}
.cc-count {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 100px;
}
.cc-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}
.cc-item {
    background: var(--gray-100);
    border-radius: var(--radius);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: var(--transition);
}
.cc-item:hover { background: var(--gold-pale); }
.cc-footer {
    padding: 14px 16px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cc-range { font-size: 13px; color: var(--gray-400); }
.cc-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 4px;
}
.cc-cta:hover { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.about-box {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 28px;
    color: var(--white);
    text-align: center;
}
.about-box:first-child { grid-column: span 2; background: var(--gold); color: var(--navy); }
.ab-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.ab-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; opacity: 0.75; text-transform: uppercase; }
.about-text p {
    font-size: 15.5px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 18px;
}
.cert-badge-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--gold);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}

/* Values */
.values-section { background: var(--gray-100); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
}
.value-icon { font-size: 44px; margin-bottom: 16px; }
.value-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-desc { font-size: 14.5px; color: var(--gray-600); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
}
.timeline-item:nth-child(even) .tl-content { order: 3; text-align: left; }
.timeline-item:nth-child(even) .tl-empty { order: 1; }
.tl-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: right;
}
.tl-year {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}
.tl-event { font-size: 14px; color: var(--gray-600); }
.tl-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold);
    margin: 0 auto;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
}
.cic-icon { font-size: 28px; margin-bottom: 10px; }
.cic-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 15px; }
.cic-detail { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.cic-detail a { color: var(--gold); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px;
}
.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14.5px;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,151,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
}
.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
}

/* Map placeholder */
.map-section { background: var(--gray-100); padding: 0 0 64px; }
.map-box {
    background: var(--navy-light);
    border-radius: var(--radius-md);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(201,151,58,0.2);
    color: var(--white);
    margin-top: -20px;
}
.map-box-icon { font-size: 48px; }
.map-box-text { font-size: 16px; color: rgba(255,255,255,0.6); }
.map-box a { color: var(--gold); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-100); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testi-text { font-size: 14.5px; color: var(--gray-600); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}
.testi-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testi-company { font-size: 12px; color: var(--gray-400); }

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--gold);
    padding: 52px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text .cta-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.cta-text .cta-desc { font-size: 15px; color: rgba(13,27,42,0.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-name { color: var(--gold); }
.footer-brand .logo-box { border-color: var(--gold); }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 14px;
}
.footer-tagline {
    font-family: var(--font-italic);
    font-size: 15px;
    color: rgba(201,151,58,0.8);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.fc-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(201,151,58,0.2);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.45); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .series-items { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .topbar-right { display: none; }
    .main-nav, .btn-enquire { display: none; }
    .hamburger { display: flex; }
    .main-nav.open { 
        display: flex; 
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy);
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .main-nav.open ul { flex-direction: column; align-items: center; gap: 4px; }
    .main-nav.open a { color: var(--white); font-size: 20px; padding: 14px 40px; }
    .main-nav.open a.active { color: var(--gold); }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-item:nth-child(2) { border-right: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .catalogue-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .series-items { grid-template-columns: repeat(3, 1fr); }
    .timeline::before { display: none; }
    .timeline-item { grid-template-columns: 1fr; }
    .tl-empty { display: none; }
    .tl-dot { display: none; }
    .tl-content { text-align: left; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-strip-inner { grid-template-columns: 1fr; }
    .catalogue-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .series-items { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-200);
}
.clients-section .section-label { color: var(--navy); }
.clients-section .section-title span { color: var(--gold); }
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.client-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    text-align: center;
    min-height: 110px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.client-card:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
/* Image logo — white bg, clear render */
.client-logo-placeholder {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
/* When it has an image (white bg for clarity) */
.client-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 4px;
    background: #fff;
    border-radius: 4px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/* Text fallback (colored bg) */
.client-logo-placeholder.text-only {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.2;
    padding: 6px;
}
.client-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.clients-note {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
}
.clients-note span { color: var(--navy); font-weight: 600; font-style: normal; }

/* Desktop large */
@media (max-width: 1200px) {
    .clients-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .client-card { padding: 16px 10px 12px; min-height: 100px; }
    .client-logo-placeholder { width: 68px; height: 52px; }
}
/* Mobile — 2 columns */
@media (max-width: 480px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .client-card { padding: 16px 12px 12px; min-height: 100px; }
    .client-logo-placeholder { width: 72px; height: 54px; }
    .client-name { font-size: 12px; }
}

/* ===== HERO IMAGE (Right Side) ===== */
.hero-visual-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: visible;
}
.hero-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(44,62,80,0.18), 0 4px 20px rgba(44,62,80,0.10);
    display: block;
    border: 3px solid rgba(201,151,58,0.25);
}
.hero-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--gold);
    color: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201,151,58,0.35);
    min-width: 100px;
}
.hib-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}
.hib-text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
}
.hero-img-placeholder {
    width: 100%;
    max-width: 520px;
    height: 420px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 16px;
    border: 2px dashed var(--gray-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.hip-icon { font-size: 56px; }
.hip-text {
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero-visual-image { display: none; }
}
