/* ============================================
   HHG ISOLA SOLUTIONS — Main Stylesheet
   HHG Design Language — ISOLA Solutions brand
   Version: 1.0.0
   ============================================ */

/* ---- CSS Variables (Design System) ---- */
:root {
    /* ISOLA Solutions Blue+Red Palette */
    --hhg-primary:       #2e3192;   /* Indigo blue — nav active, primary buttons, links */
    --hhg-primary-dark:  #232780;   /* Darker indigo — hover states */
    --hhg-primary-light: #4a50c4;   /* Lighter indigo */
    --hhg-accent:        #d9232d;   /* Signature red — CTAs, back-to-top, hover accents */
    --hhg-accent-dark:   #c9141a;   /* Dark red hover */
    --hhg-red:           #d9232d;   /* Alias for --hhg-accent (red) */
    --hhg-red-dark:      #c9141a;   /* Alias for --hhg-accent-dark */
    --hhg-navy:          #080954;   /* Very dark navy — banner overlays, hero */
    --hhg-black:         #1a1a1a;
    --hhg-dark:          #2d2d2d;
    --hhg-text:          #556270;   /* ISOLA body text slate-gray */
    --hhg-gray:          #666666;
    --hhg-gray-light:    #f3f5fa;
    --hhg-gray-medium:   #e0e0e0;
    --hhg-white:         #ffffff;
    --hhg-footer-bg:     #080954;   /* Dark navy footer */
    --hhg-footer-top:    #0a0d69;

    /* Social / Third-party */
    --hhg-youtube:       #ff0000;
    --hhg-youtube-dark:  #cc0000;

    /* Typography — HHG Design Language fonts */
    --hhg-font-primary:  'Noto Sans', sans-serif;    /* Body text / all paragraphs */
    --hhg-font-serif:    Georgia, serif;              /* All headings — HHG serif standard */
    --hhg-font-secondary:'Noto Sans', sans-serif;

    /* Layout */
    --hhg-header-height:   80px;
    --hhg-container-max:   1280px;
    --hhg-container-wide:  1400px;
    --hhg-transition:      0.3s ease;
    --hhg-shadow:          0 2px 20px rgba(0, 0, 0, 0.08);
    --hhg-shadow-hover:    0 8px 30px rgba(0, 0, 0, 0.15);
    --hhg-radius:          4px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--hhg-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hhg-text);
    background-color: var(--hhg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--hhg-primary);
    text-decoration: none;
    transition: color var(--hhg-transition);
}

a:hover {
    color: var(--hhg-accent);
}

/* ALL headings use Georgia serif — HHG Design Language */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hhg-font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--hhg-black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

ul, ol { padding: 0; margin: 0; list-style: none; }

/* ---- Container ---- */
.hhg-container {
    width: 100%;
    max-width: var(--hhg-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.hhg-main {
    padding-top: var(--hhg-header-height);
}


/* ---- Section Eyebrow + Title + Divider ---- */
.hhg-section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hhg-accent);
    margin-bottom: 8px;
}

.hhg-section-title {
    font-family: var(--hhg-font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hhg-black);
    margin-bottom: 12px;
    line-height: 1.25;
}

.hhg-section-divider {
    width: 50px;
    height: 3px;
    background: var(--hhg-accent);
    margin-bottom: 16px;
}

.hhg-section-subtitle {
    font-size: 1rem;
    color: var(--hhg-gray);
    max-width: 700px;
    line-height: 1.7;
}

.hhg-section-header {
    margin-bottom: 40px;
}

.hhg-section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.hhg-section-cta {
    text-align: center;
    margin-top: 40px;
}


/* ---- Buttons ---- */
.hhg-btn {
    display: inline-block;
    padding: 11px 32px;
    font-family: var(--hhg-font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 0;
    transition: all var(--hhg-transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transform: skewX(-20deg);
}

.hhg-btn > * {
    display: inline-block;
    transform: skewX(20deg);
}

.hhg-btn-primary {
    background-color: var(--hhg-primary);
    color: var(--hhg-white);
    border-color: var(--hhg-primary);
}

.hhg-btn-primary:hover {
    background-color: var(--hhg-accent);
    border-color: var(--hhg-accent);
    color: var(--hhg-white);
}

.hhg-btn-outline {
    background-color: transparent;
    color: var(--hhg-white);
    border-color: var(--hhg-white);
}

.hhg-btn-outline:hover {
    background-color: var(--hhg-white);
    color: var(--hhg-primary);
}

.hhg-btn-outline-primary {
    background-color: transparent;
    color: var(--hhg-primary);
    border-color: var(--hhg-primary);
}

.hhg-btn-outline-primary:hover {
    background-color: var(--hhg-primary);
    color: var(--hhg-white);
}

.hhg-btn-white {
    background-color: var(--hhg-white);
    color: var(--hhg-primary);
    border-color: var(--hhg-white);
}

.hhg-btn-white:hover {
    background-color: var(--hhg-accent);
    border-color: var(--hhg-accent);
    color: var(--hhg-white);
}

.hhg-btn-ghost {
    background-color: transparent;
    color: var(--hhg-gray);
    border-color: var(--hhg-gray-medium);
}

.hhg-btn-ghost:hover {
    background-color: var(--hhg-gray-light);
    color: var(--hhg-primary);
    border-color: var(--hhg-primary);
}

.hhg-btn-youtube {
    background-color: var(--hhg-youtube, #ff0000);
    color: var(--hhg-white);
    border-color: var(--hhg-youtube, #ff0000);
}

.hhg-btn-youtube:hover {
    background-color: var(--hhg-youtube-dark, #cc0000);
    border-color: var(--hhg-youtube-dark, #cc0000);
    color: var(--hhg-white);
}

.hhg-btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}


/* ============================================
   HEADER
   ============================================ */
.hhg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--hhg-white);
    box-shadow: var(--hhg-shadow);
    height: var(--hhg-header-height);
    transition: all var(--hhg-transition);
}

.hhg-header.scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

.hhg-header-inner {
    max-width: var(--hhg-container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
    gap: 20px;
}

/* Logo */
.hhg-logo a {
    display: flex;
    align-items: center;
}

.hhg-logo img,
.hhg-logo-img {
    max-height: 64px;
    width: auto;
}

/* Navigation */
.hhg-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hhg-menu {
    display: flex;
    gap: 0;
}

.hhg-menu-item {
    position: relative;
}

.hhg-menu-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--hhg-dark);
    text-decoration: none;
    transition: color var(--hhg-transition);
    white-space: nowrap;
    font-family: var(--hhg-font-primary);
}

.hhg-menu-link:hover,
.hhg-menu-item.current-menu-item > .hhg-menu-link,
.hhg-menu-item.current-menu-ancestor > .hhg-menu-link {
    color: var(--hhg-primary);
}

.hhg-menu-link i {
    font-size: 0.6rem;
    transition: transform var(--hhg-transition);
}

/* Dropdown */
.hhg-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--hhg-white);
    box-shadow: var(--hhg-shadow-hover);
    border-top: 3px solid var(--hhg-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--hhg-transition);
    z-index: 100;
    padding: 8px 0;
}

.hhg-menu-item:hover > .hhg-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hhg-submenu .hhg-menu-link {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.hhg-submenu .hhg-menu-link:hover {
    background: var(--hhg-gray-light);
    color: var(--hhg-primary);
}

/* Header Actions */
.hhg-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hhg-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--hhg-dark);
    font-size: 1rem;
    transition: color var(--hhg-transition);
}

.hhg-search-toggle:hover {
    color: var(--hhg-primary);
}

/* Search Bar */
.hhg-search-bar {
    background: var(--hhg-primary);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.hhg-search-bar.active {
    max-height: 80px;
    padding: 14px 0;
}

.hhg-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hhg-search-input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: var(--hhg-radius);
    font-family: var(--hhg-font-primary);
    font-size: 0.95rem;
    outline: none;
}

.hhg-search-btn,
.hhg-search-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--hhg-white);
    padding: 10px 16px;
    border-radius: var(--hhg-radius);
    cursor: pointer;
    transition: background var(--hhg-transition);
}

.hhg-search-btn:hover,
.hhg-search-close:hover {
    background: rgba(255,255,255,0.35);
}

/* Mobile Menu Toggle */
.hhg-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hhg-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--hhg-dark);
    border-radius: 2px;
    transition: all var(--hhg-transition);
}

.hhg-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hhg-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hhg-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hhg-hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 900px;
    margin-top: 0;  /* hero is below fixed header via hhg-main padding */
    overflow: hidden;
}

.hhg-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hhg-hero-slider .swiper-wrapper,
.hhg-hero-slider .swiper-slide {
    height: 100%;
}

.hhg-hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hhg-hero-placeholder {
    background: linear-gradient(to top, var(--hhg-navy), var(--hhg-primary) 100%);
}

/* Gradient overlay */
.hhg-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--hhg-navy) 0%, transparent 60%);
    z-index: 1;
}

.hhg-hero-slide-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    padding: 0 60px;
    color: var(--hhg-white);
    z-index: 3;
    max-width: 680px;
}

.hhg-hero-slide-content h2 {
    font-family: var(--hhg-font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hhg-white);
    margin-bottom: 14px;
    line-height: 1.25;
}

.hhg-hero-slide-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hhg-hero-slide-content p::first-letter {
    text-transform: uppercase;
}

.hhg-hero-btn {
    display: inline-block;
    padding: 12px 27px;
    background: var(--hhg-white);
    color: var(--hhg-primary);
    font-family: var(--hhg-font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--hhg-transition);
    transform: skewX(-20deg);
}

.hhg-hero-btn > * {
    display: inline-block;
    transform: skewX(20deg);
}

.hhg-hero-btn:hover {
    background: var(--hhg-accent);
    color: var(--hhg-white);
}

/* Swiper hero pagination */
.hhg-hero .swiper-pagination {
    bottom: 24px;
    z-index: 5;
}

.hhg-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hhg-hero .swiper-pagination-bullet-active {
    background: var(--hhg-white);
    width: 24px;
    border-radius: 5px;
}


/* ============================================
   ABOUT SECTION (Homepage split)
   ============================================ */
.hhg-about-section {
    padding: 0;
}

.hhg-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.hhg-about-image {
    position: relative;
    overflow: hidden;
}

.hhg-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hhg-about-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hhg-white);
}

.hhg-about-content .hhg-btn {
    align-self: flex-start;
    margin-top: 8px;
}

.hhg-about-text p {
    margin-bottom: 16px;
    color: var(--hhg-text);
    line-height: 1.8;
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */
.hhg-products-section {
    padding: 80px 0;
    background: var(--hhg-gray-light);
}

.hhg-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.hhg-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--hhg-white);
    border: 1px solid var(--hhg-gray-medium);
    border-radius: var(--hhg-radius);
    transition: all var(--hhg-transition);
    text-decoration: none;
    color: var(--hhg-black);
    box-shadow: var(--hhg-shadow);
}

.hhg-product-card:hover {
    box-shadow: var(--hhg-shadow-hover);
    border-color: var(--hhg-primary);
    transform: translateY(-4px);
    color: var(--hhg-black);
}

.hhg-product-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--hhg-radius);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hhg-product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--hhg-transition);
}

.hhg-product-card:hover .hhg-product-image img {
    transform: scale(1.05);
}

.hhg-product-placeholder {
    width: 120px;
    height: 120px;
    background: var(--hhg-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--hhg-primary);
    border-radius: var(--hhg-radius);
    margin: 0 auto 14px;
}

.hhg-product-name {
    font-family: var(--hhg-font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hhg-dark);
}

/* Full-page products grid */
.hhg-products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.hhg-products-grid-full .hhg-product-card {
    padding: 28px 20px;
}

.hhg-products-intro {
    margin-bottom: 40px;
}


/* ============================================
   STATS SECTION
   ============================================ */
.hhg-stats {
    padding: 80px 0;
    background: var(--hhg-primary);
}

.hhg-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hhg-stat-item {
    text-align: center;
    color: var(--hhg-white);
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hhg-stat-item:last-child {
    border-right: none;
}

.hhg-stat-number {
    font-family: var(--hhg-font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--hhg-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hhg-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hhg-stat-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}


/* ============================================
   VIDEO SECTION
   ============================================ */
.hhg-video-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hhg-video-bg {
    position: absolute;
    inset: 0;
}

.hhg-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hhg-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 84, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hhg-video-content {
    text-align: center;
    color: var(--hhg-white);
    max-width: 600px;
    padding: 0 20px;
}

.hhg-video-content h2 {
    font-family: var(--hhg-font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hhg-white);
    margin-bottom: 14px;
}

.hhg-video-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hhg-video-play {
    display: inline-block;
    transition: transform var(--hhg-transition);
}

.hhg-video-play img {
    width: 80px;
    height: 80px;
}

.hhg-video-play:hover {
    transform: scale(1.15);
}


/* ============================================
   CERTIFICATIONS SECTION (Homepage)
   ============================================ */
.hhg-certs-section {
    padding: 80px 0;
    background: var(--hhg-white);
}

.hhg-certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hhg-certs-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.hhg-certs-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--hhg-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hhg-certs-list li i {
    color: var(--hhg-accent);
}

.hhg-certs-image img {
    width: 100%;
    border-radius: var(--hhg-radius);
    box-shadow: var(--hhg-shadow-hover);
    object-fit: cover;
}


/* ============================================
   CTA STRIP
   ============================================ */
.hhg-cta-strip {
    padding: 60px 0;
    background: var(--hhg-accent);
}

.hhg-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.hhg-cta-strip-text h3 {
    font-family: var(--hhg-font-serif);
    font-size: 1.6rem;
    color: var(--hhg-white);
    margin-bottom: 6px;
}

.hhg-cta-strip-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}


/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.hhg-page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: 0;
}

.hhg-page-banner-bg {
    position: absolute;
    inset: 0;
}

.hhg-page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hhg-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--hhg-navy) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hhg-page-banner-title {
    padding: 0 20px 16px;
}

.hhg-page-banner-title h1 {
    font-family: var(--hhg-font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hhg-white);
    line-height: 1.2;
}

/* Breadcrumbs */
.hhg-breadcrumbs {
    padding: 0 20px 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.hhg-breadcrumbs a {
    color: rgba(255,255,255,0.7);
    transition: color var(--hhg-transition);
}

.hhg-breadcrumbs a:hover {
    color: var(--hhg-white);
}

.hhg-breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

.hhg-breadcrumb-current {
    color: var(--hhg-white);
    font-weight: 600;
}


/* ============================================
   PAGE CONTENT
   ============================================ */
.hhg-page-content {
    padding: 60px 0;
}

.hhg-article-content {
    max-width: 900px;
    line-height: 1.8;
    color: var(--hhg-text);
}

.hhg-article-content p {
    margin-bottom: 16px;
}

.hhg-article-content h2,
.hhg-article-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--hhg-dark);
}

.hhg-article-content ul,
.hhg-article-content ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.hhg-article-content li {
    margin-bottom: 8px;
}

.hhg-article-content img {
    border-radius: var(--hhg-radius);
    margin: 24px 0;
}

.hhg-article-meta {
    margin-bottom: 20px;
    color: var(--hhg-gray);
    font-size: 0.85rem;
}

/* ============================================
   TEAM GRID (Executive Management)
   ============================================ */
.hhg-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hhg-team-member {
    text-align: center;
    background: var(--hhg-white);
    border-radius: var(--hhg-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhg-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hhg-team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.hhg-team-member-info {
    padding: 16px 10px;
}

.hhg-team-member-info h4 {
    font-family: var(--hhg-font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hhg-dark);
    margin: 0 0 4px;
}

.hhg-team-member-info span {
    display: block;
    font-size: 0.78rem;
    color: var(--hhg-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .hhg-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .hhg-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================================
   PROJECTS / MEDIA CENTER GRID
   ============================================ */
.hhg-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.hhg-project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--hhg-white);
    border-radius: var(--hhg-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhg-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hhg-project-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.hhg-project-card-body {
    padding: 20px;
}

.hhg-project-card-body h4 {
    font-family: var(--hhg-font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hhg-dark);
    margin: 0 0 10px;
}

.hhg-project-card-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--hhg-text);
    margin: 0;
}

@media (max-width: 992px) {
    .hhg-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hhg-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ============================================
   SINGLE PRODUCT
   ============================================ */
.hhg-product-single {
    max-width: 1100px;
}

.hhg-product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.hhg-product-single-image img {
    width: 100%;
    border-radius: var(--hhg-radius);
    box-shadow: var(--hhg-shadow);
}

.hhg-product-single-title {
    font-family: var(--hhg-font-serif);
    font-size: 1.8rem;
    color: var(--hhg-accent);
    margin-bottom: 20px;
}

.hhg-product-single-desc {
    color: var(--hhg-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hhg-product-single-details .hhg-btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

.hhg-product-extra {
    padding: 32px;
    background: var(--hhg-gray-light);
    border-left: 4px solid var(--hhg-primary);
    border-radius: 0 var(--hhg-radius) var(--hhg-radius) 0;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.hhg-contact-section {
    padding: 60px 0;
    background: var(--hhg-white);
}

.hhg-contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.hhg-contact-form-col h3,
.hhg-contact-info-col h3 {
    font-family: var(--hhg-font-serif);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--hhg-dark);
}

/* CF7 form styling */
.hhg-contact-form-col .wpcf7 input,
.hhg-contact-form-col .wpcf7 select,
.hhg-contact-form-col .wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hhg-gray-medium);
    border-radius: var(--hhg-radius);
    font-family: var(--hhg-font-primary);
    font-size: 0.95rem;
    transition: border-color var(--hhg-transition);
    background: var(--hhg-white);
    color: var(--hhg-text);
    margin-bottom: 12px;
}

.hhg-contact-form-col .wpcf7 input:focus,
.hhg-contact-form-col .wpcf7 select:focus,
.hhg-contact-form-col .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--hhg-primary);
}

.hhg-contact-form-col .wpcf7-submit {
    background: var(--hhg-primary);
    color: var(--hhg-white);
    border: none;
    padding: 12px 32px;
    font-family: var(--hhg-font-primary);
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: background var(--hhg-transition);
}

.hhg-contact-form-col .wpcf7-submit:hover {
    background: var(--hhg-accent);
}

/* Info column */
.hhg-contact-info-list {
    padding: 0;
}

.hhg-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--hhg-text);
}

.hhg-contact-info-list i {
    color: var(--hhg-primary);
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.hhg-contact-info-list a {
    color: var(--hhg-text);
}

.hhg-contact-info-list a:hover {
    color: var(--hhg-primary);
}

.hhg-contact-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.hhg-contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--hhg-primary);
    color: var(--hhg-white);
    font-size: 0.9rem;
    transition: all var(--hhg-transition);
}

.hhg-contact-social a:hover {
    background: var(--hhg-accent);
    color: var(--hhg-white);
    transform: translateY(-2px);
}

/* Map */
.hhg-map-section {
    border-top: 1px solid var(--hhg-gray-medium);
}

.hhg-map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hhg-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ============================================
   GALLERY PAGE
   ============================================ */
.hhg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.hhg-gallery-item {
    position: relative;
    border-radius: var(--hhg-radius);
    overflow: hidden;
    cursor: pointer;
}

.hhg-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--hhg-transition);
}

.hhg-gallery-item:hover img {
    transform: scale(1.05);
}

.hhg-gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 49, 146, 0.5);
    color: var(--hhg-white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--hhg-transition);
}

.hhg-gallery-item:hover::after {
    opacity: 1;
}


/* ============================================
   DOWNLOADS PAGE
   ============================================ */
.hhg-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.hhg-download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--hhg-white);
    border: 1px solid var(--hhg-gray-medium);
    border-radius: var(--hhg-radius);
    transition: all var(--hhg-transition);
    box-shadow: var(--hhg-shadow);
}

.hhg-download-card:hover {
    box-shadow: var(--hhg-shadow-hover);
    border-color: var(--hhg-primary);
}

.hhg-download-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--hhg-radius);
    overflow: hidden;
}

.hhg-download-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hhg-download-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--hhg-dark);
}


/* ============================================
   PAGINATION
   ============================================ */
.hhg-pagination {
    margin-top: 50px;
    text-align: center;
}

.hhg-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hhg-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
    background: var(--hhg-gray-light);
    color: var(--hhg-dark);
    text-decoration: none;
    transition: all var(--hhg-transition);
    border: 1px solid var(--hhg-gray-medium);
}

.hhg-pagination .page-numbers.current,
.hhg-pagination .page-numbers:hover {
    background: var(--hhg-primary);
    color: var(--hhg-white);
    border-color: var(--hhg-primary);
}


/* ============================================
   SEARCH PAGE
   ============================================ */
.hhg-search-info {
    font-size: 0.95rem;
    color: var(--hhg-gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hhg-gray-medium);
}

.hhg-no-items {
    color: var(--hhg-gray);
    font-size: 0.95rem;
    text-align: center;
    padding: 40px;
    background: var(--hhg-gray-light);
    border-radius: var(--hhg-radius);
}


/* ============================================
   404 PAGE
   ============================================ */
.hhg-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hhg-404-content {
    text-align: center;
}

.hhg-404-number {
    font-family: var(--hhg-font-serif);
    font-size: 8rem;
    font-weight: 800;
    color: var(--hhg-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.hhg-404-content h2 {
    margin-bottom: 12px;
    color: var(--hhg-dark);
}

.hhg-404-content p {
    color: var(--hhg-gray);
    margin-bottom: 30px;
}


/* ============================================
   FOOTER
   ============================================ */
.hhg-footer {
    background: var(--hhg-footer-bg);
    color: rgba(255,255,255,0.85);
}

.hhg-footer-main {
    padding: 60px 0 40px;
}

.hhg-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.hhg-footer-about img,
.hhg-footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.hhg-footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
}

.hhg-footer-desc a {
    color: rgba(255,255,255,0.75);
    transition: color var(--hhg-transition);
}

.hhg-footer-desc a:hover {
    color: var(--hhg-white);
}

.hhg-footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 20px 0;
}

.hhg-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hhg-footer-social span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-right: 4px;
}

.hhg-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--hhg-white);
    font-size: 0.85rem;
    transition: all var(--hhg-transition);
}

.hhg-footer-social a:hover {
    background: var(--hhg-accent);
    transform: translateY(-2px);
}

.hhg-footer-title {
    font-family: var(--hhg-font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hhg-white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hhg-footer-links {
    padding: 0;
}

.hhg-footer-links li {
    margin-bottom: 10px;
}

.hhg-footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--hhg-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hhg-footer-links a::before {
    content: '›';
    color: var(--hhg-accent);
    font-size: 1.1rem;
}

.hhg-footer-links a:hover {
    color: var(--hhg-white);
}

.hhg-footer-cert-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.hhg-footer-cert-img {
    width: 100%;
    max-width: 280px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}


/* ============================================
   TEAM CARDS (About / Executive Management)
   ============================================ */
.hhg-team-card {
    text-align: center;
    background: var(--hhg-white);
    border-radius: var(--hhg-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhg-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hhg-team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hhg-team-info {
    padding: 16px 10px;
}

.hhg-team-info h4 {
    font-family: var(--hhg-font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hhg-dark);
    margin: 0 0 4px;
}

.hhg-team-info span {
    display: block;
    font-size: 0.78rem;
    color: var(--hhg-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================
   GALLERY – link-as-item (for <a> based items)
   ============================================ */
a.hhg-gallery-item {
    display: block;
    position: relative;
    border-radius: var(--hhg-radius);
    overflow: hidden;
    cursor: pointer;
}

a.hhg-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--hhg-transition);
}

a.hhg-gallery-item:hover img {
    transform: scale(1.05);
}

a.hhg-gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 49, 146, 0.5);
    color: var(--hhg-white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--hhg-transition);
}

a.hhg-gallery-item:hover::after {
    opacity: 1;
}


/* ============================================
   VIDEO ITEMS (Videos Page)
   ============================================ */
.hhg-video-item {
    text-align: center;
}

.hhg-video-item a.hhg-gallery-item::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 3rem;
}

.hhg-video-title {
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hhg-dark);
}


/* ============================================
   FILTER BAR (Product Category Tags)
   ============================================ */
.hhg-filter-bar {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.hhg-filter-btn {
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.hhg-filter-btn:hover,
.hhg-filter-btn.hhg-filter-active {
    color: var(--hhg-primary);
    background: none;
    border: none;
}


/* ============================================
   PRODUCT CATEGORY DETAIL CARDS
   ============================================ */
.hhg-product-card-wrap {
    transition: opacity 0.3s ease;
}

.hhg-product-card-detail .hhg-product-image {
    position: relative;
}

.hhg-product-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--hhg-text);
    padding: 4px 10px 0;
    text-align: center;
}

.hhg-product-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--hhg-text);
    padding: 4px 10px 8px;
    line-height: 1.5;
}

.hhg-gl-desc-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--hhg-text);
    margin-bottom: 16px;
}

.hhg-gl-desc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}


/* ============================================
   VACANCIES TABLE (Career Page)
   ============================================ */
.hhg-vacancies-table {
    margin-bottom: 40px;
}

.hhg-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hhg-white);
    border-radius: var(--hhg-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.hhg-table thead {
    background: var(--hhg-primary);
    color: var(--hhg-white);
}

.hhg-table th,
.hhg-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.92rem;
}

.hhg-table tbody tr {
    border-bottom: 1px solid var(--hhg-gray-medium);
    transition: background var(--hhg-transition);
}

.hhg-table tbody tr:last-child {
    border-bottom: none;
}

.hhg-table tbody tr:hover {
    background: rgba(46, 49, 146, 0.03);
}

.hhg-text-end {
    text-align: right;
}


/* ============================================
   CAREER CTA BOX
   ============================================ */
.hhg-career-cta {
    margin-top: 40px;
}

.hhg-career-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 40px;
    background: var(--hhg-primary);
    border-radius: var(--hhg-radius);
    color: var(--hhg-white);
}

.hhg-career-cta-inner h3 {
    font-family: var(--hhg-font-serif);
    font-size: 1.5rem;
    margin: 0 0 4px;
    color: var(--hhg-white);
}

.hhg-career-cta-inner h3 span {
    color: var(--hhg-accent);
}

.hhg-career-cta-inner p {
    margin: 0;
    opacity: 0.85;
}

.hhg-career-cta-inner .hhg-btn {
    background: var(--hhg-white);
    color: var(--hhg-primary);
    white-space: nowrap;
}

.hhg-career-cta-inner .hhg-btn:hover {
    background: var(--hhg-accent);
    color: var(--hhg-white);
}

.hhg-career-form {
    margin-top: 30px;
}

@media (max-width: 576px) {
    .hhg-career-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}


/* ============================================
   SINGLE MAJOR PROJECT
   ============================================ */
.hhg-project-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hhg-project-single-title {
    font-family: var(--hhg-font-serif);
    font-size: 1.8rem;
    color: var(--hhg-dark);
    margin-bottom: 20px;
}

.hhg-project-slider-col {
    position: relative;
}

.hhg-project-slider img {
    width: 100%;
    border-radius: var(--hhg-radius);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hhg-project-single-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CONTACT INFO GRID (Contact Page - ACF)
   ============================================ */
.hhg-map-embed {
    margin-bottom: 40px;
    border-radius: var(--hhg-radius);
    overflow: hidden;
}

.hhg-map-embed iframe {
    display: block;
    border: 0;
}

.hhg-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.hhg-contact-info-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--hhg-white);
    border-radius: var(--hhg-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.hhg-contact-info-card i {
    font-size: 1.8rem;
    color: var(--hhg-primary);
    margin-bottom: 12px;
    display: block;
}

.hhg-contact-info-card h4 {
    font-family: var(--hhg-font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hhg-dark);
    margin-bottom: 6px;
}

.hhg-contact-info-card p {
    font-size: 0.9rem;
    color: var(--hhg-text);
    margin: 0;
}

.hhg-contact-summary {
    text-align: center;
    color: var(--hhg-text);
    margin-bottom: 30px;
}

.hhg-contact-form-full {
    max-width: 800px;
    margin: 0 auto;
}


/* ============================================
   BACK LINK
   ============================================ */
.hhg-back-link {
    margin-top: 40px;
    text-align: center;
}

/* Footer Bottom */
.hhg-footer-bottom {
    padding: 18px 0;
    border-top: 3px solid var(--hhg-accent);
    background: var(--hhg-white);
    box-shadow: var(--hhg-shadow);
}

.hhg-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hhg-footer-bottom p {
    font-size: 0.82rem;
    color: var(--hhg-text);
    margin: 0;
}

.hhg-footer-policy-link {
    color: var(--hhg-primary);
    transition: color var(--hhg-transition);
}

.hhg-footer-policy-link:hover {
    color: var(--hhg-accent);
}

.hhg-footer-hhg-logo img {
    display: block;
    opacity: 0.9;
    transition: opacity var(--hhg-transition);
}

.hhg-footer-hhg-logo:hover img {
    opacity: 1;
}


/* ============================================
   BACK TO TOP
   ============================================ */
.hhg-back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    background: var(--hhg-accent);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hhg-white);
    font-size: 1rem;
}

.hhg-back-to-top.visible {
    visibility: visible;
    opacity: 1;
}

.hhg-back-to-top:hover {
    background: var(--hhg-accent-dark);
    color: var(--hhg-white);
    transform: translateY(-2px);
}


/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.hhg-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hhg-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hhg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hhg-certs-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hhg-hero-slide-content h2 {
        font-size: 1.8rem;
    }

    .hhg-about-split {
        grid-template-columns: 1fr;
    }

    .hhg-about-content {
        padding: 40px 30px;
    }

    .hhg-certs-grid {
        grid-template-columns: 1fr;
    }

    .hhg-certs-image {
        display: none;
    }

    .hhg-contact-grid {
        grid-template-columns: 1fr;
    }

    .hhg-product-single-grid {
        grid-template-columns: 1fr;
    }

    .hhg-hero-slide-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --hhg-header-height: 65px;
    }

    /* Mobile nav */
    .hhg-menu-toggle {
        display: flex;
    }

    .hhg-nav {
        position: fixed;
        top: var(--hhg-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--hhg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform var(--hhg-transition);
        overflow-y: auto;
        z-index: 999;
        box-shadow: var(--hhg-shadow-hover);
    }

    .hhg-nav.active {
        transform: translateX(0);
    }

    .hhg-menu {
        flex-direction: column;
    }

    .hhg-menu-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--hhg-gray-light);
    }

    .hhg-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        background: var(--hhg-gray-light);
    }

    /* Hero */
    .hhg-hero {
        height: 70vh;
        min-height: 400px;
    }

    .hhg-hero-slide-content h2 {
        font-size: 1.5rem;
    }

    .hhg-hero-slide-content p {
        font-size: 0.9rem;
    }

    .hhg-hero-slide-content {
        padding: 0 20px;
        max-width: 100%;
        bottom: 10%;
    }

    /* Stats */
    .hhg-stats-grid {
        grid-template-columns: 1fr;
    }

    .hhg-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 20px 0;
    }

    .hhg-stat-item:last-child {
        border-bottom: none;
    }

    .hhg-stat-number {
        font-size: 2.8rem;
    }

    /* Products */
    .hhg-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hhg-products-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Page banner */
    .hhg-page-banner {
        height: 200px;
    }

    .hhg-page-banner-title h1 {
        font-size: 1.5rem;
    }

    /* Video */
    .hhg-video-section {
        height: 300px;
    }

    /* Footer */
    .hhg-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hhg-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Section header */
    .hhg-section-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    /* CTA strip */
    .hhg-cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Downloads */
    .hhg-download-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hhg-hero-slide-content h2 {
        font-size: 1.3rem;
    }

    .hhg-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .hhg-products-grid,
    .hhg-products-grid-full {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .hhg-section-title {
        font-size: 1.8rem;
    }

    .hhg-404-number {
        font-size: 5rem;
    }
}
